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 127


Ignore:
Timestamp:
2015-06-05T12:29:23-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/grobner.lisp

    r126 r127  
    110110  "The ring of integers.")
    111111
    112 (defvar *maxima-ring* *ring-of-integers*
     112(defvar *coefficient-ring* *ring-of-integers*
    113113  "The ring of coefficients, over which all polynomials are assumed to
    114114  be defined.")
     
    279279(defmacro with-coefficient-ring ((ring) &body body)
    280280  "Evaluate BODY with coefficient ring set to RING."
    281   `(let ((*maxima-ring* (or (find-ring ,ring) *maxima-ring*)))
     281  `(let ((*coefficient-ring* (or (find-ring ,ring) *coefficient-ring*)))
    282282     . ,body))
    283283
Note: See TracChangeset for help on using the changeset viewer.