Update of /cvsroot/opal/opal/src/external/quicktest
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26719/src/external/quicktest
Modified Files:
quicktest.h
Log Message:
Fixes in ServoMotor, Vec3r to handle float point errors. Updated unit test framework.
Index: quicktest.h
===================================================================
RCS file: /cvsroot/opal/opal/src/external/quicktest/quicktest.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** quicktest.h 1 Dec 2005 23:55:21 -0000 1.5
--- quicktest.h 2 Dec 2005 05:47:21 -0000 1.6
***************
*** 102,106 ****
static bool areEqual(double x, double y)
{
! const double EPSILON = 0.000001;
double maxVal = 1;
--- 102,106 ----
static bool areEqual(double x, double y)
{
! const double EPSILON = 0.00001;
double maxVal = 1;
|