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 4202


Ignore:
Timestamp:
2016-06-04T10:15:34-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/symbolic-polynomial.lisp

    r4088 r4202  
    166166    (assert (eql (car self) :[))
    167167    (cond (vars-p
    168            (cons :[ (mapcar #'(lambda (p) (poly->string p vars)) (cdr self))))
     168           (format nil "[~{~a~^, ~}]" (mapcar #'(lambda (p) (poly->string p vars)) (cdr self))))
    169169          (t
    170            (cons :[ (mapcar #'(lambda (p) (poly->string p)) (cdr self))))))
     170           (format nil "[~{~a~^, ~}]" (mapcar #'(lambda (p) (poly->string p)) (cdr self))))))
    171171  (:method ((self poly) &optional (vars nil))
    172172    ;; Ensure that the number of variables matches the dimension
Note: See TracChangeset for help on using the changeset viewer.