axiom-developer
[Top][All Lists]
Advanced

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

Re: [Axiom-developer] aldor/axiom interoperability


From: Gregory Vanuxem
Subject: Re: [Axiom-developer] aldor/axiom interoperability
Date: Sat, 15 Mar 2008 13:07:03 +0100

Le vendredi 14 mars 2008 à 23:14 -0400, Bill Page a écrit : 
> Greg,
> 
> On 3/14/08, I wrote:
> >
> > This problem seems to be related only the use of 'output' from inside
> >  an Aldor function:
> >
> >  -------- file: testoutput.as ------
> >  #include "axiom.as"
> >  #pile
> >  TestOutput: with
> >         testOutput: (Integer)                   -> Integer
> >     == add
> >         import from String
> >         import from OutputPackage
> >         testOutput(x:Integer):Integer ==
> >           output("help!")
> >           x
> >  ---------
> >
> >  (1) -> )co testoutput.as
> > ...
> >  (1) -> testOutput(1)
> >  Looking in OutputPackage() for ??349042727  with code 320506156
> >
> >    >> System error:
> >    FOAM-USER::|fiRaiseException| is invalid as a function.
> >
> 
> At the end of the page:
> 
>   http://axiom-wiki.newsynthesis.org/SandBoxEcfact
> 
> I have included the following simple Aldor functions to replace
> Axiom's 'output' operation with a direct call to Lisp format:
> 
> -- implement output for Aldor
> output(x:String):Void == {
> import { FORMAT: (Boolean,String,String) -> Void } from Foreign Lisp;
> FORMAT(true,"~a~%",x);
> }
> output(x:String,y:OutputForm):Void == {
> import { FORMAT: (Boolean,String,String,String) -> Void } from Foreign Lisp;
> FORMAT(true,"~a ~a~%",x,unparse(convert(y)$InputForm)$InputForm);
> }
> 
> This allows the LenstraEllipticMethod to produce some useful output.
> 
> I hope this helps, but of course I still consider it a bug that it
> seems impossible to call Axiom's output operations from within Aldor.

Many thanks for tracking this down, that works for me using this
workaround. We know where to investigate now :-) The mail of Martin that
you posted on this mailing list contained the patch that I mentioned
previously.

I'll try the new build process of Peter and hopefully produce a patch
for other Axiom flavours.

Regards

Greg






reply via email to

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