Answer Checker Options (MathObjects)
Jump to navigation
Jump to search
The action of the answer checkers can be modified by passing options to the cmp()
method. For example:
ANS(Real(pi)->cmp(showTypeWarnings => 0));
will prevent the answer checker from reporting errors due to the student entering the wrong type of answer (say a vector rather than a number).
Options common to all answer checkers
There are a number of options common to all the checkers:
showTypeWarnings => 1
or0
- Show/don't show messages about student answers not being of the right type. (default: 1)
showEqualErrors => 1
or0
- Show/don't show messages produced by trying to compare the professor and student values for equality, e.g., conversion errors between types. (default: 1)
ignoreStrings => 1
or0
- Show/don't show type mismatch errors produced by strings (so that
NONE
will not cause a type mismatch in a checker looking for a list of numbers, for example). (default: 1)
studentsMustReduceUnions => 1
or0
- Controls whether or not students answers are allowed to include overlapping, redundant, or uncombined intervals. (default: 1)
showUnionReduceWarnings => 1
or0
- Do/don't show warnings for unreduced unions. This includes warnings about overlapping sets, uncombined intervals (like
(0,1] U [1,infinity]
), and repeated elements in sets. (default: 1)
Options for Individual MathObject Classes
In addition to these, the individual MathObject types have their own options. These are documented in the individual pages for the various MathObject classes, linked below:
- Real class
- Infinity class
- Complex class
- Point class
- Vector class
- Matrix class
- List class
- Interval class
- Set clas
- Union class
- String class
- Formula class