From: Chris S. <san...@us...> - 2005-09-26 10:15:46
|
Update of /cvsroot/stack/stack-1-0/lang/en/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14443/lang/en/doc Modified Files: author_testsuite.php en_doc.php Log Message: Index: author_testsuite.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/lang/en/doc/author_testsuite.php,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** author_testsuite.php 15 Sep 2005 10:34:56 -0000 1.11 --- author_testsuite.php 26 Sep 2005 10:15:34 -0000 1.12 *************** *** 178,181 **** --- 178,182 ---- $testsuite[] = stack_testsuite_construct('PartFrac','1/(x+1) + 1/(x+2)','1/(x+1) + 2/(x+2)',0,'x',''); $testsuite[] = stack_testsuite_construct('PartFrac','1/(x+1) + 1/(x+2)','1/(x+3) + 1/(x+2)',0,'x','Denominator Error'); + $testsuite[] = stack_testsuite_construct('PartFrac','(2*x+1)/(x^2+1)-2/(x-1)','(2*x+1)/(x^2+1)-2/(x-1)',1,'x',''); $testsuite[] = stack_testsuite_construct('SA_factored','1/0','0',0,'x',''); Index: en_doc.php =================================================================== RCS file: /cvsroot/stack/stack-1-0/lang/en/doc/en_doc.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** en_doc.php 17 Sep 2005 11:31:04 -0000 1.10 --- en_doc.php 26 Sep 2005 10:15:34 -0000 1.11 *************** *** 309,312 **** --- 309,315 ---- we return true."; + $stackAnswerTest['AlgEquiv_quiet']['doc']="This is identical to the answer test + AlgEquiv, except that any feedback is ignored. Useful inside potential respons trees"; + $stackAnswerTest['CASEqual']['doc']="This is test if the CAS returns TRUE when asked to evaluate <tt>StudentAnswer=TeacherAnswer</tt> as a Boolean. |