Changeset cca9ef for src/unittests
- Timestamp:
- Dec 4, 2010, 11:54:32 PM (14 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_FitFragmentPartialChargesAction, Add_RotateAroundBondAction, Add_SelectAtomByNameAction, Added_ParseSaveFragmentResults, AddingActions_SaveParseParticleParameters, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_ParticleName_to_Atom, Adding_StructOpt_integration_tests, AtomFragments, Automaking_mpqc_open, AutomationFragmentation_failures, Candidate_v1.5.4, Candidate_v1.6.0, Candidate_v1.6.1, ChangeBugEmailaddress, ChangingTestPorts, ChemicalSpaceEvaluator, CombiningParticlePotentialParsing, Combining_Subpackages, Debian_Package_split, Debian_package_split_molecuildergui_only, Disabling_MemDebug, Docu_Python_wait, EmpiricalPotential_contain_HomologyGraph, EmpiricalPotential_contain_HomologyGraph_documentation, Enable_parallel_make_install, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, FitPartialCharges_GlobalError, Fix_BoundInBox_CenterInBox_MoleculeActions, Fix_ChargeSampling_PBC, Fix_ChronosMutex, Fix_FitPartialCharges, Fix_FitPotential_needs_atomicnumbers, Fix_ForceAnnealing, Fix_IndependentFragmentGrids, Fix_ParseParticles, Fix_ParseParticles_split_forward_backward_Actions, Fix_PopActions, Fix_QtFragmentList_sorted_selection, Fix_Restrictedkeyset_FragmentMolecule, Fix_StatusMsg, Fix_StepWorldTime_single_argument, Fix_Verbose_Codepatterns, Fix_fitting_potentials, Fixes, ForceAnnealing_goodresults, ForceAnnealing_oldresults, ForceAnnealing_tocheck, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, FragmentAction_writes_AtomFragments, FragmentMolecule_checks_bonddegrees, GeometryObjects, Gui_Fixes, Gui_displays_atomic_force_velocity, ImplicitCharges, IndependentFragmentGrids, IndependentFragmentGrids_IndividualZeroInstances, IndependentFragmentGrids_IntegrationTest, IndependentFragmentGrids_Sole_NN_Calculation, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, JobMarket_unresolvable_hostname_fix, MoreRobust_FragmentAutomation, ODR_violation_mpqc_open, PartialCharges_OrthogonalSummation, PdbParser_setsAtomName, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, Rewrite_FitPartialCharges, RotateToPrincipalAxisSystem_UndoRedo, SaturateAtoms_findBestMatching, SaturateAtoms_singleDegree, StoppableMakroAction, Subpackage_CodePatterns, Subpackage_JobMarket, Subpackage_LinearAlgebra, Subpackage_levmar, Subpackage_mpqc_open, Subpackage_vmg, Switchable_LogView, ThirdParty_MPQC_rebuilt_buildsystem, TrajectoryDependenant_MaxOrder, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps, TremoloParser_setsAtomName, Ubuntu_1604_changes, stable
- Children:
- 0d4424
- Parents:
- 3bc926
- git-author:
- Frederik Heber <heber@…> (11/15/10 12:58:27)
- git-committer:
- Frederik Heber <heber@…> (12/04/10 23:54:32)
- Location:
- src/unittests
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/BoxUnittest.cpp
r3bc926 rcca9ef 29 29 30 30 #include "LinearAlgebra/Vector.hpp" 31 #include "LinearAlgebra/ Matrix.hpp"31 #include "LinearAlgebra/RealSpaceMatrix.hpp" 32 32 #include "Box.hpp" 33 33 #include "Helpers/Assert.hpp" … … 40 40 void BoxUnittest::setUp(){ 41 41 ASSERT_DO(Assert::Throw); 42 unit = new Matrix;42 unit = new RealSpaceMatrix; 43 43 unit->setIdentity(); 44 zero = new Matrix;45 invertible = new Matrix;44 zero = new RealSpaceMatrix; 45 invertible = new RealSpaceMatrix; 46 46 invertible->diagonal() = Vector(1,2,3); 47 uninvertible = new Matrix;47 uninvertible = new RealSpaceMatrix; 48 48 uninvertible->column(0) = Vector(1,0,1); 49 49 uninvertible->column(2) = Vector(1,0,1); 50 50 51 Matrix boxMat;51 RealSpaceMatrix boxMat; 52 52 unitBox = new Box; 53 53 stretchedBox1 = new Box; -
src/unittests/BoxUnittest.hpp
r3bc926 rcca9ef 11 11 #include <cppunit/extensions/HelperMacros.h> 12 12 13 class Matrix;13 class RealSpaceMatrix; 14 14 class Box; 15 15 … … 38 38 void BoundaryMixedTest(); 39 39 40 Matrix *unit;41 Matrix *zero;42 Matrix *invertible;43 Matrix *uninvertible;40 RealSpaceMatrix *unit; 41 RealSpaceMatrix *zero; 42 RealSpaceMatrix *invertible; 43 RealSpaceMatrix *uninvertible; 44 44 45 45 Box *unitBox; -
src/unittests/MatrixUnittest.cpp
r3bc926 rcca9ef 26 26 #include "MatrixUnittest.hpp" 27 27 #include "LinearAlgebra/Vector.hpp" 28 #include "LinearAlgebra/ Matrix.hpp"28 #include "LinearAlgebra/RealSpaceMatrix.hpp" 29 29 #include "Exceptions/NotInvertibleException.hpp" 30 30 … … 37 37 38 38 void MatrixUnittest::setUp(){ 39 zero = new Matrix();39 zero = new RealSpaceMatrix(); 40 40 for(int i =NDIM;i--;) { 41 41 for(int j =NDIM;j--;) { … … 43 43 } 44 44 } 45 one = new Matrix();45 one = new RealSpaceMatrix(); 46 46 for(int i =NDIM;i--;){ 47 47 one->at(i,i)=1.; 48 48 } 49 full=new Matrix();49 full=new RealSpaceMatrix(); 50 50 for(int i=NDIM;i--;){ 51 51 for(int j=NDIM;j--;){ … … 53 53 } 54 54 } 55 diagonal = new Matrix();55 diagonal = new RealSpaceMatrix(); 56 56 for(int i=NDIM;i--;){ 57 57 diagonal->at(i,i)=i+1.; 58 58 } 59 perm1 = new Matrix();59 perm1 = new RealSpaceMatrix(); 60 60 perm1->column(0) = unitVec[0]; 61 61 perm1->column(1) = unitVec[2]; … … 63 63 64 64 65 perm2 = new Matrix();65 perm2 = new RealSpaceMatrix(); 66 66 perm2->column(0) = unitVec[1]; 67 67 perm2->column(1) = unitVec[0]; 68 68 perm2->column(2) = unitVec[2]; 69 69 70 perm3 = new Matrix();70 perm3 = new RealSpaceMatrix(); 71 71 perm3->column(0) = unitVec[1]; 72 72 perm3->column(1) = unitVec[2]; 73 73 perm3->column(2) = unitVec[0]; 74 74 75 perm4 = new Matrix();75 perm4 = new RealSpaceMatrix(); 76 76 perm4->column(0) = unitVec[2]; 77 77 perm4->column(1) = unitVec[1]; 78 78 perm4->column(2) = unitVec[0]; 79 79 80 perm5 = new Matrix();80 perm5 = new RealSpaceMatrix(); 81 81 perm5->column(0) = unitVec[2]; 82 82 perm5->column(1) = unitVec[0]; … … 97 97 98 98 void MatrixUnittest::AccessTest(){ 99 Matrix mat;99 RealSpaceMatrix mat; 100 100 for(int i=NDIM;i--;){ 101 101 for(int j=NDIM;j--;){ … … 119 119 120 120 void MatrixUnittest::VectorTest(){ 121 Matrix mat;121 RealSpaceMatrix mat; 122 122 for(int i=NDIM;i--;){ 123 123 CPPUNIT_ASSERT_EQUAL(mat.row(i),zeroVec); … … 173 173 174 174 void MatrixUnittest::TransposeTest(){ 175 Matrix res;175 RealSpaceMatrix res; 176 176 177 177 // transpose of unit is unit … … 187 187 188 188 void MatrixUnittest::OperationTest(){ 189 Matrix res;189 RealSpaceMatrix res; 190 190 191 191 res =(*zero) *(*zero); … … 260 260 261 261 void MatrixUnittest::RotationTest(){ 262 Matrix res;263 Matrix inverse;262 RealSpaceMatrix res; 263 RealSpaceMatrix inverse; 264 264 265 265 // zero rotation angles yields unity matrix … … 278 278 // ... or transposed 279 279 res.setRotation(M_PI/3.,0.,0.); 280 CPPUNIT_ASSERT_EQUAL(inverse, ((const Matrix) res).transpose());280 CPPUNIT_ASSERT_EQUAL(inverse, ((const RealSpaceMatrix) res).transpose()); 281 281 } 282 282 … … 285 285 CPPUNIT_ASSERT_THROW(full->invert(),NotInvertibleException); 286 286 287 Matrix res;287 RealSpaceMatrix res; 288 288 res = (*one)*one->invert(); 289 289 CPPUNIT_ASSERT_EQUAL(res,*one); -
src/unittests/MatrixUnittest.hpp
r3bc926 rcca9ef 11 11 #include <cppunit/extensions/HelperMacros.h> 12 12 13 class Matrix;13 class RealSpaceMatrix; 14 14 15 15 class MatrixUnittest : public CppUnit::TestFixture … … 39 39 void VecMultTest(); 40 40 41 Matrix *zero;42 Matrix *one;43 Matrix *full;44 Matrix *diagonal;45 Matrix *perm1;46 Matrix *perm2;47 Matrix *perm3;48 Matrix *perm4;49 Matrix *perm5;41 RealSpaceMatrix *zero; 42 RealSpaceMatrix *one; 43 RealSpaceMatrix *full; 44 RealSpaceMatrix *diagonal; 45 RealSpaceMatrix *perm1; 46 RealSpaceMatrix *perm2; 47 RealSpaceMatrix *perm3; 48 RealSpaceMatrix *perm4; 49 RealSpaceMatrix *perm5; 50 50 }; 51 51 -
src/unittests/vectorunittest.cpp
r3bc926 rcca9ef 31 31 #include "LinearAlgebra/Plane.hpp" 32 32 #include "Exceptions/LinearDependenceException.hpp" 33 #include "LinearAlgebra/ Matrix.hpp"33 #include "LinearAlgebra/RealSpaceMatrix.hpp" 34 34 35 35 #ifdef HAVE_TESTRUNNER
Note:
See TracChangeset
for help on using the changeset viewer.