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 1021


Ignore:
Timestamp:
2015-06-10T06:52:20-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/parse.lisp

    r1020 r1021  
    253253;; Return the standard basis of the monomials in n variables
    254254(defun variable-basis (ring n &aux (basis (make-list n)))
    255   "Generate a list of monomials ((1 0 ... 0) (0 1 0 ... 0) ... (0 0 ... 1)
    256 which correspond to linear monomials X1, X2, ... XN."
     255  "Generate a list of polynomials X[i], i=0,1,...,N-1."
    257256  (dotimes (i n basis)
    258257    (setf (elt basis i) (make-variable ring n i))))
Note: See TracChangeset for help on using the changeset viewer.