From 41cac42f4e6fca997a6aec24a6295579467f9420 Mon Sep 17 00:00:00 2001 From: tpapp Date: Sun, 15 Apr 2012 14:05:12 +0200 Subject: [PATCH] Updated tests for new chebyshev interface. --- tests/chebyshev.lisp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/chebyshev.lisp b/tests/chebyshev.lisp index c5806e0..a7e3575 100644 --- a/tests/chebyshev.lisp +++ b/tests/chebyshev.lisp @@ -25,9 +25,11 @@ (addtest (chebyshev-tests) chebyshev-open-inf (ensure (<= (test-chebyshev-approximate (lambda (x) (/ x (+ 4 x))) - (interval 2 t) 15 (interval 2 102)) + (interval 2 (xr:inf)) 15 + (interval 2 102)) 1e-5)) (ensure (<= (test-chebyshev-approximate (lambda (x) (exp (- x))) - (interval 0 t) 15 (interval 0 10) + (interval 0 (xr:inf)) 15 + (interval 0 10) :n-points 30) 1e-4)))