- Timestamp:
- Dec 16, 2010, 11:47:44 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:
- 4076fcc
- Parents:
- fff54f
- git-author:
- Frederik Heber <heber@…> (12/16/10 14:19:18)
- git-committer:
- Frederik Heber <heber@…> (12/16/10 23:47:44)
- Location:
- src
- Files:
-
- 4 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
src/LinearAlgebra/LinearSystemOfEquations.cpp
rfff54f r78b593 7 7 8 8 /* 9 * linearsystemofequations.cpp9 * LinearSystemOfEquations.cpp 10 10 * 11 11 * Created on: Jan 8, 2010 … … 21 21 22 22 #include "Helpers/defs.hpp" 23 #include "LinearAlgebra/LinearSystemOfEquations.hpp" 23 24 #include "LinearAlgebra/MatrixContent.hpp" 24 25 #include "LinearAlgebra/VectorContent.hpp" 25 #include "LinearAlgebra/linearsystemofequations.hpp"26 26 #include "Helpers/Assert.hpp" 27 27 #include "Helpers/logger.hpp" -
src/LinearAlgebra/LinearSystemOfEquations.hpp
rfff54f r78b593 1 1 /* 2 * linearsystemofequations.hpp2 * LinearSystemOfEquations.hpp 3 3 * 4 4 * Created on: Jan 8, 2010 -
src/LinearAlgebra/Makefile.am
rfff54f r78b593 17 17 LineSegment.cpp \ 18 18 LineSegmentSet.cpp \ 19 linearsystemofequations.cpp \19 LinearSystemOfEquations.cpp \ 20 20 MatrixContent.cpp \ 21 21 MatrixVector_ops.cpp \ … … 36 36 LineSegment.hpp \ 37 37 LineSegmentSet.hpp \ 38 linearsystemofequations.hpp \38 LinearSystemOfEquations.hpp \ 39 39 MatrixContent.hpp \ 40 40 MatrixVector_ops.hpp \ -
src/LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.cpp
rfff54f r78b593 7 7 8 8 /* 9 * linearsystemofequationsunittest.cpp9 * LinearSystemOfEquationsunittest.cpp 10 10 * 11 11 * Created on: Jan 8, 2010 … … 26 26 #include <cmath> 27 27 28 #include "linearsystemofequationsunittest.hpp"29 28 #include "LinearAlgebra/Vector.hpp" 29 30 #include "LinearSystemOfEquationsUnitTest.hpp" 30 31 31 32 #ifdef HAVE_TESTRUNNER -
src/LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.hpp
rfff54f r78b593 1 1 /* 2 * linearsystemofequationsunittest.hpp2 * LinearSystemOfEquationsunittest.hpp 3 3 * 4 4 * Created on: Jan 8, 2010 … … 11 11 #include <cppunit/extensions/HelperMacros.h> 12 12 13 #include "LinearAlgebra/ linearsystemofequations.hpp"13 #include "LinearAlgebra/LinearSystemOfEquations.hpp" 14 14 15 15 /********************************************** Test classes **************************************/ -
src/LinearAlgebra/unittests/Makefile.am
rfff54f r78b593 9 9 10 10 TESTS = \ 11 LinearSystemOfEquationsUnitTest \ 11 12 MatrixContentSymmetricUnitTest \ 12 13 MatrixContentUnitTest \ … … 23 24 ../../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \ 24 25 $(BOOST_LIB) 26 27 LinearSystemOfEquationsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 28 LinearSystemOfEquationsUnitTest.cpp \ 29 LinearSystemOfEquationsUnitTest.hpp 30 LinearSystemOfEquationsUnitTest_LDADD = ${GSLLIBS} 25 31 26 32 MatrixContentSymmetricUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ -
src/tesselationhelpers.cpp
rfff54f r78b593 29 29 #include "Helpers/Info.hpp" 30 30 #include "linkedcell.hpp" 31 #include "LinearAlgebra/ linearsystemofequations.hpp"31 #include "LinearAlgebra/LinearSystemOfEquations.hpp" 32 32 #include "Helpers/Log.hpp" 33 33 #include "tesselation.hpp" -
src/unittests/Makefile.am
rfff54f r78b593 24 24 CountBondsUnitTest \ 25 25 FormulaUnittest \ 26 LinearSystemOfEquationsUnitTest \27 26 LineUnittest \ 28 27 LinkedCellUnitTest \ … … 81 80 FormulaUnittest.cpp \ 82 81 ../Helpers/unittests/InfoUnitTest.cpp \ 83 linearsystemofequationsunittest.cpp \82 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.cpp \ 84 83 LineUnittest.cpp \ 85 84 LinkedCellUnitTest.cpp \ … … 120 119 CountBondsUnitTest.hpp \ 121 120 FormulaUnittest.hpp \ 122 ../Helpers/unittests/InfoUnitTest.h 00pp \123 linearsystemofequationsunittest.hpp \121 ../Helpers/unittests/InfoUnitTest.hpp \ 122 ../LinearAlgebra/unittests/LinearSystemOfEquationsUnitTest.hpp \ 124 123 LineUnittest.hpp \ 125 124 LinkedCellUnitTest.hpp \ … … 172 171 FormulaUnittest_LDADD = ${ALLLIBS} 173 172 174 LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp175 LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}176 177 173 LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp 178 174 LineUnittest_LDADD = ${ALLLIBS}
Note:
See TracChangeset
for help on using the changeset viewer.