| 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 |  * MatrixUnitTest.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: Jul 7, 2010
 | 
|---|
| 12 |  *      Author: crueger
 | 
|---|
| 13 |  */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // include config.h
 | 
|---|
| 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 17 | #include <config.h>
 | 
|---|
| 18 | #endif
 | 
|---|
| 19 | 
 | 
|---|
| 20 | #include <cppunit/CompilerOutputter.h>
 | 
|---|
| 21 | #include <cppunit/extensions/TestFactoryRegistry.h>
 | 
|---|
| 22 | #include <cppunit/ui/text/TestRunner.h>
 | 
|---|
| 23 | 
 | 
|---|
| 24 | #include <cmath>
 | 
|---|
| 25 | 
 | 
|---|
| 26 | #include "MatrixUnitTest.hpp"
 | 
|---|
| 27 | #include "LinearAlgebra/Vector.hpp"
 | 
|---|
| 28 | #include "LinearAlgebra/RealSpaceMatrix.hpp"
 | 
|---|
| 29 | #include "Exceptions/NotInvertibleException.hpp"
 | 
|---|
| 30 | 
 | 
|---|
| 31 | #ifdef HAVE_TESTRUNNER
 | 
|---|
| 32 | #include "UnitTestMain.hpp"
 | 
|---|
| 33 | #endif /*HAVE_TESTRUNNER*/
 | 
|---|
| 34 | 
 | 
|---|
| 35 | // Registers the fixture into the 'registry'
 | 
|---|
| 36 | CPPUNIT_TEST_SUITE_REGISTRATION( MatrixUnittest );
 | 
|---|
| 37 | 
 | 
|---|
| 38 | void MatrixUnittest::setUp(){
 | 
|---|
| 39 |   zero = new RealSpaceMatrix();
 | 
|---|
| 40 |   for(int i =NDIM;i--;) {
 | 
|---|
| 41 |     for(int j =NDIM;j--;) {
 | 
|---|
| 42 |       zero->at(i,j)=0.;
 | 
|---|
| 43 |     }
 | 
|---|
| 44 |   }
 | 
|---|
| 45 |   one = new RealSpaceMatrix();
 | 
|---|
| 46 |   for(int i =NDIM;i--;){
 | 
|---|
| 47 |     one->at(i,i)=1.;
 | 
|---|
| 48 |   }
 | 
|---|
| 49 |   full=new RealSpaceMatrix();
 | 
|---|
| 50 |   for(int i=NDIM;i--;){
 | 
|---|
| 51 |     for(int j=NDIM;j--;){
 | 
|---|
| 52 |       full->at(i,j)=1.;
 | 
|---|
| 53 |     }
 | 
|---|
| 54 |   }
 | 
|---|
| 55 |   diagonal = new RealSpaceMatrix();
 | 
|---|
| 56 |   for(int i=NDIM;i--;){
 | 
|---|
| 57 |     diagonal->at(i,i)=i+1.;
 | 
|---|
| 58 |   }
 | 
|---|
| 59 |   perm1 = new RealSpaceMatrix();
 | 
|---|
| 60 |   perm1->column(0) = unitVec[0];
 | 
|---|
| 61 |   perm1->column(1) = unitVec[2];
 | 
|---|
| 62 |   perm1->column(2) = unitVec[1];
 | 
|---|
| 63 | 
 | 
|---|
| 64 | 
 | 
|---|
| 65 |   perm2 = new RealSpaceMatrix();
 | 
|---|
| 66 |   perm2->column(0) = unitVec[1];
 | 
|---|
| 67 |   perm2->column(1) = unitVec[0];
 | 
|---|
| 68 |   perm2->column(2) = unitVec[2];
 | 
|---|
| 69 | 
 | 
|---|
| 70 |   perm3 = new RealSpaceMatrix();
 | 
|---|
| 71 |   perm3->column(0) = unitVec[1];
 | 
|---|
| 72 |   perm3->column(1) = unitVec[2];
 | 
|---|
| 73 |   perm3->column(2) = unitVec[0];
 | 
|---|
| 74 | 
 | 
|---|
| 75 |   perm4 = new RealSpaceMatrix();
 | 
|---|
| 76 |   perm4->column(0) = unitVec[2];
 | 
|---|
| 77 |   perm4->column(1) = unitVec[1];
 | 
|---|
| 78 |   perm4->column(2) = unitVec[0];
 | 
|---|
| 79 | 
 | 
|---|
| 80 |   perm5 = new RealSpaceMatrix();
 | 
|---|
| 81 |   perm5->column(0) = unitVec[2];
 | 
|---|
| 82 |   perm5->column(1) = unitVec[0];
 | 
|---|
| 83 |   perm5->column(2) = unitVec[1];
 | 
|---|
| 84 | 
 | 
|---|
| 85 | }
 | 
|---|
| 86 | void MatrixUnittest::tearDown(){
 | 
|---|
| 87 |   delete zero;
 | 
|---|
| 88 |   delete one;
 | 
|---|
| 89 |   delete full;
 | 
|---|
| 90 |   delete diagonal;
 | 
|---|
| 91 |   delete perm1;
 | 
|---|
| 92 |   delete perm2;
 | 
|---|
| 93 |   delete perm3;
 | 
|---|
| 94 |   delete perm4;
 | 
|---|
| 95 |   delete perm5;
 | 
|---|
| 96 | }
 | 
|---|
| 97 | 
 | 
|---|
| 98 | void MatrixUnittest::AccessTest(){
 | 
|---|
| 99 |   RealSpaceMatrix mat;
 | 
|---|
| 100 |   for(int i=NDIM;i--;){
 | 
|---|
| 101 |     for(int j=NDIM;j--;){
 | 
|---|
| 102 |       CPPUNIT_ASSERT_EQUAL(mat.at(i,j),0.);
 | 
|---|
| 103 |     }
 | 
|---|
| 104 |   }
 | 
|---|
| 105 |   int k=1;
 | 
|---|
| 106 |   for(int i=NDIM;i--;){
 | 
|---|
| 107 |     for(int j=NDIM;j--;){
 | 
|---|
| 108 |       mat.at(i,j)=k++;
 | 
|---|
| 109 |     }
 | 
|---|
| 110 |   }
 | 
|---|
| 111 |   k=1;
 | 
|---|
| 112 |   for(int i=NDIM;i--;){
 | 
|---|
| 113 |     for(int j=NDIM;j--;){
 | 
|---|
| 114 |       CPPUNIT_ASSERT_EQUAL(mat.at(i,j),(double)k);
 | 
|---|
| 115 |       ++k;
 | 
|---|
| 116 |     }
 | 
|---|
| 117 |   }
 | 
|---|
| 118 | }
 | 
|---|
| 119 | 
 | 
|---|
| 120 | void MatrixUnittest::VectorTest(){
 | 
|---|
| 121 |   RealSpaceMatrix mat;
 | 
|---|
| 122 |   for(int i=NDIM;i--;){
 | 
|---|
| 123 |     CPPUNIT_ASSERT_EQUAL(mat.row(i),zeroVec);
 | 
|---|
| 124 |     CPPUNIT_ASSERT_EQUAL(mat.column(i),zeroVec);
 | 
|---|
| 125 |   }
 | 
|---|
| 126 |   CPPUNIT_ASSERT_EQUAL(mat.diagonal(),zeroVec);
 | 
|---|
| 127 | 
 | 
|---|
| 128 |   mat.setIdentity();
 | 
|---|
| 129 |   CPPUNIT_ASSERT_EQUAL(mat.row(0),unitVec[0]);
 | 
|---|
| 130 |   CPPUNIT_ASSERT_EQUAL(mat.row(1),unitVec[1]);
 | 
|---|
| 131 |   CPPUNIT_ASSERT_EQUAL(mat.row(2),unitVec[2]);
 | 
|---|
| 132 |   CPPUNIT_ASSERT_EQUAL(mat.column(0),unitVec[0]);
 | 
|---|
| 133 |   CPPUNIT_ASSERT_EQUAL(mat.column(1),unitVec[1]);
 | 
|---|
| 134 |   CPPUNIT_ASSERT_EQUAL(mat.column(2),unitVec[2]);
 | 
|---|
| 135 | 
 | 
|---|
| 136 |   Vector t1=Vector(1.,1.,1.);
 | 
|---|
| 137 |   Vector t2=Vector(2.,2.,2.);
 | 
|---|
| 138 |   Vector t3=Vector(3.,3.,3.);
 | 
|---|
| 139 |   Vector t4=Vector(1.,2.,3.);
 | 
|---|
| 140 | 
 | 
|---|
| 141 |   mat.row(0)=t1;
 | 
|---|
| 142 |   mat.row(1)=t2;
 | 
|---|
| 143 |   mat.row(2)=t3;
 | 
|---|
| 144 |   CPPUNIT_ASSERT_EQUAL(mat.row(0),t1);
 | 
|---|
| 145 |   CPPUNIT_ASSERT_EQUAL(mat.row(1),t2);
 | 
|---|
| 146 |   CPPUNIT_ASSERT_EQUAL(mat.row(2),t3);
 | 
|---|
| 147 |   CPPUNIT_ASSERT_EQUAL(mat.column(0),t4);
 | 
|---|
| 148 |   CPPUNIT_ASSERT_EQUAL(mat.column(1),t4);
 | 
|---|
| 149 |   CPPUNIT_ASSERT_EQUAL(mat.column(2),t4);
 | 
|---|
| 150 |   CPPUNIT_ASSERT_EQUAL(mat.diagonal(),t4);
 | 
|---|
| 151 |   for(int i=NDIM;i--;){
 | 
|---|
| 152 |     for(int j=NDIM;j--;){
 | 
|---|
| 153 |       CPPUNIT_ASSERT_EQUAL(mat.at(i,j),i+1.);
 | 
|---|
| 154 |     }
 | 
|---|
| 155 |   }
 | 
|---|
| 156 | 
 | 
|---|
| 157 |   mat.column(0)=t1;
 | 
|---|
| 158 |   mat.column(1)=t2;
 | 
|---|
| 159 |   mat.column(2)=t3;
 | 
|---|
| 160 |   CPPUNIT_ASSERT_EQUAL(mat.column(0),t1);
 | 
|---|
| 161 |   CPPUNIT_ASSERT_EQUAL(mat.column(1),t2);
 | 
|---|
| 162 |   CPPUNIT_ASSERT_EQUAL(mat.column(2),t3);
 | 
|---|
| 163 |   CPPUNIT_ASSERT_EQUAL(mat.row(0),t4);
 | 
|---|
| 164 |   CPPUNIT_ASSERT_EQUAL(mat.row(1),t4);
 | 
|---|
| 165 |   CPPUNIT_ASSERT_EQUAL(mat.row(2),t4);
 | 
|---|
| 166 |   CPPUNIT_ASSERT_EQUAL(mat.diagonal(),t4);
 | 
|---|
| 167 |   for(int i=NDIM;i--;){
 | 
|---|
| 168 |     for(int j=NDIM;j--;){
 | 
|---|
| 169 |       CPPUNIT_ASSERT_EQUAL(mat.at(i,j),j+1.);
 | 
|---|
| 170 |     }
 | 
|---|
| 171 |   }
 | 
|---|
| 172 | }
 | 
|---|
| 173 | 
 | 
|---|
| 174 | void MatrixUnittest::TransposeTest(){
 | 
|---|
| 175 |   RealSpaceMatrix res;
 | 
|---|
| 176 | 
 | 
|---|
| 177 |   // transpose of unit is unit
 | 
|---|
| 178 |   res.setIdentity();
 | 
|---|
| 179 |   res.transpose();
 | 
|---|
| 180 |   CPPUNIT_ASSERT_EQUAL(res,*one);
 | 
|---|
| 181 | 
 | 
|---|
| 182 |   // transpose of transpose is same matrix
 | 
|---|
| 183 |   res.setZero();
 | 
|---|
| 184 |   res.set(2,2, 1.);
 | 
|---|
| 185 |   CPPUNIT_ASSERT_EQUAL(res.transpose().transpose(),res);
 | 
|---|
| 186 | }
 | 
|---|
| 187 | 
 | 
|---|
| 188 | void MatrixUnittest::OperationTest(){
 | 
|---|
| 189 |   RealSpaceMatrix res;
 | 
|---|
| 190 | 
 | 
|---|
| 191 |   res =(*zero) *(*zero);
 | 
|---|
| 192 |   std::cout << *zero << " times " << *zero << " is " << res << std::endl;
 | 
|---|
| 193 |   CPPUNIT_ASSERT_EQUAL(res,*zero);
 | 
|---|
| 194 |   res =(*zero) *(*one);
 | 
|---|
| 195 |   CPPUNIT_ASSERT_EQUAL(res,*zero);
 | 
|---|
| 196 |   res =(*zero) *(*full);
 | 
|---|
| 197 |   CPPUNIT_ASSERT_EQUAL(res,*zero);
 | 
|---|
| 198 |   res =(*zero) *(*diagonal);
 | 
|---|
| 199 |   CPPUNIT_ASSERT_EQUAL(res,*zero);
 | 
|---|
| 200 |   res =(*zero) *(*perm1);
 | 
|---|
| 201 |   CPPUNIT_ASSERT_EQUAL(res,*zero);
 | 
|---|
| 202 |   res =(*zero) *(*perm2);
 | 
|---|
| 203 |   CPPUNIT_ASSERT_EQUAL(res,*zero);
 | 
|---|
| 204 |   res =(*zero) *(*perm3);
 | 
|---|
| 205 |   CPPUNIT_ASSERT_EQUAL(res,*zero);
 | 
|---|
| 206 |   res =(*zero) *(*perm4);
 | 
|---|
| 207 |   CPPUNIT_ASSERT_EQUAL(res,*zero);
 | 
|---|
| 208 |   res =(*zero) *(*perm5);
 | 
|---|
| 209 |   CPPUNIT_ASSERT_EQUAL(res,*zero);
 | 
|---|
| 210 | 
 | 
|---|
| 211 |   res =(*one)*(*one);
 | 
|---|
| 212 |   CPPUNIT_ASSERT_EQUAL(res,*one);
 | 
|---|
| 213 |   res =(*one)*(*full);
 | 
|---|
| 214 |   CPPUNIT_ASSERT_EQUAL(res,*full);
 | 
|---|
| 215 |   res =(*one)*(*diagonal);
 | 
|---|
| 216 |   CPPUNIT_ASSERT_EQUAL(res,*diagonal);
 | 
|---|
| 217 |   res =(*one)*(*perm1);
 | 
|---|
| 218 |   CPPUNIT_ASSERT_EQUAL(res,*perm1);
 | 
|---|
| 219 |   res =(*one)*(*perm2);
 | 
|---|
| 220 |   CPPUNIT_ASSERT_EQUAL(res,*perm2);
 | 
|---|
| 221 |   res =(*one)*(*perm3);
 | 
|---|
| 222 |   CPPUNIT_ASSERT_EQUAL(res,*perm3);
 | 
|---|
| 223 |   res =(*one)*(*perm4);
 | 
|---|
| 224 |   CPPUNIT_ASSERT_EQUAL(res,*perm4);
 | 
|---|
| 225 |   res =(*one)*(*perm5);
 | 
|---|
| 226 |   CPPUNIT_ASSERT_EQUAL(res,*perm5);
 | 
|---|
| 227 | 
 | 
|---|
| 228 |   res = (*full)*(*perm1);
 | 
|---|
| 229 |   CPPUNIT_ASSERT_EQUAL(res,*full);
 | 
|---|
| 230 |   res = (*full)*(*perm2);
 | 
|---|
| 231 |   CPPUNIT_ASSERT_EQUAL(res,*full);
 | 
|---|
| 232 |   res = (*full)*(*perm3);
 | 
|---|
| 233 |   CPPUNIT_ASSERT_EQUAL(res,*full);
 | 
|---|
| 234 |   res = (*full)*(*perm4);
 | 
|---|
| 235 |   CPPUNIT_ASSERT_EQUAL(res,*full);
 | 
|---|
| 236 |   res = (*full)*(*perm5);
 | 
|---|
| 237 |   CPPUNIT_ASSERT_EQUAL(res,*full);
 | 
|---|
| 238 | 
 | 
|---|
| 239 |   res = (*diagonal)*(*perm1);
 | 
|---|
| 240 |   CPPUNIT_ASSERT_EQUAL(res.column(0),unitVec[0]);
 | 
|---|
| 241 |   CPPUNIT_ASSERT_EQUAL(res.column(1),3*unitVec[2]);
 | 
|---|
| 242 |   CPPUNIT_ASSERT_EQUAL(res.column(2),2*unitVec[1]);
 | 
|---|
| 243 |   res = (*diagonal)*(*perm2);
 | 
|---|
| 244 |   CPPUNIT_ASSERT_EQUAL(res.column(0),2*unitVec[1]);
 | 
|---|
| 245 |   CPPUNIT_ASSERT_EQUAL(res.column(1),unitVec[0]);
 | 
|---|
| 246 |   CPPUNIT_ASSERT_EQUAL(res.column(2),3*unitVec[2]);
 | 
|---|
| 247 |   res = (*diagonal)*(*perm3);
 | 
|---|
| 248 |   CPPUNIT_ASSERT_EQUAL(res.column(0),2*unitVec[1]);
 | 
|---|
| 249 |   CPPUNIT_ASSERT_EQUAL(res.column(1),3*unitVec[2]);
 | 
|---|
| 250 |   CPPUNIT_ASSERT_EQUAL(res.column(2),unitVec[0]);
 | 
|---|
| 251 |   res = (*diagonal)*(*perm4);
 | 
|---|
| 252 |   CPPUNIT_ASSERT_EQUAL(res.column(0),3*unitVec[2]);
 | 
|---|
| 253 |   CPPUNIT_ASSERT_EQUAL(res.column(1),2*unitVec[1]);
 | 
|---|
| 254 |   CPPUNIT_ASSERT_EQUAL(res.column(2),unitVec[0]);
 | 
|---|
| 255 |   res = (*diagonal)*(*perm5);
 | 
|---|
| 256 |   CPPUNIT_ASSERT_EQUAL(res.column(0),3*unitVec[2]);
 | 
|---|
| 257 |   CPPUNIT_ASSERT_EQUAL(res.column(1),unitVec[0]);
 | 
|---|
| 258 |   CPPUNIT_ASSERT_EQUAL(res.column(2),2*unitVec[1]);
 | 
|---|
| 259 | }
 | 
|---|
| 260 | 
 | 
|---|
| 261 | void MatrixUnittest::RotationTest(){
 | 
|---|
| 262 |   RealSpaceMatrix res;
 | 
|---|
| 263 |   RealSpaceMatrix inverse;
 | 
|---|
| 264 | 
 | 
|---|
| 265 |   // zero rotation angles yields unity matrix
 | 
|---|
| 266 |   res.setRotation(0,0,0);
 | 
|---|
| 267 |   CPPUNIT_ASSERT_EQUAL(*one, res);
 | 
|---|
| 268 | 
 | 
|---|
| 269 |   // arbitrary rotation matrix has det = 1
 | 
|---|
| 270 |   res.setRotation(M_PI/3.,1.,M_PI/7.);
 | 
|---|
| 271 |   CPPUNIT_ASSERT(fabs(fabs(res.determinant()) -1.) < MYEPSILON);
 | 
|---|
| 272 | 
 | 
|---|
| 273 |   // inverse is rotation matrix with negative angles
 | 
|---|
| 274 |   res.setRotation(M_PI/3.,0.,0.);
 | 
|---|
| 275 |   inverse.setRotation(-M_PI/3.,0.,0.);
 | 
|---|
| 276 |   CPPUNIT_ASSERT_EQUAL(*one, res * inverse);
 | 
|---|
| 277 | 
 | 
|---|
| 278 |   // ... or transposed
 | 
|---|
| 279 |   res.setRotation(M_PI/3.,0.,0.);
 | 
|---|
| 280 |   CPPUNIT_ASSERT_EQUAL(inverse, ((const RealSpaceMatrix) res).transpose());
 | 
|---|
| 281 | }
 | 
|---|
| 282 | 
 | 
|---|
| 283 | void MatrixUnittest::InvertTest(){
 | 
|---|
| 284 |   CPPUNIT_ASSERT_THROW(zero->invert(),NotInvertibleException);
 | 
|---|
| 285 |   CPPUNIT_ASSERT_THROW(full->invert(),NotInvertibleException);
 | 
|---|
| 286 | 
 | 
|---|
| 287 |   RealSpaceMatrix res;
 | 
|---|
| 288 |   res = (*one)*one->invert();
 | 
|---|
| 289 |   CPPUNIT_ASSERT_EQUAL(res,*one);
 | 
|---|
| 290 |   res = (*diagonal)*diagonal->invert();
 | 
|---|
| 291 |   CPPUNIT_ASSERT_EQUAL(res,*one);
 | 
|---|
| 292 |   res = (*perm1)*perm1->invert();
 | 
|---|
| 293 |   CPPUNIT_ASSERT_EQUAL(res,*one);
 | 
|---|
| 294 |   res = (*perm2)*perm2->invert();
 | 
|---|
| 295 |   CPPUNIT_ASSERT_EQUAL(res,*one);
 | 
|---|
| 296 |   res = (*perm3)*perm3->invert();
 | 
|---|
| 297 |   CPPUNIT_ASSERT_EQUAL(res,*one);
 | 
|---|
| 298 |   res = (*perm4)*perm4->invert();
 | 
|---|
| 299 |   CPPUNIT_ASSERT_EQUAL(res,*one);
 | 
|---|
| 300 |   res = (*perm5)*perm5->invert();
 | 
|---|
| 301 |   CPPUNIT_ASSERT_EQUAL(res,*one);
 | 
|---|
| 302 | }
 | 
|---|
| 303 | 
 | 
|---|
| 304 | 
 | 
|---|
| 305 | void MatrixUnittest::DeterminantTest(){
 | 
|---|
| 306 |   CPPUNIT_ASSERT_EQUAL(zero->determinant(),0.);
 | 
|---|
| 307 |   CPPUNIT_ASSERT_EQUAL(one->determinant(),1.);
 | 
|---|
| 308 |   CPPUNIT_ASSERT_EQUAL(diagonal->determinant(),6.);
 | 
|---|
| 309 |   CPPUNIT_ASSERT_EQUAL(full->determinant(),0.);
 | 
|---|
| 310 |   CPPUNIT_ASSERT_EQUAL(perm1->determinant(),-1.);
 | 
|---|
| 311 |   CPPUNIT_ASSERT_EQUAL(perm2->determinant(),-1.);
 | 
|---|
| 312 |   CPPUNIT_ASSERT_EQUAL(perm3->determinant(),1.);
 | 
|---|
| 313 |   CPPUNIT_ASSERT_EQUAL(perm4->determinant(),-1.);
 | 
|---|
| 314 |   CPPUNIT_ASSERT_EQUAL(perm5->determinant(),1.);
 | 
|---|
| 315 | }
 | 
|---|
| 316 | 
 | 
|---|
| 317 | void MatrixUnittest::VecMultTest(){
 | 
|---|
| 318 |   CPPUNIT_ASSERT_EQUAL((*zero)*unitVec[0],zeroVec);
 | 
|---|
| 319 |   CPPUNIT_ASSERT_EQUAL((*zero)*unitVec[1],zeroVec);
 | 
|---|
| 320 |   CPPUNIT_ASSERT_EQUAL((*zero)*unitVec[2],zeroVec);
 | 
|---|
| 321 |   CPPUNIT_ASSERT_EQUAL((*zero)*zeroVec,zeroVec);
 | 
|---|
| 322 | 
 | 
|---|
| 323 |   CPPUNIT_ASSERT_EQUAL((*one)*unitVec[0],unitVec[0]);
 | 
|---|
| 324 |   CPPUNIT_ASSERT_EQUAL((*one)*unitVec[1],unitVec[1]);
 | 
|---|
| 325 |   CPPUNIT_ASSERT_EQUAL((*one)*unitVec[2],unitVec[2]);
 | 
|---|
| 326 |   CPPUNIT_ASSERT_EQUAL((*one)*zeroVec,zeroVec);
 | 
|---|
| 327 | 
 | 
|---|
| 328 |   CPPUNIT_ASSERT_EQUAL((*diagonal)*unitVec[0],unitVec[0]);
 | 
|---|
| 329 |   CPPUNIT_ASSERT_EQUAL((*diagonal)*unitVec[1],2*unitVec[1]);
 | 
|---|
| 330 |   CPPUNIT_ASSERT_EQUAL((*diagonal)*unitVec[2],3*unitVec[2]);
 | 
|---|
| 331 |   CPPUNIT_ASSERT_EQUAL((*diagonal)*zeroVec,zeroVec);
 | 
|---|
| 332 | 
 | 
|---|
| 333 |   CPPUNIT_ASSERT_EQUAL((*perm1)*unitVec[0],unitVec[0]);
 | 
|---|
| 334 |   CPPUNIT_ASSERT_EQUAL((*perm1)*unitVec[1],unitVec[2]);
 | 
|---|
| 335 |   CPPUNIT_ASSERT_EQUAL((*perm1)*unitVec[2],unitVec[1]);
 | 
|---|
| 336 |   CPPUNIT_ASSERT_EQUAL((*perm1)*zeroVec,zeroVec);
 | 
|---|
| 337 | 
 | 
|---|
| 338 |   CPPUNIT_ASSERT_EQUAL((*perm2)*unitVec[0],unitVec[1]);
 | 
|---|
| 339 |   CPPUNIT_ASSERT_EQUAL((*perm2)*unitVec[1],unitVec[0]);
 | 
|---|
| 340 |   CPPUNIT_ASSERT_EQUAL((*perm2)*unitVec[2],unitVec[2]);
 | 
|---|
| 341 |   CPPUNIT_ASSERT_EQUAL((*perm2)*zeroVec,zeroVec);
 | 
|---|
| 342 | 
 | 
|---|
| 343 |   CPPUNIT_ASSERT_EQUAL((*perm3)*unitVec[0],unitVec[1]);
 | 
|---|
| 344 |   CPPUNIT_ASSERT_EQUAL((*perm3)*unitVec[1],unitVec[2]);
 | 
|---|
| 345 |   CPPUNIT_ASSERT_EQUAL((*perm3)*unitVec[2],unitVec[0]);
 | 
|---|
| 346 |   CPPUNIT_ASSERT_EQUAL((*perm3)*zeroVec,zeroVec);
 | 
|---|
| 347 | 
 | 
|---|
| 348 |   CPPUNIT_ASSERT_EQUAL((*perm4)*unitVec[0],unitVec[2]);
 | 
|---|
| 349 |   CPPUNIT_ASSERT_EQUAL((*perm4)*unitVec[1],unitVec[1]);
 | 
|---|
| 350 |   CPPUNIT_ASSERT_EQUAL((*perm4)*unitVec[2],unitVec[0]);
 | 
|---|
| 351 |   CPPUNIT_ASSERT_EQUAL((*perm4)*zeroVec,zeroVec);
 | 
|---|
| 352 | 
 | 
|---|
| 353 |   CPPUNIT_ASSERT_EQUAL((*perm5)*unitVec[0],unitVec[2]);
 | 
|---|
| 354 |   CPPUNIT_ASSERT_EQUAL((*perm5)*unitVec[1],unitVec[0]);
 | 
|---|
| 355 |   CPPUNIT_ASSERT_EQUAL((*perm5)*unitVec[2],unitVec[1]);
 | 
|---|
| 356 |   CPPUNIT_ASSERT_EQUAL((*perm5)*zeroVec,zeroVec);
 | 
|---|
| 357 | 
 | 
|---|
| 358 |   Vector t = Vector(1.,2.,3.);
 | 
|---|
| 359 |   CPPUNIT_ASSERT_EQUAL((*perm1)*t,Vector(1,3,2));
 | 
|---|
| 360 |   CPPUNIT_ASSERT_EQUAL((*perm2)*t,Vector(2,1,3));
 | 
|---|
| 361 |   CPPUNIT_ASSERT_EQUAL((*perm3)*t,Vector(3,1,2));
 | 
|---|
| 362 |   CPPUNIT_ASSERT_EQUAL((*perm4)*t,Vector(3,2,1));
 | 
|---|
| 363 |   CPPUNIT_ASSERT_EQUAL((*perm5)*t,Vector(2,3,1));
 | 
|---|
| 364 | }
 | 
|---|