- Timestamp:
- 2015-06-20T16:47:13-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/order.lisp
r2708 r2709 94 94 ;; total degree, ties broken by reverse lexicographic 95 95 (defgeneric grevlex> (p q &optional start end) 96 (:documentation "Return T if P>Q with respect to graded reverse 97 lexicographic order, NIL otherwise. The second returned value is T if 98 P=Q, otherwise it is NIL.") 96 99 (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p))) 97 "Return T if P>Q with respect to graded reverse lexicographic order,98 NIL otherwise. The second returned value is T if P=Q, otherwise it is NIL."99 100 (declare (type fixnum start end)) 100 101 (let ((d1 (r-total-degree p start end))
Note:
See TracChangeset
for help on using the changeset viewer.