From 1bedc2e4bda922b7a35623e963934484bbd204f4 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 31 May 2013 12:23:58 -0400 Subject: [PATCH] Change the file paths to be less specific. --- common/lib/capa/symmath/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/lib/capa/symmath/README.md b/common/lib/capa/symmath/README.md index 3b05f07c48..8da9aa87ee 100644 --- a/common/lib/capa/symmath/README.md +++ b/common/lib/capa/symmath/README.md @@ -10,7 +10,7 @@ expressions typeset correctly, but may not be mathematically legal, like "5 / (1 = 2)". The PMathML is converted into "Content MathML" (CMathML), which is by definition mathematically legal, using an XSLT 2.0 stylesheet, via a module in SnuggleTeX. CMathML is then converted into a sympy expression. This work is -all done in `lms/lib/symmath/formula.py` +all done in `symmath/formula.py`. (2) Simplifying the expression and checking against what is expected is done by using sympy, and a set of heuristics based on options flags provided by the @@ -21,7 +21,7 @@ checked numerically in addition to symbolically. The checking is done in stages, first with no simplification, then with increasing levels of testing; if a match is found at any stage, then an "ok" is returned. Helpful messages are also returned, eg if the input expression is of a different type than the -expected. This work is all done in `lms/lib/symmath/symmath_check.py` +expected. This work is all done in `symmath/symmath_check.py`. Links: