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 830


Ignore:
Timestamp:
2015-06-09T01:52:23-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/mx-grobner.lisp

    r619 r830  
    247247     . ,body))
    248248
     249(defmacro with-ring-and-order ((order) &body body)
     250  "Evaluate BODY with monomial order set to ORDER and coefficient ring set to RING."
     251  `(let ((*monomial-order* (or (find-order ,order) *monomial-order*))
     252         (*expression-ring* (or (find-ring ,ring) *expression-ring*)))
     253     . ,body))
     254
    249255(defmacro with-elimination-orders ((primary secondary elimination-order)
    250256                                   &body body)
Note: See TracChangeset for help on using the changeset viewer.