Skip to content
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

Add TRANSDEGREES to obsoletes (used by CTblLib) #1852

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions lib/obsolete.gd
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,25 @@ BindGlobal( "LOADED_PACKAGES", GAPInfo.PackagesLoaded );
BindGlobal( "PACKAGES_VERSIONS", rec() );
BindGlobal( "Revision", rec() );

#############################################################################
##
#V TRANSDEGREES - used by CTblLib (11/2017)
##
## This variable was used by the GAP Transitive Groups Library before it
## became a separate TransGrp package. It denoted the maximal degree of
## transitive permutation groups provided by that library.
##
## In the TransGrp package, this information is provided by the boolean
## list TRANSAVAILABLE, which indicates availability for each possible
## degree (this is necessary because the data for some degrees may have
## to be downloaded separately).
##
## At the time of writing this comment, the TransGrp package contained
## representatives for all transitive permutation groups of degree at
## most 47, with degree 32 needing to be downloaded separately.
##
BindGlobal( "TRANSDEGREES", 30 );

#############################################################################
##
#A NormedVectors( <V> )
Expand Down