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