-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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,30 @@ | ||
############################################################################# | ||
## | ||
## This file is part of recog, a package for the GAP computer algebra system | ||
## which provides a collection of methods for the constructive recognition | ||
## of groups. | ||
## | ||
## This files's authors include Sergio Siccha. | ||
## | ||
## Copyright of recog belongs to its developers whose names are too numerous | ||
## to list here. Please refer to the COPYRIGHT file for details. | ||
## | ||
## SPDX-License-Identifier: GPL-3.0-or-later | ||
## | ||
## | ||
## Code to stay backwards-compatible. | ||
## | ||
############################################################################# | ||
|
||
RECOG_DidPrintObsoleteWarningForEmptyRecognitionInfoRecord := false; | ||
BindGlobal("EmptyRecognitionInfoRecord", | ||
function(r, H, projective) | ||
if not RECOG_DidPrintObsoleteWarningForEmptyRecognitionInfoRecord then | ||
Info(InfoObsolete, 1, | ||
"'EmptyRecognitionInfoRecord' is obsolete.", | ||
"\n#I It may be removed in a future release of GAP.", | ||
"\n#I Use RecogNode instead."); | ||
RECOG_DidPrintObsoleteWarningForEmptyRecognitionInfoRecord := true; | ||
fi; | ||
return RecogNode(H, projective, r); | ||
end); |