Is it possible to make ImplicitPlane objects display literally as they were input? I would expect
Context("ImplicitPlane");
$ans = Compute("x+1=2");
to leave
$ans as an ImplicitPlane object that will display as "x+1=2", and not as "x=1". And indeed it does in the body of a problem. However if I proceed this way, then in the answer checking,
$ans->cmp gives errors. Specifically, errors like:
ERRORS from evaluating PG file:
No such package 'Value::Equality' at line 72 of (eval 15141)
I can resolve this error by declaring
$ans to be
ImplicitPlane("x+1=2"), instead of using
Compute, but then the object is altered to display as "x=1". I would settle for using two different objects, with one created using
Compute and the other using
ImplicitPlane, except that the one that goes in to the answer checker is the one used to create the string for the Correct Answer field of the results table. And we'd like that to remain "x+1=2" (even if "x=1" is an acceptable student answer.)