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:
2015-06-22T21:10:39-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/5am-poly.lisp

    r3265 r3266  
    6262
    6363(def-fixture poly-add-context ()
    64   (symbol-macrolet ((p (make-instance 'poly))
     64  (let ((p (make-instance 'poly))
    6565        (q (make-instance 'poly :order nil))
    6666        (p+q (make-instance 'poly))
     
    9494
    9595(def-fixture poly-multiply-context ()
    96   (symbol-macrolet ((p (make-instance 'poly))
     96  (let ((p (make-instance 'poly))
    9797        (q (make-instance 'poly :order nil))
    9898        (p*q (make-instance 'poly)))
     
    117117(test poly-standard-extension
    118118  "Standard extension"
    119   (symbol-macrolet* ((p (alist->poly '( ((0) . 1) ((1) . 2))))
     119  (let* ((p (alist->poly '( ((0) . 1) ((1) . 2))))
    120120         (q (alist->poly '( ((0) . 1) ((2) . 3))))
    121121         (plist (list p q))
     
    127127(test poly-standard-extension-1
    128128  "Standard extension 1"
    129   (symbol-macrolet ((p (alist->poly '( ((0) . 1) ((1) . 2))))
     129  (let* ((p (alist->poly '( ((0) . 1) ((1) . 2))))
    130130         (q (alist->poly '( ((0) . 1) ((2) . 3))))
    131131         (plist (list p q))
     
    137137(test poly-standard-sum
    138138  "Standard sum"
    139   (symbol-macrolet ((p (alist->poly '( ((0) . 1) ((1) . 2))))
     139  (let* ((p (alist->poly '( ((0) . 1) ((1) . 2))))
    140140         (q (alist->poly '( ((0) . 1) ((2) . 3))))
    141141         (plist (list p q))
Note: See TracChangeset for help on using the changeset viewer.