Changeset 2706 for branches/f4grobner
- Timestamp:
- 2015-06-20T16:46:05-07:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/order.lisp
r2705 r2706 43 43 ;; pure lexicographic 44 44 (defgeneric lex> (p q &optional start end) 45 (:documentation 46 "Return T if P>Q with respect to lexicographic order, otherwise NIL. 47 The second returned value is T if P=Q,otherwise it is NIL.")45 (:documentation "Return T if P>Q with respect to lexicographic 46 order, otherwise NIL. The second returned value is T if P=Q, 47 otherwise it is NIL.") 48 48 (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p))) 49 49 (declare (type fixnum start end)) … … 58 58 ;; total degree order , ties broken by lexicographic 59 59 (defgeneric grlex> (p q &optional start end) 60 (:documentation "Return T if P>Q with respect to graded 61 lexicographic order, otherwise NIL. The second returned value is T if 62 P=Q, otherwise it is NIL.") 60 63 (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p))) 61 "Return T if P>Q with respect to graded lexicographic order, otherwise NIL.62 The second returned value is T if P=Q, otherwise it is NIL."63 64 (declare (type monom p q) (type fixnum start end)) 64 65 (let ((d1 (r-total-degree p start end))
Note:
See TracChangeset
for help on using the changeset viewer.