axiom-math
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Axiom-math] Axiom's integration non-deterministic?


From: root
Subject: Re: [Axiom-math] Axiom's integration non-deterministic?
Date: Sat, 25 Mar 2006 22:00:31 -0500

you can start axiom and type:

)trace INTEF )math

which will trace external functions but 

the INTEF domain compiles into lisp.
the lisp code lives in int/algebra/INTEF.NRLIB/code.lsp
you can look at that file and it contains DEFUNs
you can trace those functions. For example,

in int/algebra/INTEF.NRLIB/code.lsp the function prim? is defined as:

(DEFUN |INTEF;prim?| (|k| |x| $) 
 (COND 
  ((SPADCALL |k| (SPADCALL "log" (QREFELT $ 10)) (QREFELT $ 13))
    (QUOTE T))
   ((QUOTE T)
     (SPADCALL (SPADCALL |k| (QREFELT $ 15)) "prim" (QREFELT $ 16))))) 

)lisp (trace |INTEF;prim?|)

which will give you the lisp level trace of the function.

t





reply via email to

[Prev in Thread] Current Thread [Next in Thread]