close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 2705


Ignore:
Timestamp:
2015-06-20T16:45:31-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/order.lisp

    r2439 r2705  
    4343;; pure lexicographic
    4444(defgeneric lex> (p q &optional start end)
     45  (:documentation
     46   "Return T if P>Q with respect to lexicographic order, otherwise NIL.
     47The second returned value is T if P=Q, otherwise it is NIL.")
    4548  (: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."
    4849    (declare (type fixnum start end))
    4950    (do ((i start (1+ i)))
Note: See TracChangeset for help on using the changeset viewer.