Changeset 2710 for branches/f4grobner
- Timestamp:
- 2015-06-20T16:47:26-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/order.lisp
r2709 r2710 109 109 110 110 (defgeneric invlex> (p q &optional start end) 111 (:documentation "Return T if P>Q with respect to inverse lexicographic order, NIL otherwise 112 The second returned value is T if P=Q, otherwise it is NIL.") 111 113 (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p))) 112 "Return T if P>Q with respect to inverse lexicographic order, NIL otherwise113 The second returned value is T if P=Q, otherwise it is NIL."114 114 (declare (type fixnum start end)) 115 115 (do ((i (1- end) (1- i)))
Note:
See TracChangeset
for help on using the changeset viewer.