Changeset bf4b9f for LinearAlgebra/src
- Timestamp:
- Apr 8, 2011, 3:48:50 PM (15 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, Candidate_v1.7.0, 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:
- ca2cfa
- Parents:
- 3e2225f
- git-author:
- Frederik Heber <heber@…> (04/02/11 00:53:43)
- git-committer:
- Frederik Heber <heber@…> (04/08/11 15:48:50)
- Location:
- LinearAlgebra/src
- Files:
-
- 2 added
- 52 moved
Legend:
- Unmodified
- Added
- Removed
-
LinearAlgebra/src/LinearAlgebra/BoxVector.cpp
r3e2225f rbf4b9f 15 15 #include <iostream> 16 16 17 #include " LinearAlgebra/BoxVector.hpp"18 #include " LinearAlgebra/defs.hpp"19 #include " LinearAlgebra/Vector.hpp"17 #include "BoxVector.hpp" 18 #include "defs.hpp" 19 #include "Vector.hpp" 20 20 21 21 BoxVector::BoxVector() -
LinearAlgebra/src/LinearAlgebra/BoxVector.hpp
r3e2225f rbf4b9f 17 17 #include <iosfwd> 18 18 19 #include " LinearAlgebra/Vector.hpp"19 #include "Vector.hpp" 20 20 21 21 /** A BoxVector is simply a Vector that adheres to the boundary conditions of -
LinearAlgebra/src/LinearAlgebra/Line.cpp
r3e2225f rbf4b9f 20 20 #include "CodePatterns/MemDebug.hpp" 21 21 22 #include "Line arAlgebra/Line.hpp"22 #include "Line.hpp" 23 23 24 24 #include <cmath> … … 29 29 #include "CodePatterns/Log.hpp" 30 30 #include "CodePatterns/Verbose.hpp" 31 #include " LinearAlgebra/defs.hpp"32 #include " LinearAlgebra/Exceptions.hpp"33 #include " LinearAlgebra/MatrixContent.hpp"34 #include " LinearAlgebra/Plane.hpp"35 #include " LinearAlgebra/Vector.hpp"31 #include "defs.hpp" 32 #include "Exceptions.hpp" 33 #include "MatrixContent.hpp" 34 #include "Plane.hpp" 35 #include "Vector.hpp" 36 36 37 37 using namespace std; -
LinearAlgebra/src/LinearAlgebra/Line.hpp
r3e2225f rbf4b9f 15 15 16 16 17 #include " LinearAlgebra/Space.hpp"17 #include "Space.hpp" 18 18 19 19 #include <iosfwd> -
LinearAlgebra/src/LinearAlgebra/LineSegment.cpp
r3e2225f rbf4b9f 13 13 #include "CodePatterns/MemDebug.hpp" 14 14 15 #include "Line arAlgebra/LineSegment.hpp"15 #include "LineSegment.hpp" 16 16 #include "CodePatterns/Assert.hpp" 17 17 18 18 #include "Line.hpp" 19 #include " LinearAlgebra/Vector.hpp"19 #include "Vector.hpp" 20 20 21 21 using namespace std; -
LinearAlgebra/src/LinearAlgebra/LineSegmentSet.cpp
r3e2225f rbf4b9f 13 13 #include "CodePatterns/MemDebug.hpp" 14 14 15 #include "Line arAlgebra/LineSegmentSet.hpp"15 #include "LineSegmentSet.hpp" 16 16 17 17 #include "CodePatterns/Assert.hpp" 18 #include "Line arAlgebra/Line.hpp"19 #include "Line arAlgebra/LineSegment.hpp"18 #include "Line.hpp" 19 #include "LineSegment.hpp" 20 20 21 21 #include "CodePatterns/Range.hpp" -
LinearAlgebra/src/LinearAlgebra/LinearSystemOfEquations.cpp
r3e2225f rbf4b9f 22 22 #include "CodePatterns/Assert.hpp" 23 23 #include "CodePatterns/logger.hpp" 24 #include " LinearAlgebra/defs.hpp"25 #include "Linear Algebra/LinearSystemOfEquations.hpp"26 #include " LinearAlgebra/MatrixContent.hpp"27 #include " LinearAlgebra/VectorContent.hpp"28 #include " LinearAlgebra/Vector.hpp"24 #include "defs.hpp" 25 #include "LinearSystemOfEquations.hpp" 26 #include "MatrixContent.hpp" 27 #include "VectorContent.hpp" 28 #include "Vector.hpp" 29 29 30 30 #include <gsl/gsl_permutation.h> -
LinearAlgebra/src/LinearAlgebra/Makefile.am
r3e2225f rbf4b9f 44 44 45 45 46 lib_LTLIBRARIES = lib MolecuilderLinearAlgebra.la47 lib MolecuilderLinearAlgebra_la_includedir = $(includedir)/MoleCuilder/LinearAlgebra/48 lib MolecuilderLinearAlgebra_la_LIBADD = \46 lib_LTLIBRARIES = libLinearAlgebra.la 47 libLinearAlgebra_la_includedir = $(includedir)/MoleCuilder/LinearAlgebra/ 48 libLinearAlgebra_la_LIBADD = \ 49 49 $(GSL_LIBS) 50 nobase_lib MolecuilderLinearAlgebra_la_include_HEADERS = ${LINALGHEADER}50 nobase_libLinearAlgebra_la_include_HEADERS = ${LINALGHEADER} 51 51 52 52 ## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la" … … 58 58 ## from each source file. Note that it is not necessary to list header files 59 59 ## which are already listed elsewhere in a _HEADERS variable assignment. 60 lib MolecuilderLinearAlgebra_la_SOURCES = ${LINALGSOURCE}60 libLinearAlgebra_la_SOURCES = ${LINALGSOURCE} 61 61 62 62 ## Instruct libtool to include ABI version information in the generated shared 63 63 ## library file (.so). The library ABI version is defined in configure.ac, so 64 64 ## that all version information is kept in one place. 65 lib MolecuilderLinearAlgebra_la_LDFLAGS = -version-info $(LINEARALGEBRA_SO_VERSION)65 libLinearAlgebra_la_LDFLAGS = -version-info $(LINEARALGEBRA_SO_VERSION) 66 66 67 67 ## The generated configuration header is installed in its own subdirectory of … … 76 76 ## configuration header file is generated at configure time and should not be 77 77 ## shipped with the source tarball. 78 #libMolecuilderLinearAlgebra_libincludedir = $(libdir)/LinearAlgebra/include 79 #nodist_libMolecuilderLinearAlgebra_libinclude_HEADERS = $(top_builddir)/libLinearAlgebra_config.h 78 libLinearAlgebra_libincludedir = $(includedir)/LinearAlgebra 79 #-$(LINEARALGEBRA_API_VERSION) 80 libLinearAlgebra_libinclude_HEADERS = $(LINALGHEADER) $(top_builddir)/libLinearAlgebra_config.h 80 81 81 82 ## Install the generated pkg-config file (.pc) into the expected location for -
LinearAlgebra/src/LinearAlgebra/MatrixContent.cpp
r3e2225f rbf4b9f 15 15 16 16 #include "CodePatterns/Assert.hpp" 17 #include " LinearAlgebra/defs.hpp"18 #include " LinearAlgebra/fast_functions.hpp"19 #include " LinearAlgebra/MatrixContent.hpp"20 #include " LinearAlgebra/RealSpaceMatrix.hpp"21 #include " LinearAlgebra/Vector.hpp"22 #include " LinearAlgebra/VectorContent.hpp"17 #include "defs.hpp" 18 #include "fast_functions.hpp" 19 #include "MatrixContent.hpp" 20 #include "RealSpaceMatrix.hpp" 21 #include "Vector.hpp" 22 #include "VectorContent.hpp" 23 23 24 24 #include <gsl/gsl_blas.h> -
LinearAlgebra/src/LinearAlgebra/MatrixContent.hpp
r3e2225f rbf4b9f 43 43 #include <iosfwd> 44 44 45 #include " LinearAlgebra/MatrixVector_ops.hpp"45 #include "MatrixVector_ops.hpp" 46 46 47 47 class VectorContent; -
LinearAlgebra/src/LinearAlgebra/MatrixVector_ops.cpp
r3e2225f rbf4b9f 24 24 25 25 #include "CodePatterns/Assert.hpp" 26 #include " LinearAlgebra/MatrixContent.hpp"27 #include " LinearAlgebra/MatrixVector_ops.hpp"28 #include " LinearAlgebra/Vector.hpp"29 #include " LinearAlgebra/VectorContent.hpp"26 #include "MatrixContent.hpp" 27 #include "MatrixVector_ops.hpp" 28 #include "Vector.hpp" 29 #include "VectorContent.hpp" 30 30 31 31 /** Vector-Matrix-product. -
LinearAlgebra/src/LinearAlgebra/Plane.cpp
r3e2225f rbf4b9f 27 27 #include "CodePatterns/Log.hpp" 28 28 #include "CodePatterns/Verbose.hpp" 29 #include " LinearAlgebra/defs.hpp"30 #include " LinearAlgebra/Exceptions.hpp"31 #include " LinearAlgebra/fast_functions.hpp"32 #include "Line arAlgebra/Line.hpp"33 #include " LinearAlgebra/Plane.hpp"34 #include " LinearAlgebra/Vector.hpp"29 #include "defs.hpp" 30 #include "Exceptions.hpp" 31 #include "fast_functions.hpp" 32 #include "Line.hpp" 33 #include "Plane.hpp" 34 #include "Vector.hpp" 35 35 36 36 /** -
LinearAlgebra/src/LinearAlgebra/Plane.hpp
r3e2225f rbf4b9f 19 19 #include <iosfwd> 20 20 21 #include " LinearAlgebra/Exceptions.hpp"22 #include " LinearAlgebra/Space.hpp"21 #include "Exceptions.hpp" 22 #include "Space.hpp" 23 23 24 24 class Vector; -
LinearAlgebra/src/LinearAlgebra/RealSpaceMatrix.cpp
r3e2225f rbf4b9f 21 21 22 22 #include "CodePatterns/Assert.hpp" 23 #include " LinearAlgebra/defs.hpp"24 #include " LinearAlgebra/Exceptions.hpp"25 #include " LinearAlgebra/fast_functions.hpp"26 #include " LinearAlgebra/MatrixContent.hpp"27 #include " LinearAlgebra/RealSpaceMatrix.hpp"28 #include " LinearAlgebra/Vector.hpp"29 #include " LinearAlgebra/VectorContent.hpp"23 #include "defs.hpp" 24 #include "Exceptions.hpp" 25 #include "fast_functions.hpp" 26 #include "MatrixContent.hpp" 27 #include "RealSpaceMatrix.hpp" 28 #include "Vector.hpp" 29 #include "VectorContent.hpp" 30 30 31 31 #include <gsl/gsl_blas.h> -
LinearAlgebra/src/LinearAlgebra/RealSpaceMatrix.hpp
r3e2225f rbf4b9f 17 17 #include <iosfwd> 18 18 19 #include " LinearAlgebra/defs.hpp"19 #include "defs.hpp" 20 20 21 21 -
LinearAlgebra/src/LinearAlgebra/Space.cpp
r3e2225f rbf4b9f 22 22 #include <limits> 23 23 24 #include " LinearAlgebra/defs.hpp"25 #include " LinearAlgebra/Space.hpp"26 #include " LinearAlgebra/Vector.hpp"24 #include "defs.hpp" 25 #include "Space.hpp" 26 #include "Vector.hpp" 27 27 28 28 Space::Space() -
LinearAlgebra/src/LinearAlgebra/Vector.cpp
r3e2225f rbf4b9f 21 21 #include "CodePatterns/Assert.hpp" 22 22 #include "CodePatterns/Verbose.hpp" 23 #include " LinearAlgebra/defs.hpp"24 #include " LinearAlgebra/fast_functions.hpp"25 #include " LinearAlgebra/Vector.hpp"26 #include " LinearAlgebra/VectorContent.hpp"23 #include "defs.hpp" 24 #include "fast_functions.hpp" 25 #include "Vector.hpp" 26 #include "VectorContent.hpp" 27 27 28 28 #include <cmath> -
LinearAlgebra/src/LinearAlgebra/Vector.hpp
r3e2225f rbf4b9f 16 16 #include <vector> 17 17 18 #include " LinearAlgebra/defs.hpp"19 #include " LinearAlgebra/Space.hpp"18 #include "defs.hpp" 19 #include "Space.hpp" 20 20 21 21 /********************************************** declarations *******************************/ -
LinearAlgebra/src/LinearAlgebra/VectorContent.cpp
r3e2225f rbf4b9f 27 27 28 28 #include "CodePatterns/Assert.hpp" 29 #include " LinearAlgebra/defs.hpp"30 #include " LinearAlgebra/Vector.hpp"31 #include " LinearAlgebra/VectorContent.hpp"29 #include "defs.hpp" 30 #include "Vector.hpp" 31 #include "VectorContent.hpp" 32 32 33 33 /** Constructor of class VectorContent. -
LinearAlgebra/src/LinearAlgebra/VectorContent.hpp
r3e2225f rbf4b9f 28 28 #include <gsl/gsl_vector.h> 29 29 30 #include " LinearAlgebra/MatrixVector_ops.hpp"30 #include "MatrixVector_ops.hpp" 31 31 32 32 class Vector; -
LinearAlgebra/src/LinearAlgebra/VectorInterface.cpp
r3e2225f rbf4b9f 23 23 24 24 #include <iostream> 25 #include " LinearAlgebra/Vector.hpp"25 #include "Vector.hpp" 26 26 27 27 -
LinearAlgebra/src/LinearAlgebra/VectorSet.hpp
r3e2225f rbf4b9f 26 26 */ 27 27 28 #include " LinearAlgebra/Vector.hpp"28 #include "Vector.hpp" 29 29 #include <list> 30 30 -
LinearAlgebra/src/LinearAlgebra/fast_functions.hpp
r3e2225f rbf4b9f 16 16 #include <cmath> 17 17 18 #include " LinearAlgebra/defs.hpp"18 #include "defs.hpp" 19 19 20 20 /** -
LinearAlgebra/src/LinearAlgebra/leastsquaremin.cpp
r3e2225f rbf4b9f 22 22 #include <iostream> 23 23 24 #include " LinearAlgebra/defs.hpp"25 #include " LinearAlgebra/leastsquaremin.hpp"26 #include " LinearAlgebra/Vector.hpp"24 #include "defs.hpp" 25 #include "leastsquaremin.hpp" 26 #include "Vector.hpp" 27 27 28 28 /** Determines sum of squared distances of \a X to all \a **vectors. -
LinearAlgebra/src/LinearAlgebra/vector_ops.cpp
r3e2225f rbf4b9f 23 23 #include "CodePatterns/Log.hpp" 24 24 #include "CodePatterns/Verbose.hpp" 25 #include " LinearAlgebra/defs.hpp"26 #include " LinearAlgebra/fast_functions.hpp"27 #include " LinearAlgebra/leastsquaremin.hpp"28 #include " LinearAlgebra/Plane.hpp"29 #include " LinearAlgebra/Vector.hpp"25 #include "defs.hpp" 26 #include "fast_functions.hpp" 27 #include "leastsquaremin.hpp" 28 #include "Plane.hpp" 29 #include "Vector.hpp" 30 30 31 31 #include <gsl/gsl_linalg.h> -
LinearAlgebra/src/unittests/LineUnitTest.cpp
r3e2225f rbf4b9f 19 19 20 20 21 #include " LinearAlgebra/Exceptions.hpp"22 #include " LinearAlgebra/Vector.hpp"21 #include "Exceptions.hpp" 22 #include "Vector.hpp" 23 23 24 24 #include <cppunit/CompilerOutputter.h> -
LinearAlgebra/src/unittests/LineUnitTest.hpp
r3e2225f rbf4b9f 17 17 #include <cppunit/extensions/HelperMacros.h> 18 18 19 #include "Line arAlgebra/Line.hpp"19 #include "Line.hpp" 20 20 21 21 class LineUnittest : public CppUnit::TestFixture -
LinearAlgebra/src/unittests/LinearSystemOfEquationsUnitTest.cpp
r3e2225f rbf4b9f 26 26 #include <cmath> 27 27 28 #include " LinearAlgebra/defs.hpp"29 #include " LinearAlgebra/Vector.hpp"28 #include "defs.hpp" 29 #include "Vector.hpp" 30 30 31 31 #include "LinearSystemOfEquationsUnitTest.hpp" -
LinearAlgebra/src/unittests/LinearSystemOfEquationsUnitTest.hpp
r3e2225f rbf4b9f 17 17 #include <cppunit/extensions/HelperMacros.h> 18 18 19 #include "Linear Algebra/LinearSystemOfEquations.hpp"19 #include "LinearSystemOfEquations.hpp" 20 20 21 21 /********************************************** Test classes **************************************/ -
LinearAlgebra/src/unittests/Makefile.am
r3e2225f rbf4b9f 2 2 # Also indentation by a single tab 3 3 4 INCLUDES = -I$(top_srcdir)/src 4 INCLUDES = -I$(top_srcdir)/src/LinearAlgebra 5 5 6 6 AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl … … 19 19 20 20 check_PROGRAMS = $(TESTS) 21 noinst_PROGRAMS = $(TESTS) 21 noinst_PROGRAMS = $(TESTS) TestRunner 22 22 23 23 BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB) 24 24 GSLLIBS = \ 25 ../ ../LinearAlgebra/libMolecuilderLinearAlgebra.la \25 ../LinearAlgebra/libLinearAlgebra.la \ 26 26 ${CodePatterns_LIBS} \ 27 27 $(BOOST_LIB) 28 28 29 LinearSystemOfEquationsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \ 29 TESTSOURCES = \ 30 LinearSystemOfEquationsUnitTest.cpp \ 31 LineUnitTest.cpp \ 32 MatrixContentSymmetricUnitTest.cpp \ 33 MatrixContentUnitTest.cpp \ 34 MatrixUnitTest.cpp \ 35 PlaneUnitTest.cpp \ 36 VectorContentUnitTest.cpp \ 37 VectorUnitTest.cpp 38 39 TESTHEADERS = \ 40 LinearSystemOfEquationsUnitTest.hpp \ 41 LineUnitTest.hpp \ 42 MatrixContentSymmetricUnitTest.hpp \ 43 MatrixContentUnitTest.hpp \ 44 MatrixUnitTest.hpp \ 45 PlaneUnitTest.hpp \ 46 VectorContentUnitTest.hpp \ 47 VectorUnitTest.hpp 48 49 LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp \ 30 50 LinearSystemOfEquationsUnitTest.cpp \ 31 51 LinearSystemOfEquationsUnitTest.hpp 32 52 LinearSystemOfEquationsUnitTest_LDADD = ${GSLLIBS} 33 53 34 LineUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \54 LineUnitTest_SOURCES = UnitTestMain.cpp \ 35 55 LineUnitTest.cpp \ 36 56 LineUnitTest.hpp 37 57 LineUnitTest_LDADD = ${GSLLIBS} 38 58 39 MatrixContentSymmetricUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \59 MatrixContentSymmetricUnitTest_SOURCES = UnitTestMain.cpp \ 40 60 MatrixContentSymmetricUnitTest.cpp \ 41 61 MatrixContentSymmetricUnitTest.hpp 42 62 MatrixContentSymmetricUnitTest_LDADD = ${GSLLIBS} 43 63 44 MatrixContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \64 MatrixContentUnitTest_SOURCES = UnitTestMain.cpp \ 45 65 MatrixContentUnitTest.cpp \ 46 66 MatrixContentUnitTest.hpp 47 67 MatrixContentUnitTest_LDADD = ${GSLLIBS} 48 68 49 MatrixUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \69 MatrixUnitTest_SOURCES = UnitTestMain.cpp \ 50 70 MatrixUnitTest.cpp \ 51 71 MatrixUnitTest.hpp 52 72 MatrixUnitTest_LDADD = ${GSLLIBS} 53 73 54 PlaneUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \74 PlaneUnitTest_SOURCES = UnitTestMain.cpp \ 55 75 PlaneUnitTest.cpp \ 56 76 PlaneUnitTest.hpp 57 77 PlaneUnitTest_LDADD = ${GSLLIBS} 58 78 59 VectorContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \79 VectorContentUnitTest_SOURCES = UnitTestMain.cpp \ 60 80 VectorContentUnitTest.cpp \ 61 81 VectorContentUnitTest.hpp 62 82 VectorContentUnitTest_LDADD = ${GSLLIBS} 63 83 64 VectorUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \84 VectorUnitTest_SOURCES = UnitTestMain.cpp \ 65 85 VectorUnitTest.cpp \ 66 86 VectorUnitTest.hpp … … 68 88 69 89 90 TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS) 91 TestRunner_LDADD = ${GSLLIBS} 92 70 93 #AUTOMAKE_OPTIONS = parallel-tests -
LinearAlgebra/src/unittests/MatrixContentSymmetricUnitTest.cpp
r3e2225f rbf4b9f 26 26 #include "MatrixContentSymmetricUnitTest.hpp" 27 27 28 #include " LinearAlgebra/MatrixContent.hpp"28 #include "MatrixContent.hpp" 29 29 30 30 #ifdef HAVE_TESTRUNNER -
LinearAlgebra/src/unittests/MatrixContentUnitTest.cpp
r3e2225f rbf4b9f 26 26 #include "MatrixContentUnitTest.hpp" 27 27 28 #include " LinearAlgebra/MatrixContent.hpp"28 #include "MatrixContent.hpp" 29 29 30 30 #ifdef HAVE_TESTRUNNER -
LinearAlgebra/src/unittests/MatrixUnitTest.cpp
r3e2225f rbf4b9f 27 27 #include "MatrixUnitTest.hpp" 28 28 29 #include " LinearAlgebra/defs.hpp"30 #include " LinearAlgebra/Exceptions.hpp"31 #include " LinearAlgebra/RealSpaceMatrix.hpp"32 #include " LinearAlgebra/Vector.hpp"29 #include "defs.hpp" 30 #include "Exceptions.hpp" 31 #include "RealSpaceMatrix.hpp" 32 #include "Vector.hpp" 33 33 34 34 #ifdef HAVE_TESTRUNNER -
LinearAlgebra/src/unittests/PlaneUnitTest.cpp
r3e2225f rbf4b9f 25 25 #include <limits> 26 26 27 #include " LinearAlgebra/defs.hpp"28 #include " LinearAlgebra/Exceptions.hpp"29 #include "Line arAlgebra/Line.hpp"30 #include " LinearAlgebra/Vector.hpp"27 #include "defs.hpp" 28 #include "Exceptions.hpp" 29 #include "Line.hpp" 30 #include "Vector.hpp" 31 31 32 32 #include "PlaneUnitTest.hpp" -
LinearAlgebra/src/unittests/PlaneUnitTest.hpp
r3e2225f rbf4b9f 17 17 #include <cppunit/extensions/HelperMacros.h> 18 18 19 #include " LinearAlgebra/Plane.hpp"19 #include "Plane.hpp" 20 20 21 21 class PlaneUnittest : public CppUnit::TestFixture -
LinearAlgebra/src/unittests/VectorContentUnitTest.hpp
r3e2225f rbf4b9f 17 17 #include <cppunit/extensions/HelperMacros.h> 18 18 19 #include " LinearAlgebra/VectorContent.hpp"19 #include "VectorContent.hpp" 20 20 21 21 /********************************************** Test classes **************************************/ -
LinearAlgebra/src/unittests/VectorUnitTest.cpp
r3e2225f rbf4b9f 27 27 28 28 #include "CodePatterns/Log.hpp" 29 #include " LinearAlgebra/defs.hpp"30 #include " LinearAlgebra/Plane.hpp"31 #include " LinearAlgebra/RealSpaceMatrix.hpp"32 #include " LinearAlgebra/Vector.hpp"33 #include " LinearAlgebra/vector_ops.hpp"29 #include "defs.hpp" 30 #include "Plane.hpp" 31 #include "RealSpaceMatrix.hpp" 32 #include "Vector.hpp" 33 #include "vector_ops.hpp" 34 34 35 35 #include "VectorUnitTest.hpp" -
LinearAlgebra/src/unittests/VectorUnitTest.hpp
r3e2225f rbf4b9f 17 17 #include <cppunit/extensions/HelperMacros.h> 18 18 19 #include " LinearAlgebra/Vector.hpp"19 #include "Vector.hpp" 20 20 21 21 /********************************************** Test classes **************************************/
Note:
See TracChangeset
for help on using the changeset viewer.