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 738


Ignore:
Timestamp:
2015-06-08T20:44:10-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monomial.lisp

    r737 r738  
    187187  "Return T if the monomial M depends on variable number K."
    188188  (declare (type monom m) (fixnum k))
    189   (plusp (elt m k)))
    190 
    191 (defmacro monom-map (fun m &rest ml &aux (result `(copy-seq ,m)))
    192   `(map-into ,result ,fun ,m ,@ml))
     189  (plusp (monom-elt m k)))
     190
     191(defmacro monom-map (fun m &rest ml &aux (result `(copy-structure ,m)))
     192  `(map-into (monom-exponents ,result) ,fun ,m ,@ml))
    193193
    194194(defmacro monom-append (m1 m2)
Note: See TracChangeset for help on using the changeset viewer.