Changeset bf4b9f for LinearAlgebra/src


Ignore:
Timestamp:
Apr 8, 2011, 3:48:50 PM (15 years ago)
Author:
Frederik Heber <heber@…>
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)
Message:

Moved LinearAlgebra from folder src/ into distinct sub-package.

  • src/LinearAlgebra folder is now LinearAlgebra/src/LinearAlgebra due to include consistency.
  • src/LinearAlgebra/unittests have been moved to LinearAlgebra/unittests.
  • All Makefile.am's had to be changed due to changed location of library.
  • renamed libMolecuilderLinearAlgebra to libLinearAlgebra.
  • CONFIG_AUX_DIR is build-aux 9for molecuilder and LinearAlgebra).
  • m4 is symlinked from below.
  • build-aux now contains small README such that it is created automatically.
Location:
LinearAlgebra/src
Files:
2 added
52 moved

Legend:

Unmodified
Added
Removed
  • LinearAlgebra/src/LinearAlgebra/BoxVector.cpp

    r3e2225f rbf4b9f  
    1515#include <iostream>
    1616
    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"
    2020
    2121BoxVector::BoxVector()
  • LinearAlgebra/src/LinearAlgebra/BoxVector.hpp

    r3e2225f rbf4b9f  
    1717#include <iosfwd>
    1818
    19 #include "LinearAlgebra/Vector.hpp"
     19#include "Vector.hpp"
    2020
    2121/** A BoxVector is simply a Vector that adheres to the boundary conditions of
  • LinearAlgebra/src/LinearAlgebra/Line.cpp

    r3e2225f rbf4b9f  
    2020#include "CodePatterns/MemDebug.hpp"
    2121
    22 #include "LinearAlgebra/Line.hpp"
     22#include "Line.hpp"
    2323
    2424#include <cmath>
     
    2929#include "CodePatterns/Log.hpp"
    3030#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"
    3636
    3737using namespace std;
  • LinearAlgebra/src/LinearAlgebra/Line.hpp

    r3e2225f rbf4b9f  
    1515
    1616
    17 #include "LinearAlgebra/Space.hpp"
     17#include "Space.hpp"
    1818
    1919#include <iosfwd>
  • LinearAlgebra/src/LinearAlgebra/LineSegment.cpp

    r3e2225f rbf4b9f  
    1313#include "CodePatterns/MemDebug.hpp"
    1414
    15 #include "LinearAlgebra/LineSegment.hpp"
     15#include "LineSegment.hpp"
    1616#include "CodePatterns/Assert.hpp"
    1717
    1818#include "Line.hpp"
    19 #include "LinearAlgebra/Vector.hpp"
     19#include "Vector.hpp"
    2020
    2121using namespace std;
  • LinearAlgebra/src/LinearAlgebra/LineSegmentSet.cpp

    r3e2225f rbf4b9f  
    1313#include "CodePatterns/MemDebug.hpp"
    1414
    15 #include "LinearAlgebra/LineSegmentSet.hpp"
     15#include "LineSegmentSet.hpp"
    1616
    1717#include "CodePatterns/Assert.hpp"
    18 #include "LinearAlgebra/Line.hpp"
    19 #include "LinearAlgebra/LineSegment.hpp"
     18#include "Line.hpp"
     19#include "LineSegment.hpp"
    2020
    2121#include "CodePatterns/Range.hpp"
  • LinearAlgebra/src/LinearAlgebra/LinearSystemOfEquations.cpp

    r3e2225f rbf4b9f  
    2222#include "CodePatterns/Assert.hpp"
    2323#include "CodePatterns/logger.hpp"
    24 #include "LinearAlgebra/defs.hpp"
    25 #include "LinearAlgebra/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"
    2929
    3030#include <gsl/gsl_permutation.h>
  • LinearAlgebra/src/LinearAlgebra/Makefile.am

    r3e2225f rbf4b9f  
    4444
    4545
    46 lib_LTLIBRARIES = libMolecuilderLinearAlgebra.la
    47 libMolecuilderLinearAlgebra_la_includedir = $(includedir)/MoleCuilder/LinearAlgebra/
    48 libMolecuilderLinearAlgebra_la_LIBADD = \
     46lib_LTLIBRARIES = libLinearAlgebra.la
     47libLinearAlgebra_la_includedir = $(includedir)/MoleCuilder/LinearAlgebra/
     48libLinearAlgebra_la_LIBADD = \
    4949        $(GSL_LIBS)
    50 nobase_libMolecuilderLinearAlgebra_la_include_HEADERS = ${LINALGHEADER}
     50nobase_libLinearAlgebra_la_include_HEADERS = ${LINALGHEADER}
    5151
    5252## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
     
    5858## from each source file.  Note that it is not necessary to list header files
    5959## which are already listed elsewhere in a _HEADERS variable assignment.
    60 libMolecuilderLinearAlgebra_la_SOURCES = ${LINALGSOURCE}
     60libLinearAlgebra_la_SOURCES = ${LINALGSOURCE}
    6161
    6262## Instruct libtool to include ABI version information in the generated shared
    6363## library file (.so).  The library ABI version is defined in configure.ac, so
    6464## that all version information is kept in one place.
    65 libMolecuilderLinearAlgebra_la_LDFLAGS = -version-info $(LINEARALGEBRA_SO_VERSION)
     65libLinearAlgebra_la_LDFLAGS = -version-info $(LINEARALGEBRA_SO_VERSION)
    6666
    6767## The generated configuration header is installed in its own subdirectory of
     
    7676## configuration header file is generated at configure time and should not be
    7777## shipped with the source tarball.
    78 #libMolecuilderLinearAlgebra_libincludedir = $(libdir)/LinearAlgebra/include
    79 #nodist_libMolecuilderLinearAlgebra_libinclude_HEADERS = $(top_builddir)/libLinearAlgebra_config.h
     78libLinearAlgebra_libincludedir = $(includedir)/LinearAlgebra
     79#-$(LINEARALGEBRA_API_VERSION)
     80libLinearAlgebra_libinclude_HEADERS = $(LINALGHEADER) $(top_builddir)/libLinearAlgebra_config.h
    8081
    8182## Install the generated pkg-config file (.pc) into the expected location for
  • LinearAlgebra/src/LinearAlgebra/MatrixContent.cpp

    r3e2225f rbf4b9f  
    1515
    1616#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"
    2323
    2424#include <gsl/gsl_blas.h>
  • LinearAlgebra/src/LinearAlgebra/MatrixContent.hpp

    r3e2225f rbf4b9f  
    4343#include <iosfwd>
    4444
    45 #include "LinearAlgebra/MatrixVector_ops.hpp"
     45#include "MatrixVector_ops.hpp"
    4646
    4747class VectorContent;
  • LinearAlgebra/src/LinearAlgebra/MatrixVector_ops.cpp

    r3e2225f rbf4b9f  
    2424
    2525#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"
    3030
    3131/** Vector-Matrix-product.
  • LinearAlgebra/src/LinearAlgebra/Plane.cpp

    r3e2225f rbf4b9f  
    2727#include "CodePatterns/Log.hpp"
    2828#include "CodePatterns/Verbose.hpp"
    29 #include "LinearAlgebra/defs.hpp"
    30 #include "LinearAlgebra/Exceptions.hpp"
    31 #include "LinearAlgebra/fast_functions.hpp"
    32 #include "LinearAlgebra/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"
    3535
    3636/**
  • LinearAlgebra/src/LinearAlgebra/Plane.hpp

    r3e2225f rbf4b9f  
    1919#include <iosfwd>
    2020
    21 #include "LinearAlgebra/Exceptions.hpp"
    22 #include "LinearAlgebra/Space.hpp"
     21#include "Exceptions.hpp"
     22#include "Space.hpp"
    2323
    2424class Vector;
  • LinearAlgebra/src/LinearAlgebra/RealSpaceMatrix.cpp

    r3e2225f rbf4b9f  
    2121
    2222#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"
    3030
    3131#include <gsl/gsl_blas.h>
  • LinearAlgebra/src/LinearAlgebra/RealSpaceMatrix.hpp

    r3e2225f rbf4b9f  
    1717#include <iosfwd>
    1818
    19 #include "LinearAlgebra/defs.hpp"
     19#include "defs.hpp"
    2020
    2121
  • LinearAlgebra/src/LinearAlgebra/Space.cpp

    r3e2225f rbf4b9f  
    2222#include <limits>
    2323
    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"
    2727
    2828Space::Space()
  • LinearAlgebra/src/LinearAlgebra/Vector.cpp

    r3e2225f rbf4b9f  
    2121#include "CodePatterns/Assert.hpp"
    2222#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"
    2727
    2828#include <cmath>
  • LinearAlgebra/src/LinearAlgebra/Vector.hpp

    r3e2225f rbf4b9f  
    1616#include <vector>
    1717
    18 #include "LinearAlgebra/defs.hpp"
    19 #include "LinearAlgebra/Space.hpp"
     18#include "defs.hpp"
     19#include "Space.hpp"
    2020
    2121/********************************************** declarations *******************************/
  • LinearAlgebra/src/LinearAlgebra/VectorContent.cpp

    r3e2225f rbf4b9f  
    2727
    2828#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"
    3232
    3333/** Constructor of class VectorContent.
  • LinearAlgebra/src/LinearAlgebra/VectorContent.hpp

    r3e2225f rbf4b9f  
    2828#include <gsl/gsl_vector.h>
    2929
    30 #include "LinearAlgebra/MatrixVector_ops.hpp"
     30#include "MatrixVector_ops.hpp"
    3131
    3232class Vector;
  • LinearAlgebra/src/LinearAlgebra/VectorInterface.cpp

    r3e2225f rbf4b9f  
    2323
    2424#include <iostream>
    25 #include "LinearAlgebra/Vector.hpp"
     25#include "Vector.hpp"
    2626
    2727
  • LinearAlgebra/src/LinearAlgebra/VectorSet.hpp

    r3e2225f rbf4b9f  
    2626 */
    2727
    28 #include "LinearAlgebra/Vector.hpp"
     28#include "Vector.hpp"
    2929#include <list>
    3030
  • LinearAlgebra/src/LinearAlgebra/fast_functions.hpp

    r3e2225f rbf4b9f  
    1616#include <cmath>
    1717
    18 #include "LinearAlgebra/defs.hpp"
     18#include "defs.hpp"
    1919
    2020/**
  • LinearAlgebra/src/LinearAlgebra/leastsquaremin.cpp

    r3e2225f rbf4b9f  
    2222#include <iostream>
    2323
    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"
    2727
    2828/** Determines sum of squared distances of \a X to all \a **vectors.
  • LinearAlgebra/src/LinearAlgebra/vector_ops.cpp

    r3e2225f rbf4b9f  
    2323#include "CodePatterns/Log.hpp"
    2424#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"
    3030
    3131#include <gsl/gsl_linalg.h>
  • LinearAlgebra/src/unittests/LineUnitTest.cpp

    r3e2225f rbf4b9f  
    1919
    2020
    21 #include "LinearAlgebra/Exceptions.hpp"
    22 #include "LinearAlgebra/Vector.hpp"
     21#include "Exceptions.hpp"
     22#include "Vector.hpp"
    2323
    2424#include <cppunit/CompilerOutputter.h>
  • LinearAlgebra/src/unittests/LineUnitTest.hpp

    r3e2225f rbf4b9f  
    1717#include <cppunit/extensions/HelperMacros.h>
    1818
    19 #include "LinearAlgebra/Line.hpp"
     19#include "Line.hpp"
    2020
    2121class LineUnittest : public CppUnit::TestFixture
  • LinearAlgebra/src/unittests/LinearSystemOfEquationsUnitTest.cpp

    r3e2225f rbf4b9f  
    2626#include <cmath>
    2727
    28 #include "LinearAlgebra/defs.hpp"
    29 #include "LinearAlgebra/Vector.hpp"
     28#include "defs.hpp"
     29#include "Vector.hpp"
    3030
    3131#include "LinearSystemOfEquationsUnitTest.hpp"
  • LinearAlgebra/src/unittests/LinearSystemOfEquationsUnitTest.hpp

    r3e2225f rbf4b9f  
    1717#include <cppunit/extensions/HelperMacros.h>
    1818
    19 #include "LinearAlgebra/LinearSystemOfEquations.hpp"
     19#include "LinearSystemOfEquations.hpp"
    2020
    2121/********************************************** Test classes **************************************/
  • LinearAlgebra/src/unittests/Makefile.am

    r3e2225f rbf4b9f  
    22# Also indentation by a single tab
    33
    4 INCLUDES = -I$(top_srcdir)/src
     4INCLUDES = -I$(top_srcdir)/src/LinearAlgebra
    55
    66AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
     
    1919
    2020check_PROGRAMS = $(TESTS)
    21 noinst_PROGRAMS = $(TESTS)
     21noinst_PROGRAMS = $(TESTS) TestRunner
    2222
    2323BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
    2424GSLLIBS = \
    25         ../../LinearAlgebra/libMolecuilderLinearAlgebra.la \
     25        ../LinearAlgebra/libLinearAlgebra.la \
    2626        ${CodePatterns_LIBS} \
    2727        $(BOOST_LIB)
    2828
    29 LinearSystemOfEquationsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
     29TESTSOURCES = \
     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
     39TESTHEADERS = \
     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
     49LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp \
    3050        LinearSystemOfEquationsUnitTest.cpp \
    3151        LinearSystemOfEquationsUnitTest.hpp
    3252LinearSystemOfEquationsUnitTest_LDADD = ${GSLLIBS}
    3353
    34 LineUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
     54LineUnitTest_SOURCES = UnitTestMain.cpp \
    3555        LineUnitTest.cpp \
    3656        LineUnitTest.hpp
    3757LineUnitTest_LDADD = ${GSLLIBS}
    3858
    39 MatrixContentSymmetricUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
     59MatrixContentSymmetricUnitTest_SOURCES = UnitTestMain.cpp \
    4060        MatrixContentSymmetricUnitTest.cpp \
    4161        MatrixContentSymmetricUnitTest.hpp
    4262MatrixContentSymmetricUnitTest_LDADD = ${GSLLIBS}
    4363
    44 MatrixContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
     64MatrixContentUnitTest_SOURCES = UnitTestMain.cpp \
    4565        MatrixContentUnitTest.cpp \
    4666        MatrixContentUnitTest.hpp
    4767MatrixContentUnitTest_LDADD = ${GSLLIBS}
    4868
    49 MatrixUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
     69MatrixUnitTest_SOURCES = UnitTestMain.cpp \
    5070        MatrixUnitTest.cpp \
    5171        MatrixUnitTest.hpp
    5272MatrixUnitTest_LDADD = ${GSLLIBS}
    5373
    54 PlaneUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
     74PlaneUnitTest_SOURCES = UnitTestMain.cpp \
    5575        PlaneUnitTest.cpp \
    5676        PlaneUnitTest.hpp
    5777PlaneUnitTest_LDADD = ${GSLLIBS}
    5878
    59 VectorContentUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
     79VectorContentUnitTest_SOURCES = UnitTestMain.cpp \
    6080        VectorContentUnitTest.cpp \
    6181        VectorContentUnitTest.hpp
    6282VectorContentUnitTest_LDADD = ${GSLLIBS}
    6383
    64 VectorUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
     84VectorUnitTest_SOURCES = UnitTestMain.cpp \
    6585        VectorUnitTest.cpp \
    6686        VectorUnitTest.hpp
     
    6888
    6989
     90TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
     91TestRunner_LDADD = ${GSLLIBS}
     92
    7093#AUTOMAKE_OPTIONS = parallel-tests
  • LinearAlgebra/src/unittests/MatrixContentSymmetricUnitTest.cpp

    r3e2225f rbf4b9f  
    2626#include "MatrixContentSymmetricUnitTest.hpp"
    2727
    28 #include "LinearAlgebra/MatrixContent.hpp"
     28#include "MatrixContent.hpp"
    2929
    3030#ifdef HAVE_TESTRUNNER
  • LinearAlgebra/src/unittests/MatrixContentUnitTest.cpp

    r3e2225f rbf4b9f  
    2626#include "MatrixContentUnitTest.hpp"
    2727
    28 #include "LinearAlgebra/MatrixContent.hpp"
     28#include "MatrixContent.hpp"
    2929
    3030#ifdef HAVE_TESTRUNNER
  • LinearAlgebra/src/unittests/MatrixUnitTest.cpp

    r3e2225f rbf4b9f  
    2727#include "MatrixUnitTest.hpp"
    2828
    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"
    3333
    3434#ifdef HAVE_TESTRUNNER
  • LinearAlgebra/src/unittests/PlaneUnitTest.cpp

    r3e2225f rbf4b9f  
    2525#include <limits>
    2626
    27 #include "LinearAlgebra/defs.hpp"
    28 #include "LinearAlgebra/Exceptions.hpp"
    29 #include "LinearAlgebra/Line.hpp"
    30 #include "LinearAlgebra/Vector.hpp"
     27#include "defs.hpp"
     28#include "Exceptions.hpp"
     29#include "Line.hpp"
     30#include "Vector.hpp"
    3131
    3232#include "PlaneUnitTest.hpp"
  • LinearAlgebra/src/unittests/PlaneUnitTest.hpp

    r3e2225f rbf4b9f  
    1717#include <cppunit/extensions/HelperMacros.h>
    1818
    19 #include "LinearAlgebra/Plane.hpp"
     19#include "Plane.hpp"
    2020
    2121class PlaneUnittest : public CppUnit::TestFixture
  • LinearAlgebra/src/unittests/VectorContentUnitTest.hpp

    r3e2225f rbf4b9f  
    1717#include <cppunit/extensions/HelperMacros.h>
    1818
    19 #include "LinearAlgebra/VectorContent.hpp"
     19#include "VectorContent.hpp"
    2020
    2121/********************************************** Test classes **************************************/
  • LinearAlgebra/src/unittests/VectorUnitTest.cpp

    r3e2225f rbf4b9f  
    2727
    2828#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"
    3434
    3535#include "VectorUnitTest.hpp"
  • LinearAlgebra/src/unittests/VectorUnitTest.hpp

    r3e2225f rbf4b9f  
    1717#include <cppunit/extensions/HelperMacros.h>
    1818
    19 #include "LinearAlgebra/Vector.hpp"
     19#include "Vector.hpp"
    2020
    2121/********************************************** Test classes **************************************/
Note: See TracChangeset for help on using the changeset viewer.