forked from openwebwork/pg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPG_module_list.pl
47 lines (37 loc) · 1.42 KB
/
PG_module_list.pl
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
use PGtranslator;
=head1 DESCRIPTION
# defines the modules to be used by PGtranslator
# This file is read in processProblem, in welcomeAction and in l2hPrecreateSet
=cut
PGtranslator -> evaluate_modules(qw( Exporter
DynaLoader
GD
WWPlot
Fun
Circle
Label
PGrandom
Units
Hermite
List
Match
Select
Multiple
AlgParser
AnswerHash
Fraction
VectorField
Complex1
Complex
MatrixReal1
Matrix
Distributions
Statistics
Regression
) );
PGtranslator -> load_extra_packages(qw( AlgParserWithImplicitExpand
Expr
ExprWithImplicitExpand
AnswerEvaluator
) );
1;