On Tuesday 30 October 2007, Simon King wrote: > Dear William, dear Martin, > > > and change the line (1145) that creates the singular interface to > > > > singular = Singular(logfile="/tmp/logfile") > > That worked, thank you! The Result is in the attachment. In line 947, I do > print(sage130), and this prints the example with the two missing > relations. > > Hopefully you excuse that i have no clue where in the logfile I should > start searching for errors.
Hi, my five cents so far, first we should make sure this also breaks with the official Singular binary: cat logfile | egrep "^>" | sed s/"^>"// | Singular Then, I'd remove all strictly unnecessary lines like killing of variables. cat logfile | egrep "^>" | sed s/"^> "// | sed s/"^if(defined.*$"// | Singular and (as this doesn't fix the problem, which is good) start simplifying the code as long as the error remains by hand. I can try to do this later but as you know this code better could you give it a shot? Martin -- name: Martin Albrecht _pgp: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x8EF0DC99 _www: http://www.informatik.uni-bremen.de/~malb _jab: [EMAIL PROTECTED] --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://sage.math.washington.edu/sage/ and http://sage.scipy.org/sage/ -~----------~----~----~----~------~----~------~--~---
