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 457


Ignore:
Timestamp:
2015-06-06T20:16:53-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/order.lisp

    r444 r457  
    128128which is somewhat more elegant than FUNCALL.")
    129129
    130 (defmacro monomial-order (x y)
     130(defun monomial-order (x y)
    131131  "Calls the global monomial order function, held by *MONOMIAL-ORDER*."
    132   `(funcall *monomial-order* ,x ,y))
     132  (funcall *monomial-order* x y))
    133133
    134 (defmacro reverse-monomial-order (x y)
     134(defun reverse-monomial-order (x y)
    135135  "Calls the inverse monomial order to the global monomial order function,
    136136held by *MONOMIAL-ORDER*."
    137   `(monomial-order ,y ,x))
     137  (monomial-order y x))
    138138
    139139(defvar *primary-elimination-order* #'lex>)
Note: See TracChangeset for help on using the changeset viewer.