--- trunk/test/math/SquareMatrixTestCase.cpp 2004/10/20 18:07:08 123 +++ trunk/test/math/SquareMatrixTestCase.cpp 2009/11/25 20:02:06 1390 @@ -78,14 +78,14 @@ void SquareMatrixTestCase::testJacobi() { SMat3x3::jacobi(a, w1L, v); CPPUNIT_ASSERT_DOUBLES_EQUAL(w1L[0], w1R[0], 0.0001); - CPPUNIT_ASSERT_DOUBLES_EQUAL(w1L[1], w1R[1], oopse::epsilon); - CPPUNIT_ASSERT_DOUBLES_EQUAL(w1L[2], w1R[2], oopse::epsilon); + CPPUNIT_ASSERT_DOUBLES_EQUAL(w1L[1], w1R[1], OpenMD::NumericConstant::epsilon); + CPPUNIT_ASSERT_DOUBLES_EQUAL(w1L[2], w1R[2], OpenMD::NumericConstant::epsilon); } void SquareMatrixTestCase::testTrace() { - CPPUNIT_ASSERT_DOUBLES_EQUAL(identMat.trace(), 3.0, oopse::epsilon); - CPPUNIT_ASSERT_DOUBLES_EQUAL(symMat.trace(), 4.0, oopse::epsilon); + CPPUNIT_ASSERT_DOUBLES_EQUAL(identMat.trace(), 3.0, OpenMD::NumericConstant::epsilon); + CPPUNIT_ASSERT_DOUBLES_EQUAL(symMat.trace(), 4.0, OpenMD::NumericConstant::epsilon); } void SquareMatrixTestCase::testIsSymmertric(){ CPPUNIT_ASSERT(identMat.isSymmetric());