Update of /cvsroot/stack/stack-dev/install
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv30118/install
Modified Files:
answer_test_testsuite.php
Log Message:
log10 support
Index: answer_test_testsuite.php
===================================================================
RCS file: /cvsroot/stack/stack-dev/install/answer_test_testsuite.php,v
retrieving revision 1.57
retrieving revision 1.58
diff -C2 -d -r1.57 -r1.58
*** answer_test_testsuite.php 27 Oct 2010 13:40:51 -0000 1.57
--- answer_test_testsuite.php 1 Nov 2010 14:30:27 -0000 1.58
***************
*** 77,80 ****
--- 77,81 ----
$testsuite[] = stack_testsuite_construct('AlgEquiv','(2*sec(2*t)^2-2)/2','-(sin(4*t)^2-2*sin(4*t)+cos(4*t)^2-1)*(sin(4*t)^2+2*sin(4*t)+cos(4*t)^2-1)/(sin(4*t)^2+cos(4*t)^2+2*cos(4*t)+1)^2',1,'','');
$testsuite[] = stack_testsuite_construct('AlgEquiv','log(a^2*b)','2*log(a)+log(b)',1,'','Logarithms');
+ $testsuite[] = stack_testsuite_construct('AlgEquiv','lg(10^x)','x',1,'','');
$testsuite[] = stack_testsuite_construct('AlgEquiv','x','[1,2,3]',0,'','Lists');
$testsuite[] = stack_testsuite_construct('AlgEquiv','[1,2]','[1,2,3]',0,'','');
|