Opened 3 years ago
Closed 3 years ago
#27629 closed defect (fixed)
Broken comparison of symbolic matrix with assumptions
Reported by: | jdemeyer | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | sage-8.8 |
Component: | symbolics | Keywords: | |
Cc: | bpage | Merged in: | |
Authors: | Jeroen Demeyer | Reviewers: | Frédéric Chapoton |
Report Upstream: | N/A | Work issues: | |
Branch: | 66a8a4c (Commits, GitHub, GitLab) | Commit: | 66a8a4c3b3dd696c3ab6d9abc34654c4f309b7cd |
Dependencies: | Stopgaps: |
Description (last modified by )
sage: assume(x,'real') sage: e1 = matrix([[0,-x],[x,0]]) sage: e1.transpose() == e1 True
Clearly, the matrix should not be equal to its transpose!
Change History (7)
comment:1 Changed 3 years ago by
- Description modified (diff)
comment:2 Changed 3 years ago by
- Cc bpage added
comment:3 Changed 3 years ago by
- Branch set to u/jdemeyer/broken_comparison_of_symbolic_matrix_with_assumptions
comment:4 Changed 3 years ago by
- Commit set to 66a8a4c3b3dd696c3ab6d9abc34654c4f309b7cd
- Status changed from new to needs_review
comment:5 Changed 3 years ago by
looks good, but not clear why it was failing before..
comment:6 Changed 3 years ago by
- Reviewers set to Frédéric Chapoton
- Status changed from needs_review to positive_review
ok, well..
comment:7 Changed 3 years ago by
- Branch changed from u/jdemeyer/broken_comparison_of_symbolic_matrix_with_assumptions to 66a8a4c3b3dd696c3ab6d9abc34654c4f309b7cd
- Resolution set to fixed
- Status changed from positive_review to closed
Note: See
TracTickets for help on using
tickets.
New commits:
Use richcmp_item() to implement comparisons of matrices