-
Notifications
You must be signed in to change notification settings - Fork 126
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
Adapt unicode printing of exterior powers of Lie algebra modules #3270
Conversation
(v_1∧v_3) ⊗ (v_2∧v_3) | ||
(v_2∧v_3) ⊗ (v_1∧v_2) | ||
(v_2∧v_3) ⊗ (v_1∧v_3) | ||
(v_2∧v_3) ⊗ (v_2∧v_3) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While adding some doctests for this and similar cases, I noticed that \otimes is used as well. Do you have a suggestion for some non-unicode way to print these? @fingolfin
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, no great solution from me. I've seen all kinds of hacks for this like (x)
, x
; #
; ... oh and also /\
instead of ^
for ∧
. So e.g.
(v_2^v_3) (x) (v_2^v_3)
(v_2^v_3) x (v_2^v_3)
(v_2/\v_3) (x) (v_2/\v_3)
(v_2/\v_3) x (v_2/\v_3)
Frankly none of these are great.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I now use (x)
for the time being.
bc4a34e
to
62e54bf
Compare
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #3270 +/- ##
=======================================
Coverage 81.63% 81.63%
=======================================
Files 546 546
Lines 73283 73285 +2
=======================================
+ Hits 59824 59828 +4
+ Misses 13459 13457 -2
|
…ar-system#3270) * Adapt unicode printing of exterior powers * Add some doctests * Adapt tensor printing
Resolves the Lie algebra part of #3257.