-
Notifications
You must be signed in to change notification settings - Fork 5
closing some issues towards v2.0 release #44
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| @article {MR2799412, | ||
| AUTHOR = {Sysak, Yaroslav P.}, | ||
| TITLE = {Products of groups and local nearrings}, | ||
| JOURNAL = {Note Mat.}, | ||
| FJOURNAL = {Note di Matematica}, | ||
| VOLUME = {28}, | ||
| YEAR = {2008}, | ||
| PAGES = {181--216}, | ||
| ISSN = {1123-2536,1590-0932}, | ||
| MRCLASS = {16Y30 (20D40)}, | ||
| MRNUMBER = {2799412}, | ||
| } | ||
|
|
||
| @article {MR4943879, | ||
| AUTHOR = {Raievska, Iryna and Raievska, Maryna}, | ||
| TITLE = {Local nearrings, their structure, and the gap system}, | ||
| JOURNAL = {Ukrainian Math. J.}, | ||
| FJOURNAL = {Ukrainian Mathematical Journal}, | ||
| VOLUME = {76}, | ||
| YEAR = {2025}, | ||
| NUMBER = {11}, | ||
| PAGES = {1831--1848}, | ||
| ISSN = {0041-5995,1573-9376}, | ||
| MRCLASS = {16Y30 (20M10)}, | ||
| MRNUMBER = {4943879}, | ||
| MRREVIEWER = {Figen\ Tak\i l{} Mutlu}, | ||
| DOI = {10.1007/s11253-025-02426-y}, | ||
| URL = {https://doi.org/10.1007/s11253-025-02426-y}, | ||
| } | ||
|
|
||
| @article {MR230773, | ||
| AUTHOR = {Maxson, Carlton J.}, | ||
| TITLE = {On local near-rings}, | ||
| JOURNAL = {Math. Z.}, | ||
| FJOURNAL = {Mathematische Zeitschrift}, | ||
| VOLUME = {106}, | ||
| YEAR = {1968}, | ||
| PAGES = {197--205}, | ||
| ISSN = {0025-5874,1432-1823}, | ||
| MRCLASS = {16.96}, | ||
| MRNUMBER = {230773}, | ||
| MRREVIEWER = {L.\ J.\ Ratliff, Jr.}, | ||
| DOI = {10.1007/BF01110133}, | ||
| URL = {https://doi.org/10.1007/BF01110133}, | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,9 +12,12 @@ InstallMethod( LocalNearRing, | |
|
|
||
| h := DirectoriesPackageLibrary( "LocalNR", Concatenation( "Endom/", String( k ) ) ); | ||
| if IsEmpty( h ) then | ||
| return false; | ||
| Error("The library of local nearrings of order ", k, " is not available"); | ||
| else | ||
| dio := Filename( h, Concatenation( "Endom", String( k ), "_", String( l ), "-", String( m ), "_", String( n ), ".txt" ) ); | ||
| if dio = fail then | ||
| Error("The library of local nearrings with the additive group [", k, ",", l, "] and multiplicative group [", m, ",", n, "] is not available"); | ||
| fi; | ||
| G := SmallGroup( k, l ); | ||
| P1 := ReadAsFunction( dio )(); | ||
| P := P1[w]; | ||
|
|
@@ -59,9 +62,12 @@ InstallMethod( AllLocalNearRings, | |
|
|
||
| h := DirectoriesPackageLibrary( "LocalNR", Concatenation( "Endom/", String( k ) ) ); | ||
| if IsEmpty( h ) then | ||
| return false; | ||
| Error("The library of local nearrings of order ", k, " is not available"); | ||
| else | ||
| w := Filename( h, Concatenation( "Endom", String( k ), "_", String( l ), "-", String( m ), "_", String( n ), ".txt" ) ); | ||
| if w = fail then | ||
| Error("The library of local nearrings with the additive group [", k, ",", l, "] and multiplicative group [", m, ",", n, "] is not available"); | ||
| fi; | ||
| G := SmallGroup( k, l ); | ||
| P1 := ReadAsFunction( w )(); | ||
| H := []; | ||
|
|
@@ -118,13 +124,36 @@ InstallMethod( AllLocalNearRings, | |
| ## | ||
| ############################################################################ | ||
| ## | ||
| # TheAdditiveGroupsOfLibraryOfLNRsOfOrder | ||
| InstallGlobalFunction(TheAdditiveGroupsOfLibraryOfLNRsOfOrder, function(n) | ||
| # NumberLocalNearRings(<k,l,m,n>) | ||
| InstallMethod( NumberLocalNearRings, | ||
| "Number of all local nearrings", | ||
| [ IsInt, IsInt, IsInt, IsInt ], | ||
| function( k, l, m, n ) | ||
| local w, T, h, s; | ||
|
|
||
| h := DirectoriesPackageLibrary( "LocalNR", Concatenation( "Endom/", String( k ) ) ); | ||
| if IsEmpty( h ) then | ||
| Error("The library of local nearrings of order ", k, " is not available"); | ||
| else | ||
| w := Filename( h, Concatenation( "Endom", String( k ), "_", String( l ), "-", String( m ), "_", String( n ), ".txt" ) ); | ||
|
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. Should add a check if this part is not available |
||
| if w = fail then | ||
| Error("The library of local nearrings with the additive group [", k, ",", l, "] and multiplicative group [", m, ",", n, "] is not available"); | ||
| fi; | ||
| T := ReadAsFunction( w )(); | ||
| s := Size( T ); | ||
| return s; | ||
| fi; | ||
| end ); | ||
| ## | ||
| ############################################################################ | ||
| ## | ||
| # AdditiveGroupsOfLibraryOfLNRsOfOrder | ||
| InstallGlobalFunction(AdditiveGroupsOfLibraryOfLNRsOfOrder, function(n) | ||
| local t, cont, i, h, j, f, g, r, us; | ||
|
|
||
| t := DirectoriesPackageLibrary( "LocalNR", Concatenation( "Endom/", String( n ) ) ); | ||
| if IsEmpty( t ) then | ||
| Error( "the order must be PrimePowerInt and 3<n and n<1331 (except orders 128, 256, 512, 625, 729, 1024)" ); | ||
| Error("The library of local nearrings of order ", n, " is not available"); | ||
| else | ||
| cont := DirectoryContents( t[1] ); | ||
| Size( cont ); | ||
|
|
@@ -162,12 +191,12 @@ InstallGlobalFunction(IsAdditiveGroupOfLibraryOfLNRs, function(G) | |
| s := Size( G ); | ||
| t := DirectoriesPackageLibrary( "LocalNR", Concatenation( "Endom/", String( s ) ) ); | ||
| if IsEmpty( t ) then | ||
| Error( "false" ); | ||
| Error("The library of local nearrings of order ", s, " is not available"); | ||
| else | ||
| cont := DirectoryContents( t[1] ); | ||
| Size( cont ); | ||
| for i in cont do | ||
| RemoveCharacters( i, "Endom\.txt\.gz" ); | ||
| RemoveCharacters( i, "Endom.txt.gz" ); | ||
| od; | ||
| h := []; | ||
| for j in cont do | ||
|
|
@@ -195,20 +224,20 @@ end ); | |
| ## | ||
| ############################################################################ | ||
| ## | ||
| # TheLibraryOfLNRsOnGroup | ||
| InstallGlobalFunction(TheLibraryOfLNRsOnGroup, function(G) | ||
| # LibraryOfLNRsOnGroup | ||
| InstallGlobalFunction(LibraryOfLNRsOnGroup, function(G) | ||
|
|
||
| local s, t, cont, i, h, j, f, hj, g, r, ee, ww, b, w; | ||
|
|
||
| s := Size( G ); | ||
| t := DirectoriesPackageLibrary( "LocalNR", Concatenation( "Endom/", String( s ) ) ); | ||
| if IsEmpty( t ) then | ||
| Error( "false" ); | ||
| Error("The library of local nearrings of order ", s, " is not available"); | ||
| else | ||
| cont := DirectoryContents( t[1] ); | ||
| Size( cont ); | ||
| for i in cont do | ||
| RemoveCharacters( i, "Endom\.txt\.gz" ); | ||
| RemoveCharacters( i, "Endom.txt.gz" ); | ||
| od; | ||
| h := []; | ||
| for j in cont do | ||
|
|
||
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.
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.
@IrynaRaievska @raemarina please also add the bib file - the manual can not be built otherwise