Changeset 1820 for branches/f4grobner
- Timestamp:
- 2015-06-15T13:13:51-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/mx-grobner.lisp
r1819 r1820 382 382 (:ring 'ring)))) 383 383 "Define a MAXIMA-level unary operator MAXIMA-NAME corresponding to unary function FUN-NAME. 384 The second argument should be :RING or :RING-AND-ORDER, and it signals the type of the first 385 argument that should be passed to function FUN-NAME. ARGS is a list of formal parameters 386 passed to the function, i.e. symbols used as arguments." 384 The second argument should be :RING or :RING-AND-ORDER, and it signals 385 the type of the first argument that should be passed to function 386 FUN-NAME. ARGS is a list of formal parameters passed to the function, 387 i.e. symbols used as arguments. The macro expands to a Maxima-level 388 function definition with name MAXIMA-NAME, which wraps FUN-NAME." 387 389 `(defmfun ,maxima-name (,@args vars) 388 390 ,@(when documentation-supplied-p (list documentation))
Note:
See TracChangeset
for help on using the changeset viewer.