|
mathmaker
0.6(alpha)
|
These are object of the kind : Exponented = Exponented [= ...]. More...
Public Member Functions | |
| def | __init__ |
| Constructor. | |
| def | get_elements |
| Returns the elements of the Equality. | |
| def | get_equal_signs |
| Returns the equal signs series of the Equality. | |
| def | into_str |
| Creates a string of the given object in the given ML. | |
| def | __getitem__ |
| It is possible to index an Equality. | |
| def | __setitem__ |
| def | __len__ |
| Returns the number of elements of the Equality. | |
Properties | |
| elements = property(get_elements, doc = "Elements of the object") | |
| equal_signs = property(get_equal_signs, doc = "Equal signs of the object") | |
These are object of the kind : Exponented = Exponented [= ...].
Definition at line 265 of file calculus.py.
| def core.calculus.Equality.__init__ | ( | self, | |
| objcts, | |||
| options | |||
| ) |
Constructor.
| objcts | is a [Exponented] of 2 elements at least equal_signs Contains a list of equal/not equal signs. Must be as long as len(objcts) - 1. The signs are "=" or "neq" |
Definition at line 279 of file calculus.py.
References core.calculus.Equality._elements, core.calculus.Equality._equal_signs, and core.base.Clonable.clone().
Referenced by core.calculus.Equation.__init__(), and core.root_calculus.Value.substitute().
| def core.calculus.Equality.into_str | ( | self, | |
| options | |||
| ) |
Creates a string of the given object in the given ML.
| options | Any options |
Reimplemented from core.base.Printable.
Definition at line 370 of file calculus.py.
References core.calculus.Equality.elements, and core.calculus.Equality.equal_signs.
1.7.6.1