1 | initial version |
The following works (although, there might be a nicer solution):
sage: m = {}
sage: for eq in sol:
....: m[eq.lhs()]=eq.rhs()
2 | No.2 Revision |
The following works (although, there might be a nicer solution):
sage: m = {}
sage: for eq in sol: sol:
....:
m[eq.lhs()]=eq.rhs()