On Jun 24, 11:59 pm, Jason Grout <[email protected]> wrote: > sage: implicit_mul('diff(f,x)(3)', level=10) > 'diff(f,x)*(3)' > > which is definitely not what I intended.
Jason Would you agree a good robust solution to your issue would be for an implicit_mul level that *ONLY* converted spaces to multiplication? In other words.... This should work... (1 + 2) (3 + 4) # Notice space between parens. This should/would give an error... (1 + 2)(3 + 4) # Notice no space between parens. I reread the implicit_mul docs at http://www.sagemath.org/doc/reference/sage/misc/preparser.html and I cannot find a level between 3 and 10 that does this. cs -- 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 URL: http://www.sagemath.org
