Changeset 2707 for branches/f4grobner
- Timestamp:
- 2015-06-20T16:46:29-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/order.lisp
r2706 r2707 75 75 ;; reverse lexicographic 76 76 (defgeneric revlex> (p q &optional start end) 77 (:documentation "Return T if P>Q with respect to reverse 78 lexicographic order, NIL otherwise. The second returned value is T if 79 P=Q, otherwise it is NIL. This is not and admissible monomial order 80 because some sets do not have a minimal element. This order is useful 81 in constructing other orders.") 77 82 (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p))) 78 "Return T if P>Q with respect to reverse lexicographic order, NIL 79 otherwise. The second returned value is T if P=Q, otherwise it is 80 NIL. This is not and admissible monomial order because some sets do 81 not have a minimal element. This order is useful in constructing other 82 orders." 83 83 84 (declare (type fixnum start end)) 84 85 (do ((i (1- end) (1- i)))
Note:
See TracChangeset
for help on using the changeset viewer.