-
Notifications
You must be signed in to change notification settings - Fork 67
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
Use Lowercase
in some show
methods
#1726
Conversation
else | ||
print(io, "infinite dimension ") | ||
end | ||
print(io, " over ", base_ring(A)) | ||
else | ||
print(io, "Group algebra of group ") |
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.
This is independent of this PR, but I was surprised by this show method:
terse
prints "Group algebra of dimension 10 over QQ"- non-terse prints "Group algebra of group of order 10 over QQ"
So the "terse" mode is indeed a little bit shorter, but I wonder why even bother in this case to have two different outputs?
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.
makes sense
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #1726 +/- ##
==========================================
+ Coverage 76.53% 76.57% +0.03%
==========================================
Files 360 360
Lines 113622 113631 +9
==========================================
+ Hits 86961 87011 +50
+ Misses 26661 26620 -41
|
Also tweak how the bases are printed (print basis vector as `[x, y]` instead of `T[x,y]`)
fa3cca3
to
33d7e57
Compare
P.S.: Ignore the nightly failure, it will be fixed in #1728 |
Co-authored-by: Max Horn <max@quendi.de>
Also tweak how the bases are printed (print basis vector as
[x, y]
instead ofT[x,y]
)