#9556: Dynamic attributes for symbolic expressions
------------------------------------+---------------------------------------
Reporter: SimonKing | Owner:
Type: enhancement | Status: needs_work
Priority: major | Milestone: sage-5.0
Component: symbolics | Keywords: symbolic expression dynamic
attribute
Author: | Upstream: N/A
Reviewer: | Merged:
Work_issues: segfaulting doctests |
------------------------------------+---------------------------------------
Comment(by mhansen):
I did a little mockup using this idea.
{{{
sage: from sage.symbolic.function import BuiltinFunction
sage: class ExampleBuiltin(BuiltinFunction):
....: def __init__(self):
....: BuiltinFunction.__init__(self, 'ex_func', nargs=0)
#arbitrary no of args
....: class EvaluationMethods:
....: def some_function_name(self):
....: return len(self.operands())
....:
sage: ex_func = ExampleBuiltin()
sage: f = ex_func(x, x+1, x+2)
sage: f.some_function_name()
3
sage: abs(f)
abs(ex_func(x, x + 1, x + 2))
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/9556#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 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-trac?hl=en.