Skip to content

Commit

Permalink
Merge pull request #121 from cdwensley/preimages
Browse files Browse the repository at this point in the history
define NC versions of PreImages... in init.g
  • Loading branch information
grahamknockillaree committed Jan 17, 2024
2 parents 1cecda3 + de04063 commit c3799c0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions init.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,20 @@ HapGlobalDeclarationsAreAlreadyLoaded:=true;
MakeReadOnlyGlobal("HapGlobalDeclarationsAreAlreadyLoaded");
fi;

##I introduce the NC versions of PreImages...
if not IsBound( PreImagesNC ) then
BindGlobal( "PreImagesNC", PreImages );
fi;
if not IsBound( PreImagesElmNC ) then
BindGlobal( "PreImagesElmNC", PreImagesElm );
fi;
if not IsBound( PreImagesSetNC ) then
BindGlobal( "PreImagesSetNC", PreImagesSet );
fi;
if not IsBound( PreImagesRepresentativeNC ) then
BindGlobal( "PreImagesRepresentativeNC", PreImagesRepresentative );
fi;

ReadPackage("HAP","/lib/externalSoftware.gap");


0 comments on commit c3799c0

Please sign in to comment.