| I want to create an object that I can take formal products and sums of, and also that remembers some extra data. I'd like to use sage's symbolic tools to do it without reimplementing multiplication, etc. For example, I'd like to make a class I've tried subclassing Expression, but it seems like whenever I try to do some sums or products it just turns my thing into an Expression and forgets that it was a myVar. Is something like this possible in sage?
I think my syntax is probably bad in the example-- I need to be more careful about the variable names, probably, but I hope it is clear what I am trying to do.
paragon (May 11 '11) |
| You can't solve your problem by subclassing Expression, this requires you to assign data to every expression. Whats the data associated to the Expression a+b? Since you only want to associate something to variables, you can just use a dictionary:
I have thought about using a dictionary, but it is kind of awkward when I want to pass these things into functions and between modules, and also I sometimes want variables with the same name but different data.
paragon (May 21 '11)
Also, I am ok if a+b is just an Expression, I just want to be able to extract 'a' using operands() and then get a myVar object out.
paragon (May 21 '11) |
| This is not a complete answer, but here are some useful methods of the symbolic ring and elements for retrieving wrapped python objects:
This is along the lines of what I want, but if I force my object into SR, then I can't add them together because the addition is not defined for them. I want to just inherit the addition and multiplication of the Symbolic Ring somehow without reimplementing.
paragon (May 21 '11) |
Asked: May 11 '11
Seen: 117 times
Last updated: May 12 '11
powered by ASKBOT version 0.7.22
Copyright Sage, 2010. Some rights reserved under creative commons license.