File: init.g

package info (click to toggle)
gap-hap 1.73%2Bds-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 58,508 kB
  • sloc: xml: 16,467; sh: 197; javascript: 155; makefile: 121; ansic: 47; perl: 24
file content (29 lines) | stat: -rw-r--r-- 925 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#############################################################################
##
##  init.g                  HAP library                  Graham Ellis 
##
############################################################################

if not IsBound(HapGlobalDeclarationsAreAlreadyLoaded) then
ReadPackage("HAP","lib/hap.gd");
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");