| 1 | ################################################################################ |
1 | ################################################################################ |
| 2 | # WeBWorK mod_perl (c) 1995-2002 WeBWorK Team, Univeristy of Rochester |
2 | # WeBWorK mod_perl (c) 1995-2002 WeBWorK Team, Univeristy of Rochester |
| 3 | # $Id: global.conf,v 1.14 2002-06-25 20:29:19 sh002i Exp $ |
3 | # $Id: global.conf,v 1.15 2002-06-26 13:33:56 sh002i Exp $ |
| 4 | ################################################################################ |
4 | ################################################################################ |
| 5 | |
5 | |
| 6 | # This file is used to set up the default WeBWorK course environment for all |
6 | # This file is used to set up the default WeBWorK course environment for all |
| 7 | # requests. Values may be overwritten by the course.conf for a specific course. |
7 | # requests. Values may be overwritten by the course.conf for a specific course. |
| 8 | # All package variables set in this file are added to the course environment. |
8 | # All package variables set in this file are added to the course environment. |
| … | |
… | |
| 101 | "become_student" => 10, |
101 | "become_student" => 10, |
| 102 | ); |
102 | ); |
| 103 | |
103 | |
| 104 | # PG translation stuff |
104 | # PG translation stuff |
| 105 | %pg = ( |
105 | %pg = ( |
|
|
106 | grader => "avg_problem_grader", |
| 106 | # modules lists module names and the packages each contains |
107 | # modules lists module names and the packages each contains |
| 107 | modules => { |
108 | modules => { |
| 108 | DynaLoader => [qw(DynaLoader)], |
109 | DynaLoader => [qw(DynaLoader)], |
| 109 | Exporter => [qw(Exporter)], |
110 | Exporter => [qw(Exporter)], |
| 110 | GD => [qw(GD)], |
111 | GD => [qw(GD)], |
| 111 | |
112 | |
| 112 | AlgParser => [qw(AlgParser AlgParserWithImplicitExpand Expr ExprWithImplicitExpand)], |
113 | AlgParser => [qw(AlgParser AlgParserWithImplicitExpand Expr ExprWithImplicitExpand)], |
| 113 | AnswerHash => [qw(AnswerHash AnswerEvaluator)], |
114 | AnswerHash => [qw(AnswerHash AnswerEvaluator)], |
| 114 | Circle => [qw(Circle)], |
115 | Circle => [qw(Circle)], |
| 115 | Complex => [qw(Complex)], |
116 | Complex => [qw(Complex)], |
| … | |
… | |
| 129 | Select => [qw(Select)], |
130 | Select => [qw(Select)], |
| 130 | Units => [qw(Units)], |
131 | Units => [qw(Units)], |
| 131 | VectorField => [qw(VectorField)], |
132 | VectorField => [qw(VectorField)], |
| 132 | WWPlot => [qw(WWPlot)], |
133 | WWPlot => [qw(WWPlot)], |
| 133 | }, |
134 | }, |
|
|
135 | # defaults used by answer evaluators |
| 134 | ansEvalDefaults => { |
136 | ansEvalDefaults => { |
| 135 | functAbsTolDefault => .001, |
137 | functAbsTolDefault => .001, |
| 136 | functLLimitDefault => .0000001, |
138 | functLLimitDefault => .0000001, |
| 137 | functMaxConstantOfIntegration => 1E8, |
139 | functMaxConstantOfIntegration => 1E8, |
| 138 | functNumOfPoints => 3, |
140 | functNumOfPoints => 3, |