Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium

New issue 2829 by [email protected]: secondquant argument ordering
http://code.google.com/p/sympy/issues/detail?id=2829

In secondquant there are some places where a test like `if i < j` is employed but it's not clear if lexical ordering was intended or whether a value ordering was intended. Note that an unevaluated bool may be True or False even though the exact values are not known:

bool(i<j)
True
bool(i<a)
False

Note how this plays out in KroneckerDelta:

KroneckerDelta(i,j)
KroneckerDelta(i,j)
KroneckerDelta(i,a)
KroneckerDelta(a,i)

(the i and a are now reversed -- was this intended?)


--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" 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/sympy-issues?hl=en.

Reply via email to