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.

Ignore:
Timestamp:
2016-05-31T16:54:08-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/monom.lisp

    r4041 r4043  
    652652        self
    653653      (let ((m (call-next-method)))
     654        (print m)
    654655        (cond ((eql coeff 1) m)
    655656              ((atom m)
    656657               (cond ((eql m 1) coeff)
    657658                     (t (list '* coeff m))))
    658               ((eql (car m) '*) (list* '* coeff (cdr m)))
     659              ((eql (car m) '*)
     660               (list* '* coeff (cdr m)))
    659661              (t
    660662               (list* '* coeff m)))))))
Note: See TracChangeset for help on using the changeset viewer.