-
- Downloads
Redefine #'copy
Redefine #'copy so that it has one required argument (source) and one optional argument (destination). For marrays, create a destination using make-marray, if one was not given, and then use the memcpy functions to fill the values. For all other mobjects, copy will copy objects by calling one of two generic functions, #'copy-to-destination and #'copy-making-destination, depending on whether a destination was supplied. The former is defined if a GSL _memcpy function exists. The latter will look for a GSL _clone function, then make a CL instance with the pointer returned as mpointer. If there is no clone function, it will attempt to make a new object using make-load-form, so will fail if that method has not been defined. Added a check to defmfun that signals an error if a variable is used in the C arguments other than top-level that is not used in the CL arglist. This should not happen and is usually an indication of a typo.
Showing
- data/array-tests.lisp 3 additions, 9 deletionsdata/array-tests.lisp
- data/both.lisp 8 additions, 7 deletionsdata/both.lisp
- data/combination.lisp 4 additions, 2 deletionsdata/combination.lisp
- data/permutation.lisp 3 additions, 2 deletionsdata/permutation.lisp
- histogram/histogram.lisp 12 additions, 15 deletionshistogram/histogram.lisp
- init/defmfun-single.lisp 5 additions, 2 deletionsinit/defmfun-single.lisp
- init/mobject.lisp 60 additions, 12 deletionsinit/mobject.lisp
- random/generators.lisp 7 additions, 6 deletionsrandom/generators.lisp
- random/quasi.lisp 8 additions, 9 deletionsrandom/quasi.lisp
- tests/matrix-copy.lisp 69 additions, 127 deletionstests/matrix-copy.lisp
- tests/vector-copy.lisp 76 additions, 154 deletionstests/vector-copy.lisp
Loading
Please register or sign in to comment