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 2706


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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/order.lisp

    r2705 r2706  
    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.
    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
     46order, otherwise NIL.  The second returned value is T if P=Q,
     47otherwise it is NIL.")
    4848  (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension  p)))
    4949    (declare (type fixnum start end))
     
    5858;; total degree order , ties broken by lexicographic
    5959(defgeneric grlex> (p q &optional start end)
     60  (:documentation "Return T if P>Q with respect to graded
     61lexicographic order, otherwise NIL.  The second returned value is T if
     62P=Q, otherwise it is NIL.")
    6063  (: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."
    6364    (declare (type monom p q) (type fixnum start end))
    6465    (let ((d1 (r-total-degree p start end))
Note: See TracChangeset for help on using the changeset viewer.