Go to the documentation of this file.
23 #ifndef INCLUDED_GR_COMPLEX_H
24 #define INCLUDED_GR_COMPLEX_H
40 #define CPPUNIT_ASSERT_COMPLEXES_EQUAL(expected,actual,delta) \
41 CPPUNIT_ASSERT_DOUBLES_EQUAL (expected.real(), actual.real(), delta); \
42 CPPUNIT_ASSERT_DOUBLES_EQUAL (expected.imag(), actual.imag(), delta);