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 4018


Ignore:
Timestamp:
2016-05-31T13:06:37-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r4010 r4018  
    620620                                       (t (list `(expt ,var ,power)))))
    621621                       vars (coerce exponents 'list))))
    622         (cond ((endp (cdr m))
    623                (car m))
     622        (cond ((endp (cdr m)) (car m))
    624623              (t
    625624               (cons '* m))))))
     
    630629        self
    631630      (let ((m (call-next-method)))
    632         (cond ((= coeff 1) m)
    633               ((eql (car m) '*)
    634                (setf (cdr m) (cons coeff (cdr m))))
     631        (cond ;;((= coeff 1) m)
     632              ;;((eql (car m) '*) (list* '* coeff (cdr m)))
    635633              (t
    636634               (list* '* coeff m)))
Note: See TracChangeset for help on using the changeset viewer.