Skip to content
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
35 changes: 0 additions & 35 deletions gap/pkg/OscarInterface/gap/OscarInterface.gi
Original file line number Diff line number Diff line change
Expand Up @@ -184,38 +184,3 @@ InstallMethod( IsHandledByNiceMonomorphism,
fi;
return false;
end );

############################################################################

# The following can be removed as soon as the CTblLib package provides it
# (not yet in CTblLib v1.3.9).
if not IsBound( IsAtlasCharacterTable ) then
DeclareProperty( "IsAtlasCharacterTable", IsNearlyCharacterTable );

InstallMethod( IsAtlasCharacterTable,
[ "IsOrdinaryTable" ],
tbl -> PositionSublist( InfoText( tbl ),
"origin: ATLAS of finite groups" ) <> fail );

InstallMethod( IsAtlasCharacterTable,
[ "IsBrauerTable" ],
tbl -> IsAtlasCharacterTable( OrdinaryCharacterTable( tbl ) ) );

AddSet( CTblLib.SupportedAttributes, "IsAtlasCharacterTable" );

DatabaseAttributeAddX( CTblLib.Data.IdEnumerator, rec(
identifier:= "IsAtlasCharacterTable",
type:= "values",
name:= "IsAtlasCharacterTable",
neededAttributes:= [ "InfoText" ],
create:= function( attr, id )
local infotext;

infotext:= attr.idenumerator.attributes.InfoText;
return PositionSublist( infotext.attributeValue( infotext, id ),
"origin: ATLAS of finite groups" ) <> fail;
end,
) );

CTblLib.ExtendAttributeOfIdEnumeratorExt( "IsAtlasCharacterTable", true );
fi;
Loading