[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [Axiom-mail] Crashes axiom
From: |
Page, Bill |
Subject: |
RE: [Axiom-mail] Crashes axiom |
Date: |
Mon, 27 Mar 2006 19:43:08 -0500 |
On Monday, March 20, 2006 3:14 PM Donald J Bindner writes:
>
> This crashes my Axiom, under Debian Sarge.
> Version: Axiom 3.0 Beta (February 2005)
> Timestamp: Monday February 21, 2005 at 20:01:15
>
>
> (1) -> f(x) == simpson( y +-> y*x, 0, 1, 1.e-4, 1.e-4, 6, 10 )
>
> Type: Void
> (2) -> f(2)
> Compiling function f with type PositiveInteger -> Record(value:
> Float,error: Float,totalpts: Integer,success: Boolean)
>
This is known problem. See:
http://wiki.axiom-developer.org/196SetFunctionsCompileOn
There is currently no solution but the work-a-round is to
to compile all functions. This is the default in recent
versions of the Axoim distribution.
The following works::
)set function compile on
f(x) == simpson( y +-> y*x, 0, 1, 1.e-4, 1.e-4, 6, 10 )
f(2)
Regards,
Bill Page.