| 1 | #!/usr/local/bin/webwork-perl |
1 | |
| 2 | |
2 | |
| 3 | use PGtranslator; |
3 | use PGtranslator; |
| 4 | |
4 | |
| 5 | # defines the modules to be used by PGtranslator |
5 | # defines the modules to be used by PGtranslator |
| 6 | |
6 | |
| 7 | # This file is read in processProblem, in welcomeAction and in l2hPrecreateSet |
7 | # This file is read in processProblem, in welcomeAction and in l2hPrecreateSet |
| 8 | |
8 | |
| 9 | PGtranslator -> evaluate_modules(qw( Exporter |
9 | PGtranslator -> evaluate_modules(qw( Exporter |
| 10 | DynaLoader |
10 | DynaLoader |
| 11 | GD |
11 | GD |
| 12 | WWPlot |
12 | WWPlot |
| 13 | Fun |
13 | Fun |
| 14 | Circle |
14 | Circle |
| 15 | Label |
15 | Label |
| 16 | PGrandom |
16 | PGrandom |
| 17 | Units |
17 | Units |
| 18 | Hermite |
18 | Hermite |
| 19 | List |
19 | List |
| 20 | Match |
20 | Match |
| 21 | Select |
21 | Select |
| 22 | Multiple |
22 | Multiple |
| 23 | AlgParser |
23 | AlgParser |
| 24 | AnswerHash |
24 | AnswerHash |
| 25 | Fraction |
25 | Fraction |
| 26 | VectorField |
26 | VectorField |
| 27 | Complex1 |
27 | Complex1 |
| 28 | Complex |
28 | Complex |
| 29 | MatrixReal1 |
29 | MatrixReal1 |
| 30 | Matrix |
30 | Matrix |
| 31 | Distributions |
31 | Distributions |
| 32 | Regression |
32 | Regression |
| 33 | ) ); |
33 | ) ); |
| 34 | |
34 | |
| 35 | PGtranslator -> load_extra_packages(qw( AlgParserWithImplicitExpand |
35 | PGtranslator -> load_extra_packages(qw( AlgParserWithImplicitExpand |
| 36 | Expr |
36 | Expr |
| 37 | ExprWithImplicitExpand |
37 | ExprWithImplicitExpand |
| 38 | AnswerEvaluator |
38 | AnswerEvaluator |
| 39 | ) ); |
39 | ) ); |
| 40 | |
40 | |
| 41 | |
41 | |
| 42 | 1; |
42 | 1; |