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 900


Ignore:
Timestamp:
2015-06-09T13:40:01-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/order.lisp

    r899 r900  
    158158           (values primary nil)))))
    159159
    160 (defun elimination-order-1 (p q &optional (start 0) (end (monom-dimension  p)))
    161   "Equivalent to the function returned by the call to (ELIMINATION-ORDER 1)."
     160(defun elimination-order-1 (secondary-elimination-order q &optional (start 0) (end (monom-dimension  p)))
     161  "Equivalent to the function returned by the call to (ELIMINATION-ORDER NIL SECONDARY-ELIMINATION-ORDER 1)."
    162162  (cond
    163163   ((> (monom-elt p start) (monom-elt q start)) (values t nil))
    164164   ((< (monom-elt p start) (monom-elt q start)) (values nil nil))
    165    (t (funcall *secondary-elimination-order* p q (1+ start) end))))
     165   (t (funcall secondary-elimination-order p q (1+ start) end))))
Note: See TracChangeset for help on using the changeset viewer.