-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinit.g
38 lines (34 loc) · 1.25 KB
/
init.g
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
30
31
32
33
34
35
36
37
38
#############################################################################
##
#W init.g GAP package `Utils' Chris Wensley
##
#Y Copyright (C) 2015-2023, The GAP Group,
##
if not IsBound( PreImagesRepresentativeNC ) then
BindGlobal( "PreImagesRepresentativeNC", PreImagesRepresentative );
fi;
if not IsBound( IsMatrixOrMatrixObj ) then
BindGlobal( "IsMatrixOrMatrixObj", IsMatrix );
fi;
if not IsBound( MutableCopyMatrix ) then
BindGlobal( "MutableCopyMatrix", ShallowCopy );
fi;
## read the function declarations
ReadPackage( "utils", "lib/start.gd" );
ReadPackage( "utils", "lib/files.gd" );
ReadPackage( "utils", "lib/groups.gd" );
ReadPackage( "utils", "lib/iterator.gd" );
ReadPackage( "utils", "lib/latex.gd" );
ReadPackage( "utils", "lib/lcset.gd" );
ReadPackage( "utils", "lib/lists.gd" );
ReadPackage( "utils", "lib/magma.gd" );
ReadPackage( "utils", "lib/maps.gd" );
ReadPackage( "utils", "lib/matrix.gd" );
ReadPackage( "utils", "lib/number.gd" );
ReadPackage( "utils", "lib/print.gd" );
ReadPackage( "utils", "lib/record.gd" );
ReadPackage( "utils", "lib/string.gd" );
if not IsBound( Download ) then
ReadPackage( "utils", "lib/download.gd" );
BindGlobal("DOWNLOAD_FROM_UTILS", true);
fi;