gcl-devel
[Top][All Lists]
Advanced

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

[Gcl-devel] Re: serveral bugs in codebase


From: root
Subject: [Gcl-devel] Re: serveral bugs in codebase
Date: Sun, 27 Jul 2003 22:44:10 -0400

Camm,

The duplicate set issue test is:

dom:=MonoidRing(Polynomial PrimeField 5, Permutation Integer)
p:dom:=1
set [p,p] ==> {1,1}

  but should be
          
          ==> {1}

the other test is:

  one? p  ==> false

but should be
       
          ==> true

As mentioned in a previous email Axiom stores its variable bindings
in a "frame" which, internally is an alist stored in the variable
|$InteractiveFrame|

If you create the 'dom' variable above you can see it by doing:

)lisp (pprint |$InteractiveFrame|)


btw, you can type

)lisp (setq $DALYMODE t)

and then any line that begins with an open-paren at the Axiom
prompt will be given directly to the lisp. e.g. after setting
$dalymode above you can type:

(pprint |$InteractiveFrame|)

directly to the Axiom prompt. It makes lisp debugging easier.

Tim
address@hidden
address@hidden





reply via email to

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