Changeset 457 for branches/f4grobner
- Timestamp:
- 2015-06-06T20:16:53-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/order.lisp
r444 r457 128 128 which is somewhat more elegant than FUNCALL.") 129 129 130 (def macromonomial-order (x y)130 (defun monomial-order (x y) 131 131 "Calls the global monomial order function, held by *MONOMIAL-ORDER*." 132 `(funcall *monomial-order* ,x ,y))132 (funcall *monomial-order* x y)) 133 133 134 (def macroreverse-monomial-order (x y)134 (defun reverse-monomial-order (x y) 135 135 "Calls the inverse monomial order to the global monomial order function, 136 136 held by *MONOMIAL-ORDER*." 137 `(monomial-order ,y ,x))137 (monomial-order y x)) 138 138 139 139 (defvar *primary-elimination-order* #'lex>)
Note:
See TracChangeset
for help on using the changeset viewer.