RE: [Aimmath-developers] Trig package added to develop_2_1
Brought to you by:
gustav_delius,
npstrick
From: Greg G. <gr...@ma...> - 2003-07-11 04:07:20
|
On Friday, 11 July 2003 11:32 AM, Jon Breitenbucher wrote: > Greg, > > I'm still trying to get everything working under OS X. With the > impending release of Maple 9, I'm putting things on hold. > OS X does not > have a Maple 7 or 8 top fall back on. As of now I get some strange > error when I try and login to a site that was working. Can anyone tell > what is going on here? > > ######################### > type Exception report > > message > > description The server encountered an internal error () that prevented > it from fulfilling this request. > > exception > javax.servlet.ServletException: Unexpected output while initializing > new Aim process: > Error, attempting to assign to `numtheory:-pi` which is protected > ########################## > > When is AIM trying to assign to numtheory:-pi? Hi Jon, In AliceServer.mpl there is the assignation: pi := Pi: (line 96 or 97 depending on whether you get it from the distribution or CVS develop_2_1). It seems that you have added: with(numtheory): to probably Make.mpl and AliceServer.mpl (where there are the lines with(linalg): with(stats): ). The problem is that numtheory defines a function pi ... > ?numtheory,pi numtheory[pi] - number of primes less than or equal to Calling Sequence pi(n) Parameters n - expression, assumed to be of type integer Description - The function pi(n) computes the number of prime numbers less than or equal to the given integer n. ... So if you want to keep that, you should comment out or remove line 96 or 97 of AliceServer.mpl. Regards, Greg |