-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathinit.g
53 lines (29 loc) · 1.62 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# SPDX-License-Identifier: GPL-2.0-or-later
# CompilerForCAP: Speed up and verify categorical algorithms
#
# Reading the declaration part of the package.
#
ReadPackage( "CompilerForCAP", "gap/CompilerForCAP.gd" );
ReadPackage( "CompilerForCAP", "gap/IterateOverTree.gd" );
ReadPackage( "CompilerForCAP", "gap/Tools.gd" );
ReadPackage( "CompilerForCAP", "gap/EnhancedSyntaxTree.gd" );
ReadPackage( "CompilerForCAP", "gap/CompileCAPOperation.gd" );
ReadPackage( "CompilerForCAP", "gap/InferDataTypes.gd" );
ReadPackage( "CompilerForCAP", "gap/PrettyPrintSyntaxTree.gd" );
ReadPackage( "CompilerForCAP", "gap/ResolveOperations.gd" );
ReadPackage( "CompilerForCAP", "gap/InlineArguments.gd" );
ReadPackage( "CompilerForCAP", "gap/DropUnusedBindings.gd" );
ReadPackage( "CompilerForCAP", "gap/OutlineWrappedArguments.gd" );
ReadPackage( "CompilerForCAP", "gap/InlineBindings.gd" );
ReadPackage( "CompilerForCAP", "gap/ResolveGlobalVariables.gd" );
ReadPackage( "CompilerForCAP", "gap/DropHandledEdgeCases.gd" );
ReadPackage( "CompilerForCAP", "gap/InlineSimpleFunctionCalls.gd" );
ReadPackage( "CompilerForCAP", "gap/InlineFunctionCalls.gd" );
ReadPackage( "CompilerForCAP", "gap/Logic.gd" );
ReadPackage( "CompilerForCAP", "gap/LogicTemplates.gd" );
ReadPackage( "CompilerForCAP", "gap/HoistExpressions.gd" );
ReadPackage( "CompilerForCAP", "gap/CompilerHints.gd" );
ReadPackage( "CompilerForCAP", "gap/DeduplicateExpressions.gd" );
ReadPackage( "CompilerForCAP", "gap/CleanUpHoistedAndDeduplicatedExpressions.gd" );
ReadPackage( "CompilerForCAP", "gap/PrecompileCategory.gd" );
ReadPackage( "CompilerForCAP", "gap/ProofAssistant.gd" );