-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathread.g
46 lines (33 loc) · 1.31 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
##
## Datastructures: GAP package providing common datastructures.
##
## Copyright (C) 2015-2017 The datastructures team.
## For list of the team members, please refer to the COPYRIGHT file.
##
## This package is licensed under the GPL 2 or later, please refer
## to the COPYRIGHT.md and LICENSE files for details.
##
##
#R Read the install files.
##
DeclareInfoClass( "InfoDataStructures" );
SetInfoLevel( InfoDataStructures, 1 );
ReadPackage("datastructures", "gap/plistdeque.gi");
ReadPackage("datastructures", "gap/heap.gi");
#ReadPackage("datastructures", "gap/dllist.gi"); # TODO: disabled for now
ReadPackage("datastructures", "gap/binaryheap.gi");
ReadPackage("datastructures", "gap/pairingheap.gi");
ReadPackage("datastructures", "gap/hashmap.gi");
ReadPackage("datastructures", "gap/hashset.gi");
ReadPackage("datastructures", "gap/slice.gi");
ReadPackage("datastructures", "gap/stack.gi");
ReadPackage("datastructures", "gap/hashfunctions.gi");
# Generic methods for ordered set data structures
ReadPackage("datastructures", "gap/ordered.gi");
# Skiplists
ReadPackage("datastructures", "gap/skiplist.gi");
# AVL trees (self-balancing)
ReadPackage("datastructures", "gap/avltree.gi");
ReadPackage("datastructures", "gap/union-find.gi");
# Memoising functions
ReadPackage("datastructures", "gap/memoize.gi");