Hi, The simplify_rational method has three choices for Maxima functions, but I wanted to try GiNaC's normal method described here
http://www.ginac.de/tutorial/Rational-expressions.html#Rational-expressions to see if it was faster. Has someone already tried this and concluded Maxima was better? I see that there is an expand_rational method in sage that uses Pynac whose main part is just _sig_on cdef GEx x = self_.gobj.expand(0) _sig_off return new_Expression_from_GEx(self._parent, x) So I guess I would need to copy those lines and change .expand(0) to .normal(). But how do I add the .normal() method to Pynac's table of eligible GiNaC functions? Thanks, Ben -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org