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 1893


Ignore:
Timestamp:
2015-06-15T17:50:02-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r1892 r1893  
    204204
    205205(defun monom-append (m1 m2 &aux (dim (+ (length m1) (length m2))))
     206  (declare (type monom m1 m2) (fixnum dim))
    206207  (concatenate `(monom ,dim) m1 m2))
    207208
     
    217218NVARS and the variable is at position POS. Optionally, the variable
    218219may appear raised to power POWER. "
     220  (declare (type fixnum nvars pos power) (type monom m))
    219221  (setf (monom-elt m pos) power)
    220222  m)
Note: See TracChangeset for help on using the changeset viewer.