- Timestamp:
- 2015-06-20T16:45:31-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/order.lisp
r2439 r2705 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 48 (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p))) 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."48 49 (declare (type fixnum start end)) 49 50 (do ((i start (1+ i)))
Note:
See TracChangeset
for help on using the changeset viewer.