Changeset 414
- Timestamp:
- 2015-06-06T19:28:54-07:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/order-mk.lisp
r413 r414 30 30 "ELIMINATION-ORDER-1")) 31 31 32 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33 ;;34 ;; Order making functions35 ;;36 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37 38 32 (defvar *monomial-order* #'lex> 39 "Default order for monomial comparisons") 33 "Default order for monomial comparisons. This global variable holds 34 the order which is in effect when performing polynomial 35 arithmetic. The global order is called by the macro MONOMIAL-ORDER, 36 which is somewhat more elegant than FUNCALL.") 40 37 41 38 (defmacro monomial-order (x y) … … 54 51 we will construct an elimination order using the values of 55 52 *PRIMARY-ELIMINATION-ORDER* and *SECONDARY-ELIMINATION-ORDER*.") 53 54 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 55 ;; 56 ;; Order making functions 57 ;; 58 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 56 59 57 60 (defun elimination-order (k)
Note:
See TracChangeset
for help on using the changeset viewer.