Changeset 456341


Ignore:
Timestamp:
Jul 1, 2010, 2:57:02 PM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
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:
cd82ec
Parents:
4b94bb
Message:

Moved all Exceptions and Matrix class from LinAlg module back to main module

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Makefile.am

    r4b94bb r456341  
    3030  atom_trajectoryparticleinfo.hpp
    3131
     32LINALGSOURCE = \
     33  ${HELPERSOURCE} \
     34  gslmatrix.cpp \
     35  gslvector.cpp \
     36  linearsystemofequations.cpp \
     37  Space.cpp \
     38  vector.cpp
     39                           
     40LINALGHEADER = \
     41  gslmatrix.hpp \
     42  gslvector.hpp \
     43  linearsystemofequations.hpp \
     44  Space.hpp \
     45  vector.hpp
     46                           
     47ANALYSISSOURCE = \
     48  analysis_bonds.cpp \
     49  analysis_correlation.cpp
     50ANALYSISHEADER = \
     51  analysis_bonds.hpp \
     52  analysis_correlation.hpp
     53
     54ACTIONSSOURCE = \
     55  Actions/Action.cpp \
     56  Actions/ActionHistory.cpp \
     57  Actions/ActionRegistry.cpp \
     58  Actions/ActionSequence.cpp \
     59  Actions/ErrorAction.cpp \
     60  Actions/MakroAction.cpp \
     61  Actions/ManipulateAtomsProcess.cpp \
     62  Actions/MethodAction.cpp \
     63  Actions/Process.cpp
     64
     65ACTIONSHEADER = \
     66  Actions/Action.hpp \
     67  Actions/ActionHistory.hpp \
     68  Actions/ActionRegistry.hpp \
     69  Actions/ActionSequence.hpp \
     70  Actions/Calculation.hpp \
     71  Actions/Calculation_impl.hpp \
     72  Actions/ErrorAction.hpp \
     73  Actions/MakroAction.hpp \
     74  Actions/ManipulateAtomsProcess.hpp \
     75  Actions/MapOfActions.hpp \
     76  Actions/MethodAction.hpp \
     77  Actions/Process.hpp
     78
    3279EXCEPTIONSOURCE = Exceptions/CustomException.cpp \
    3380                                  Exceptions/LinearDependenceException.cpp \
     
    4390                                  Exceptions/SkewException.hpp \
    4491                                  Exceptions/ZeroVectorException.hpp
    45 
    46 # TODO: Move Exceptionsource back down, when transition is done
    47 LINALGSOURCE = \
    48   ${EXCEPTIONSOURCE} \
    49   ${HELPERSOURCE} \
    50   gslmatrix.cpp \
    51   gslvector.cpp \
    52   linearsystemofequations.cpp \
    53   Matrix.cpp \
    54   Space.cpp \
    55   vector.cpp
    56  
    57                            
    58 LINALGHEADER = \
    59   ${EXCEPTIONHEADER} \
    60   gslmatrix.hpp \
    61   gslvector.hpp \
    62   linearsystemofequations.hpp \
    63   Matrix.hpp \
    64   Space.hpp \
    65   vector.hpp
    66                            
    67 ANALYSISSOURCE = \
    68   analysis_bonds.cpp \
    69   analysis_correlation.cpp
    70 ANALYSISHEADER = \
    71   analysis_bonds.hpp \
    72   analysis_correlation.hpp
    73 
    74 ACTIONSSOURCE = \
    75   Actions/Action.cpp \
    76   Actions/ActionHistory.cpp \
    77   Actions/ActionRegistry.cpp \
    78   Actions/ActionSequence.cpp \
    79   Actions/ErrorAction.cpp \
    80   Actions/MakroAction.cpp \
    81   Actions/ManipulateAtomsProcess.cpp \
    82   Actions/MethodAction.cpp \
    83   Actions/Process.cpp
    84 
    85 ACTIONSHEADER = \
    86   Actions/Action.hpp \
    87   Actions/ActionHistory.hpp \
    88   Actions/ActionRegistry.hpp \
    89   Actions/ActionSequence.hpp \
    90   Actions/Calculation.hpp \
    91   Actions/Calculation_impl.hpp \
    92   Actions/ErrorAction.hpp \
    93   Actions/MakroAction.hpp \
    94   Actions/ManipulateAtomsProcess.hpp \
    95   Actions/MapOfActions.hpp \
    96   Actions/MethodAction.hpp \
    97   Actions/Process.hpp
    98  
    9992
    10093PARSERSOURCE = \
     
    149142  Descriptors/MoleculeNameDescriptor.hpp \
    150143  Descriptors/MoleculePtrDescriptor.hpp
    151 
    152 #TODO: Exceptionsource should go here, when the transisition makes this possible                                   
     144 
    153145SOURCE = \
    154146  ${ANALYSISSOURCE} \
    155147  ${ACTIONSSOURCE} \
    156148  ${ATOMSOURCE} \
     149  ${EXCEPTIONSOURCE} \
    157150  ${PATTERNSOURCE} \
    158151  ${PARSERSOURCE} \
     
    179172  log.cpp \
    180173  logger.cpp \
     174  Matrix.cpp \
    181175  moleculelist.cpp \
    182176  molecule.cpp \
     
    203197  ${ACTIONSHEADER} \
    204198  ${ATOMHEADER} \
     199  ${EXCEPTIONHEADER} \
    205200  ${PARSERHEADER} \
    206201  ${PATTERNHEADER} \
     
    228223  log.hpp \
    229224  logger.hpp \
     225  Matrix.hpp \
    230226  molecule.hpp \
    231227  molecule_template.hpp \
Note: See TracChangeset for help on using the changeset viewer.