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 1930


Ignore:
Timestamp:
2015-06-15T18:38:21-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/order.lisp

    r1929 r1930  
    5656  "Return T if P>Q with respect to graded lexicographic order, otherwise NIL.
    5757The second returned value is T if P=Q, otherwise it is NIL."
     58  (declare (type monom p q) (type fixnum start end))
    5859  (let ((d1 (monom-total-degree p start end))
    5960        (d2 (monom-total-degree q start end)))
     
    8586  "Return T if P>Q with respect to graded reverse lexicographic order,
    8687NIL otherwise. The second returned value is T if P=Q, otherwise it is NIL."
     88  (declare (type monom p q) (type fixnum start end))
    8789  (let ((d1 (monom-total-degree p start end))
    8890        (d2 (monom-total-degree q start end)))
     
    9698  "Return T if P>Q with respect to inverse lexicographic order, NIL otherwise
    9799The second returned value is T if P=Q, otherwise it is NIL."
     100  (declare (type monom p q) (type fixnum start end))
    98101  (do ((i (1- end) (1- i)))
    99102      ((< i start) (values nil t))
Note: See TracChangeset for help on using the changeset viewer.