-
Notifications
You must be signed in to change notification settings - Fork 162
Add support for generic modules over the integers and fields #4915
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
Merged
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
85d6f68
backend for generic modules over ZZ and fields
jankoboehm 78db07d
add tests for modules over ZZ and fields
jankoboehm 45562e7
fix tests
jankoboehm d48c260
fix tests
jankoboehm 2cbe19a
Fix typo, add is_finite
jankoboehm b26bb24
fix doc
jankoboehm f86de44
Fix issue with tensor product of morphisms, fix tests
jankoboehm 9f7f161
fix typo
jankoboehm a7b39a6
docu
jankoboehm ecf4c70
fix typo
jankoboehm db16844
fix typo in doctest
jankoboehm af20ada
Comments by Lars
jankoboehm 34b3ea9
attr issue
jankoboehm 07d2d76
attr fix
jankoboehm 1e68cf3
optimization for in
jankoboehm 7fdba3b
comments by Lars
jankoboehm 06ec5fe
fix
jankoboehm 5ae9441
streamline kernel
jankoboehm 3258581
fix
jankoboehm 6281c7f
fix
jankoboehm 841caa8
fix
jankoboehm b7bdb0f
polishing and size
jankoboehm ceb12a3
Comments by Max
jankoboehm e7f069e
fix
jankoboehm File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
stupid question, but: should we use
size
for this, given that it has a specific meaning in Julia already?This is why we used
order
for groups or finite fields instead ofsize
, even though e.g. GAP usesSize
primarily (withOrder
"just" an alias. That said,order
is somewhat common as terminology for groups and finite field, but I don't think it is usual for e.g. modules?If we decide
size
is a good fit, then perhaps we should ponder whether to also allow it for fields and groups as an alias toorder
, simply for user convenience / easier discoverability...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 am also fine with order and it is a better fit. a Shall we change it?
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.
Of course there are also orders in number theory, so I think we should keep
size
as it is.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.
Is this meanwhile settled?
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 am OK with using
size
here but it would be good if @thofma and @fieker could briefly chime in