5 Feb 2010 21:09
[open-axiom-devel] "iter" definition bug
Hello!
The following code brings FriCAS into Lisp debugger.
)abbrev package BUG Bug
Bug(D: Type): Exports == Implementation where
Exports == with
dummy: D -> D
Implementation == add
iter: (D -> D, D, PositiveInteger) -> D
iter(f, p, 0) == p
iter(f, p, n) == f(iter(f, p, n-1))
The output follows:
BUG abbreviates package Bug
------------------------------------------------------------------------
initializing NRLIB BUG for Bug
compiling into NRLIB BUG
compiling local iter : (D -> D,D,PositiveInteger) -> D
BUG;iter is replaced by p
Break
Available restarts:
1. (CONTINUE) Return from BREAK.
Broken at SI:BYTECODES. [Evaluation of: (PROGN (DEFPARAMETER *YEARWEEK* "Wednesday February 3, 2010 at
04:29:45 ") (DEFPARAMETER *BUILD-VERSION* "FriCAS 2010-01-08") (DEFPARAMETER TIMESTAMP
"/tmp/wip/fricas/work/fricas/target/i486--netbsdelf/timestamp") (DEFPARAMETER
(Continue reading)
RSS Feed