-
-
Notifications
You must be signed in to change notification settings - Fork 482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix display of tensors on free modules of finite rank #22520
Labels
Milestone
Comments
New commits:
|
Commit: |
Reviewer: Travis Scrimshaw |
comment:2
It's somewhat ugly, but a necessary evil because of how symbolic works (i.e., t could be 0). |
comment:3
Replying to @tscrim:
I agree. |
Changed branch from public/manifolds/bug-display-tensor-22520 to |
This was referenced Apr 14, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The following is a bug:
The outcome of the last line should be
t e_0
. This bug arises because of the nonzero check performed to avoid displaying zero components. This check is written ast != 0
, which returnsFalse
. The fix proposed in this ticket is to replace it bynot (t==0)
, which returnsTrue
.CC: @tscrim
Component: linear algebra
Keywords: tensor
Author: Eric Gourgoulhon
Branch/Commit:
7c02ed8
Reviewer: Travis Scrimshaw
Issue created by migration from https://trac.sagemath.org/ticket/22520
The text was updated successfully, but these errors were encountered: