"Mike Hansen" <[EMAIL PROTECTED]> writes:

> Hi Martin,
> 
> > Great! I applied this, but
> >
> > a = axiom(x^2 + 1)
> > a.sage()
> >
> > still does not work.  I guess I have to tell sage somehow to reconfigure or 
> > so?
> 
> You need to run start Sage with "sage -br" (for build and run) to make
> the changes active.

Better, but not quite there yet:

sage: a = axiom(x^2 + 1)
sage: a.sage()
---------------------------------------------------------------------------
NotImplementedError                       Traceback (most recent call last)

/local/scratch/sage-3.1.final/<ipython console> in <module>()

/local/scratch/sage-3.1.final/local/lib/python2.5/site-packages/sage/interfaces/expect.py
 in sage(self)
   1367             Rational Field
   1368         """
-> 1369         return self._sage_()
   1370
   1371     def __repr__(self):

/local/scratch/sage-3.1.final/local/lib/python2.5/site-packages/sage/interfaces/axiom.py
 in _sage_(self)
    609         elif type.startswith('Polynomial'):
    610             from sage.rings.all import PolynomialRing
--> 611             base_ring = P(type.lstrip('Polynomial '))._sage_domain()
    612             vars = str(self.variables())[1:-1]
    613             R = PolynomialRing(base_ring, vars)

/local/scratch/sage-3.1.final/local/lib/python2.5/site-packages/sage/interfaces/axiom.py
 in _sage_domain(self)
    648             return P(name.lstrip('Fraction 
'))._sage_domain().fraction_field()
    649
--> 650         raise NotImplementedError
    651
    652

NotImplementedError:
sage: a
x*x+1


--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to