#17504: solve() breaks substitute_function()
-----------------------------+------------------------
       Reporter:  wonder     |        Owner:
           Type:  defect     |       Status:  new
       Priority:  major      |    Milestone:  sage-6.4
      Component:  symbolics  |   Resolution:
       Keywords:             |    Merged in:
        Authors:             |    Reviewers:
Report Upstream:  N/A        |  Work issues:
         Branch:             |       Commit:
   Dependencies:             |     Stopgaps:
-----------------------------+------------------------

Comment (by nbruin):

 Replying to [comment:3 wonder]:
 > Wouldn't it be best to record what symbols sage is sending to maxima,
 and translate symbols in maxima's output back to the same things they
 corresponded to in the input?

 We do that to some extent, but lack of scoping makes this unpredictable:
 {{{
 sage: f=function('f')
 sage: F1=maxima_calculus(f(x))
 sage: f=function('f',nargs=2)
 sage: F2=maxima_calculus(f(x,x))
 }}}
 Since we're already mangling names for variables, one possibility would be
 to mangle any attributes into the names of functions, in which we'd get
 something along the lines:
 {{{
 sage: f=function('f',nargs=2)
 sage: maxima_calculus(f(x,x)) #we could do it like this:
 '_SAGE_FUNCTION_NARGS_2_f(_SAGE_VAR_x,_SAGE_VAR_x)
 }}}

--
Ticket URL: <http://trac.sagemath.org/ticket/17504#comment:4>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica, 
and MATLAB

-- 
You received this message because you are subscribed to the Google Groups 
"sage-trac" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.

Reply via email to