On 7/26/09, Barton Willis <willisb at unk.edu> wrote:
> Errors found in rtest_lsquares.mac, problems:
> (20 21 22 37 38 39 41 42)
Some of these are due to failed floating point comparisons.
At least some of them are comparisons of numbers near zero.
The existing float_approx_equal function (src/mload.lisp) isn't
really suitable, since its test is |a - b| <= tol * min(|a|, |b|).
Maybe we can adjust the test logic, or I can just put some
different test into rtest_lsquares.
> Errors found in rtest_graphs.mac, problems:
> (1 3 4 5 6 7 8 9 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
It seems likely that the graphs package didn't get loaded.
share/contrib/graphs/load-graphs.lisp wants to use defsystem,
and there is a #+ecl to load defsystem. I guess otherwise it is
assumed that defsystem is already loaded? Maybe there needs
to be some test, e.g. (find-package "MK") ?? to see if defsystem
needs to be loaded.
HTH, I didn't look at the others.
best
Robert Dodier