| [f60610] | 1 | /* | 
|---|
|  | 2 | * linearsystemofequationsunittest.cpp | 
|---|
|  | 3 | * | 
|---|
|  | 4 | *  Created on: Jan 8, 2010 | 
|---|
|  | 5 | *      Author: heber | 
|---|
|  | 6 | */ | 
|---|
|  | 7 |  | 
|---|
|  | 8 | using namespace std; | 
|---|
|  | 9 |  | 
|---|
|  | 10 | #include <iomanip> | 
|---|
|  | 11 | #include <cppunit/CompilerOutputter.h> | 
|---|
|  | 12 | #include <cppunit/extensions/TestFactoryRegistry.h> | 
|---|
|  | 13 | #include <cppunit/ui/text/TestRunner.h> | 
|---|
| [3dcb1f] | 14 | #include <cmath> | 
|---|
| [f60610] | 15 |  | 
|---|
|  | 16 | #include "linearsystemofequationsunittest.hpp" | 
|---|
|  | 17 | #include "vector.hpp" | 
|---|
|  | 18 |  | 
|---|
| [9b6b2f] | 19 | #ifdef HAVE_TESTRUNNER | 
|---|
|  | 20 | #include "UnitTestMain.hpp" | 
|---|
|  | 21 | #endif /*HAVE_TESTRUNNER*/ | 
|---|
|  | 22 |  | 
|---|
| [f60610] | 23 | /********************************************** Test classes **************************************/ | 
|---|
|  | 24 |  | 
|---|
|  | 25 | // Registers the fixture into the 'registry' | 
|---|
|  | 26 | CPPUNIT_TEST_SUITE_REGISTRATION( LinearSystemOfEquationsTest ); | 
|---|
|  | 27 |  | 
|---|
|  | 28 |  | 
|---|
|  | 29 | void LinearSystemOfEquationsTest::setUp() | 
|---|
|  | 30 | { | 
|---|
|  | 31 | s = new LinearSystemOfEquations(4,4); | 
|---|
|  | 32 | }; | 
|---|
|  | 33 |  | 
|---|
|  | 34 | void LinearSystemOfEquationsTest::tearDown() | 
|---|
|  | 35 | { | 
|---|
|  | 36 | delete(s); | 
|---|
|  | 37 | }; | 
|---|
|  | 38 |  | 
|---|
|  | 39 | /** Unit test for initialization. | 
|---|
|  | 40 | * | 
|---|
|  | 41 | */ | 
|---|
|  | 42 | void LinearSystemOfEquationsTest::InitializationTest() | 
|---|
|  | 43 | { | 
|---|
|  | 44 | // Setting A | 
|---|
|  | 45 | double array[] = { 1., 0., 0., 0., | 
|---|
|  | 46 | 0., 2., 0., 0., | 
|---|
|  | 47 | 0., 0., 3., 0., | 
|---|
|  | 48 | 0., 0., 0., 4. }; | 
|---|
|  | 49 | s->SetA(array); | 
|---|
|  | 50 |  | 
|---|
|  | 51 | // Setting b | 
|---|
|  | 52 | }; | 
|---|
|  | 53 |  | 
|---|
|  | 54 | /** Unit test for symmetry property. | 
|---|
|  | 55 | * | 
|---|
|  | 56 | */ | 
|---|
|  | 57 | void LinearSystemOfEquationsTest::SymmetricTest() | 
|---|
|  | 58 | { | 
|---|
|  | 59 | CPPUNIT_ASSERT_EQUAL( true, s->SetSymmetric(true) ); | 
|---|
|  | 60 | //LinearSystemOfEquations *t = new LinearSystemOfEquations(4,3); | 
|---|
|  | 61 | //CPPUNIT_ASSERT_EQUAL( true, t->SetSymmetric(true) ); | 
|---|
|  | 62 | //delete(t); | 
|---|
|  | 63 | }; | 
|---|
|  | 64 |  | 
|---|
|  | 65 | /** Unit test for simple Solve. | 
|---|
|  | 66 | * | 
|---|
|  | 67 | */ | 
|---|
|  | 68 | void LinearSystemOfEquationsTest::SolveSimpleTest() | 
|---|
|  | 69 | { | 
|---|
|  | 70 | // set up A and b | 
|---|
|  | 71 | double m_array[] = { 1., 0., 0., 0., | 
|---|
|  | 72 | 0., 2., 0., 0., | 
|---|
|  | 73 | 0., 0., 3., 0., | 
|---|
|  | 74 | 0., 0., 0., 4. }; | 
|---|
|  | 75 | double v_array[] = { 1., 2., 3., 4. }; | 
|---|
|  | 76 | s->SetA(m_array); | 
|---|
|  | 77 | s->Setb(v_array); | 
|---|
|  | 78 |  | 
|---|
|  | 79 | // solve | 
|---|
|  | 80 | double *array = new double[4]; | 
|---|
|  | 81 | s->GetSolutionAsArray(array); | 
|---|
|  | 82 | for (int i=0;i<4;i++) | 
|---|
|  | 83 | CPPUNIT_ASSERT_EQUAL( 1., array[i]); | 
|---|
|  | 84 | delete[](array); | 
|---|
|  | 85 | }; | 
|---|
|  | 86 |  | 
|---|
|  | 87 | /** Unit test for advanced Solve. | 
|---|
|  | 88 | * | 
|---|
|  | 89 | */ | 
|---|
|  | 90 | void LinearSystemOfEquationsTest::SolveAdvancedTest() | 
|---|
|  | 91 | { | 
|---|
|  | 92 | // set up A and b | 
|---|
|  | 93 | double m_array[] = { 0.18, 0.60, 0.57, 0.96, | 
|---|
|  | 94 | 0.41, 0.24, 0.99, 0.58, | 
|---|
|  | 95 | 0.14, 0.30, 0.97, 0.66, | 
|---|
|  | 96 | 0.51, 0.13, 0.19, 0.85 }; | 
|---|
|  | 97 | double v_array[] = { 1.0, 2.0, 3.0, 4.0 }; | 
|---|
|  | 98 | double x_array[] = { -4.05205022957398, -12.60561139590692, 1.660911626708844, 8.693766928795233 }; | 
|---|
|  | 99 | s->SetA(m_array); | 
|---|
|  | 100 | s->Setb(v_array); | 
|---|
|  | 101 |  | 
|---|
|  | 102 | // solve | 
|---|
|  | 103 | double *array = new double[4]; | 
|---|
|  | 104 | s->GetSolutionAsArray(array); | 
|---|
|  | 105 | for (int i=0;i<4;i++) { | 
|---|
|  | 106 | CPPUNIT_ASSERT( fabs(x_array[i] - array[i]) < MYEPSILON ); | 
|---|
|  | 107 | } | 
|---|
|  | 108 | delete[](array); | 
|---|
|  | 109 | }; | 
|---|