Changeset 2eded3e
- Timestamp:
- Jun 19, 2017, 8:24:16 AM (8 years ago)
- Branches:
- Action_Thermostats, Add_AtomRandomPerturbation, Add_SelectAtomByNameAction, Adding_Graph_to_ChangeBondActions, Adding_MD_integration_tests, Adding_StructOpt_integration_tests, AutomationFragmentation_failures, Candidate_v1.6.1, ChangeBugEmailaddress, ChemicalSpaceEvaluator, EmpiricalPotential_contain_HomologyGraph_documentation, Enhance_userguide, Enhanced_StructuralOptimization, Enhanced_StructuralOptimization_continued, Example_ManyWaysToTranslateAtom, Exclude_Hydrogens_annealWithBondGraph, Fix_Verbose_Codepatterns, ForceAnnealing_oldresults, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_continued, ForceAnnealing_with_BondGraph_continued_betteresults, ForceAnnealing_with_BondGraph_contraction-expansion, GeometryObjects, Gui_displays_atomic_force_velocity, IndependentFragmentGrids_IntegrationTest, JobMarket_RobustOnKillsSegFaults, JobMarket_StableWorkerPool, PythonUI_with_named_parameters, QtGui_reactivate_TimeChanged_changes, Recreated_GuiChecks, StoppableMakroAction, TremoloParser_IncreasedPrecision, TremoloParser_MultipleTimesteps
- Children:
- f79d65
- Parents:
- 6d78b6f
- git-author:
- Frederik Heber <heber@…> (03/29/17 10:19:35)
- git-committer:
- Frederik Heber <frederik.heber@…> (06/19/17 08:24:16)
- Files:
-
- 4 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/Makefile.am
r6d78b6f r2eded3e 4 4 5 5 PARAMETERSOURCE = \ 6 Parameters/Specifics/Parameter_vector.cpp \ 6 7 Parameters/Specifics/Value_atom.cpp \ 7 8 Parameters/Specifics/Value_element.cpp \ … … 9 10 Parameters/Specifics/Value_molecule.cpp \ 10 11 Parameters/Specifics/Value_string.cpp \ 12 Parameters/Specifics/Value_vector.cpp \ 11 13 Parameters/Validators/Specific/ActionNameValidator.cpp \ 12 14 Parameters/Validators/Specific/AtomDataValidator.cpp \ … … 47 49 Parameters/ValueInterface.hpp \ 48 50 Parameters/Specifics/KeyValuePair.hpp \ 51 Parameters/Specifics/Parameter_vector.hpp \ 49 52 Parameters/Specifics/Value_atom.hpp \ 50 53 Parameters/Specifics/Value_element.hpp \ … … 52 55 Parameters/Specifics/Value_molecule.hpp \ 53 56 Parameters/Specifics/Value_string.hpp \ 57 Parameters/Specifics/Value_vector.hpp \ 54 58 Parameters/Validators/DiscreteValidator.hpp \ 55 59 Parameters/Validators/DiscreteValidator_impl.hpp \ -
src/Parameters/Parameter.hpp
r6d78b6f r2eded3e 25 25 class ParameterValueException; 26 26 27 /** This class encapsulates a clon able, continuous value.27 /** This class encapsulates a cloneable, continuous value. 28 28 * 29 29 */ … … 79 79 }; 80 80 81 #include "Parameters/Specifics/Parameter_vector.hpp" 82 81 83 #include "Parameter_impl.hpp" 82 84 -
src/Parameters/Value.hpp
r6d78b6f r2eded3e 124 124 #include "Specifics/Value_molecule.hpp" 125 125 #include "Specifics/Value_string.hpp" 126 #include "Specifics/Value_vector.hpp" 126 127 127 128 #include "Value_impl.hpp" -
src/Parameters/unittests/Makefile.am
r6d78b6f r2eded3e 47 47 ../Parameters/ValueInterface.hpp 48 48 ContinuousValueTest_LDADD = \ 49 ../libMolecuilderParameters.la \ 50 ../libMolecuilderGeometry.la \ 49 51 $(PARAMETERSLIBS) 50 52 -
tests/regression/Options/DryRun/testsuite-options-dryrun-storesession.at
r6d78b6f r2eded3e 21 21 AT_KEYWORDS([options dry-run no-dry-run store-session]) 22 22 AT_SKIP_IF([../../molecuilder --help store-session; if test $? -eq 5; then /bin/true; else /bin/false; fi]) 23 AT_XFAIL_IF([/bin/true]) 23 24 24 25 # sample session -
tests/regression/Options/Session/testsuite-options-load-session-python.at
r6d78b6f r2eded3e 35 35 AT_TESTED([python diff grep]) 36 36 AT_SKIP_IF([../../molecuilder --help load-session; if test $? -eq 5; then /bin/true; else /bin/false; fi]) 37 AT_XFAIL_IF([/bin/true])38 37 39 38 # check that session is stored and can be executed when correctly prefixed
Note:
See TracChangeset
for help on using the changeset viewer.