-
Notifications
You must be signed in to change notification settings - Fork 63
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
Rename number_of_*
functions consistently
#1553
Conversation
60a8952
to
d97982f
Compare
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #1553 +/- ##
=======================================
Coverage 87.11% 87.11%
=======================================
Files 114 114
Lines 29483 29483
=======================================
Hits 25685 25685
Misses 3798 3798 ☔ View full report in Codecov by Sentry. |
src/AbstractAlgebra.jl
Outdated
@@ -15,7 +15,7 @@ using Preferences | |||
using Test # for "interface-conformance" functions | |||
|
|||
import GroupsCore | |||
import GroupsCore: gens, ngens, order, mul!, istrivial | |||
import GroupsCore: gens, order, mul!, istrivial |
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 guess we need to decide how to order this WRT to the GroupsCore removal PR...
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.
There already is a comment somewhere below on how to chamge this PR after the group score one has been merged. So this will get a small update after the merge of #1528
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.
Looks good to me (but depending on whether this or the GroupsCore PR is merged first, we need to adjust one or the other)
d97982f
to
2df063a
Compare
2df063a
to
ce4e503
Compare
this is now ready to get merged @thofma @fingolfin |
Is |
only in docs/src/matrix.md and in some few further docstrings (I looked trough all matches in vscode and changed all docstrings) |
Co-authored-by: Tommy Hofmann <[email protected]>
* ncols * ndigits * ngens * nrows * nvars * Update src/Matrix.jl [skip ci] Co-authored-by: Tommy Hofmann <[email protected]> --------- Co-authored-by: Tommy Hofmann <[email protected]>
See https://hackmd.io/nRnyfrSxTVe5CzXidB1cBQ?both#number-of-%E2%80%A6
Strategy while renaming:
I couldn't put the Aliases into the Aliases.jl file, as that gets loaded to late to use the shorthands in AA. Thus, I instead created function stubs with an alias in AbstractAlgebra.jl in the beginning.
All changes here should be completely non-breaking, as all old names are still there as an alias.