Changeset d223d5 for src/LinearAlgebra


Ignore:
Timestamp:
Aug 6, 2010, 9:34:59 AM (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, 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:
311d688
Parents:
b6da28 (diff), 255971 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Frederik Heber <heber@…> (08/06/10 09:24:26)
git-committer:
Frederik Heber <heber@…> (08/06/10 09:34:59)
Message:

Merge branch 'SharedLibraries' into stable

  • BUGFIX: MemDebug.cpp in case of no MEMDEBUG defined, iosfwd include was missing.

Conflicts:

src/Actions/AnalysisAction/PointCorrelationAction.hpp
src/Actions/Makefile.am
src/Makefile.am
src/UIElements/Makefile.am
src/unittests/Makefile.am
src/unittests/ShapeUnittest.cpp

Location:
src/LinearAlgebra
Files:
1 added
19 moved

Legend:

Unmodified
Added
Removed
  • TabularUnified src/LinearAlgebra/Line.cpp

    rb6da28 rd223d5  
    88#include "Helpers/MemDebug.hpp"
    99
    10 #include "Line.hpp"
     10#include "LinearAlgebra/Line.hpp"
    1111
    1212#include <cmath>
    1313
    14 #include "vector.hpp"
    15 #include "log.hpp"
    16 #include "verbose.hpp"
    17 #include "gslmatrix.hpp"
    18 #include "info.hpp"
     14#include "LinearAlgebra/Vector.hpp"
     15#include "Helpers/Log.hpp"
     16#include "Helpers/Verbose.hpp"
     17#include "LinearAlgebra/gslmatrix.hpp"
     18#include "Helpers/Info.hpp"
    1919#include "Exceptions/LinearDependenceException.hpp"
    2020#include "Exceptions/SkewException.hpp"
    21 #include "Plane.hpp"
     21#include "LinearAlgebra/Plane.hpp"
    2222
    2323using namespace std;
  • TabularUnified src/LinearAlgebra/Line.hpp

    rb6da28 rd223d5  
    99#define LINE_HPP_
    1010
    11 #include "Space.hpp"
     11#include "LinearAlgebra/Space.hpp"
    1212
    1313#include <memory>
  • TabularUnified src/LinearAlgebra/Matrix.cpp

    rb6da28 rd223d5  
    66 */
    77
    8 #include "Matrix.hpp"
     8#include "LinearAlgebra/Matrix.hpp"
    99#include "Helpers/Assert.hpp"
    1010#include "Exceptions/NotInvertibleException.hpp"
    1111#include "Helpers/fast_functions.hpp"
    1212#include "Helpers/Assert.hpp"
    13 #include "vector.hpp"
     13#include "LinearAlgebra/Vector.hpp"
    1414#include "VectorContent.hpp"
    1515#include "MatrixContent.hpp"
  • TabularUnified src/LinearAlgebra/Plane.cpp

    rb6da28 rd223d5  
    88#include "Helpers/MemDebug.hpp"
    99
    10 #include "Plane.hpp"
    11 #include "vector.hpp"
     10#include "LinearAlgebra/Plane.hpp"
     11#include "LinearAlgebra/Vector.hpp"
    1212#include "defs.hpp"
    13 #include "info.hpp"
    14 #include "log.hpp"
    15 #include "verbose.hpp"
     13#include "Helpers/Info.hpp"
     14#include "Helpers/Log.hpp"
     15#include "Helpers/Verbose.hpp"
    1616#include "Helpers/Assert.hpp"
    1717#include <cmath>
    18 #include "Line.hpp"
     18#include "LinearAlgebra/Line.hpp"
    1919#include "Exceptions/MultipleSolutionsException.hpp"
    2020
  • TabularUnified src/LinearAlgebra/Plane.hpp

    rb6da28 rd223d5  
    1212#include <vector>
    1313#include <iosfwd>
    14 #include "Space.hpp"
     14#include "LinearAlgebra/Space.hpp"
    1515#include "Exceptions/LinearDependenceException.hpp"
    1616#include "Exceptions/ZeroVectorException.hpp"
  • TabularUnified src/LinearAlgebra/Space.cpp

    rb6da28 rd223d5  
    88#include "Helpers/MemDebug.hpp"
    99
    10 #include "Space.hpp"
    11 #include "vector.hpp"
     10#include "LinearAlgebra/Space.hpp"
     11#include "LinearAlgebra/Vector.hpp"
    1212
    1313Space::Space()
  • TabularUnified src/LinearAlgebra/Vector.cpp

    rb6da28 rd223d5  
    77#include "Helpers/MemDebug.hpp"
    88
    9 #include "vector.hpp"
     9#include "LinearAlgebra/Vector.hpp"
    1010#include "VectorContent.hpp"
    11 #include "verbose.hpp"
     11#include "Helpers/Verbose.hpp"
    1212#include "World.hpp"
    1313#include "Helpers/Assert.hpp"
  • TabularUnified src/LinearAlgebra/Vector.hpp

    rb6da28 rd223d5  
    1717
    1818#include "defs.hpp"
    19 #include "Space.hpp"
     19#include "LinearAlgebra/Space.hpp"
    2020
    2121/********************************************** declarations *******************************/
  • TabularUnified src/LinearAlgebra/VectorSet.hpp

    rb6da28 rd223d5  
    2020 */
    2121
    22 #include "vector.hpp"
     22#include "LinearAlgebra/Vector.hpp"
    2323#include <list>
    2424
  • TabularUnified src/LinearAlgebra/gslmatrix.cpp

    rb6da28 rd223d5  
    1010using namespace std;
    1111
    12 #include "gslmatrix.hpp"
    13 #include "helpers.hpp"
     12#include "LinearAlgebra/gslmatrix.hpp"
     13#include "Helpers/helpers.hpp"
    1414#include "Helpers/fast_functions.hpp"
    1515
  • TabularUnified src/LinearAlgebra/gslvector.cpp

    rb6da28 rd223d5  
    1212#include <iostream>
    1313
    14 #include "gslvector.hpp"
     14#include "LinearAlgebra/gslvector.hpp"
    1515#include "defs.hpp"
    16 #include "vector.hpp"
     16#include "LinearAlgebra/Vector.hpp"
    1717#include "VectorContent.hpp"
    1818
  • TabularUnified src/LinearAlgebra/linearsystemofequations.cpp

    rb6da28 rd223d5  
    99
    1010#include "defs.hpp"
    11 #include "gslmatrix.hpp"
    12 #include "gslvector.hpp"
    13 #include "linearsystemofequations.hpp"
    14 #include "logger.hpp"
    15 #include "vector.hpp"
     11#include "LinearAlgebra/gslmatrix.hpp"
     12#include "LinearAlgebra/gslvector.hpp"
     13#include "LinearAlgebra/linearsystemofequations.hpp"
     14#include "Helpers/logger.hpp"
     15#include "LinearAlgebra/Vector.hpp"
    1616
    1717#include <cassert>
Note: See TracChangeset for help on using the changeset viewer.