-
Notifications
You must be signed in to change notification settings - Fork 176
Update to AbstractAlgebra 0.48 and Nemo 0.54. #5710
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
Changes from all commits
9c83509
6202d33
7f2ae4b
554b092
b483981
48f022e
0de9a13
df65ab7
00cb758
ed3b412
4895229
8a523b6
6957014
c5bd4a7
b8f0e87
b0368b3
e2e2672
1d0851b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -199,7 +199,7 @@ such that $[x_i, x_j] = \sum_k a_{i,j,k} x_k$. | |||||
|
|
||||||
| # Examples | ||||||
| ```jldoctest | ||||||
| julia> struct_consts = zeros(QQ, 3, 3, 3); | ||||||
| julia> struct_consts = QQ.(zeros(Int, 3, 3, 3)); | ||||||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe should be
Suggested change
What do we want here?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we want unaliased entries. |
||||||
|
|
||||||
| julia> struct_consts[1, 2, 3] = QQ(1); | ||||||
|
|
||||||
|
|
||||||
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.
Replacing
[]byBpis not strictly necessary, it's just a "drive-by" type stability fix.