如何优化下一件事-在我的函数中,我需要一个2d数组,然后在其中(动态编程)更改一些值,并向其中添加一些内容。但是当我尝试优化它时,我得到了:
note: unable to
avoid runtime dispatch on array element type
because:
Upgraded element type of array is not known at compile time.
我正在使用(setf (aref table i j) value)
。我可以保证它们仍然是fixnum,就像我以前用:element-type
声明的那样。