forked from markuslh/MatricesForHomalg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathread.g
54 lines (43 loc) · 2.04 KB
/
read.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#############################################################################
##
## read.g MatricesForHomalg package Mohamed Barakat
##
## Copyright 2007-2010 Mohamed Barakat, RWTH Aachen University
##
## Reading the implementation part of the MatricesForHomalg package.
##
#############################################################################
## init
ReadPackage( "MatricesForHomalg", "gap/MatricesForHomalg.gi" );
## rings
ReadPackage( "MatricesForHomalg", "gap/homalgTable.gi" );
ReadPackage( "MatricesForHomalg", "gap/HomalgRing.gi" );
ReadPackage( "MatricesForHomalg", "gap/HomalgRingMap.gi" );
## matrices
ReadPackage( "MatricesForHomalg", "gap/HomalgMatrix.gi" );
## ring relations
ReadPackage( "MatricesForHomalg", "gap/HomalgRingRelations.gi" );
## tools/service/basic
ReadPackage( "MatricesForHomalg", "gap/Tools.gi" );
ReadPackage( "MatricesForHomalg", "gap/Service.gi" );
ReadPackage( "MatricesForHomalg", "gap/Basic.gi" );
## LogicForHomalg subpackages
ReadPackage( "MatricesForHomalg", "gap/LIRNG.gi" );
ReadPackage( "MatricesForHomalg", "gap/LIMAP.gi" );
## NEVER EVER preload LIMAT.gi and COLEM.gi; i.e.
## they must be loaded after Tools.gi, Service.gi, and Basic.gi,
## otherwise the logical methods get a lower rank than the generic ones
ReadPackage( "MatricesForHomalg", "gap/COLEM.gi" );
ReadPackage( "MatricesForHomalg", "gap/LIMAT.gi" );
# This is a backup For LIMAT with the minimal logical requierements
# for empty matrices for the package to be functional.
# do not use, unless you know what you do!
# ReadPackage( "MatricesForHomalg", "gap/LIMATEmp.gi" );
## specific GAP4 internal rings
ReadPackage( "MatricesForHomalg", "gap/Integers.gi" );
#ReadPackage( "MatricesForHomalg", "gap/EDIM.gi" );
## the subpackage ResidueClassRingForHomalg
ReadPackage( "MatricesForHomalg", "gap/ResidueClassRingForHomalg.gi" );
ReadPackage( "MatricesForHomalg", "gap/ResidueClassRing.gi" );
ReadPackage( "MatricesForHomalg", "gap/ResidueClassRingBasic.gi" );
ReadPackage( "MatricesForHomalg", "gap/ResidueClassRingTools.gi" );