Re: -2 is not a real number?!?



cdombroski wrote:

GNU CLISP interpreter

There's also a compiler in there, BTW... :)

(if (<= v alpha) (return-from min-value '(v x)))

Without looking at the rest of the code this is most likely not what
you want - you're returning a literal value which is a list consisting
of the symbols V and X. I think you want (LIST V X) instead.

*** - MIN: V is not a real number

Note that it says that (the symbol) V is not a real number. It
doesn't say that -2 is not a real number as in your subject line.

HTH,
Edi.

.