Changeset cdfb6f for src/Actions
- Timestamp:
- Apr 10, 2018, 6:43:11 AM (7 years ago)
- Branches:
- AutomationFragmentation_failures, Candidate_v1.6.1, ChemicalSpaceEvaluator, Enhanced_StructuralOptimization_continued, Exclude_Hydrogens_annealWithBondGraph, ForceAnnealing_with_BondGraph, ForceAnnealing_with_BondGraph_contraction-expansion, Gui_displays_atomic_force_velocity, PythonUI_with_named_parameters, StoppableMakroAction, TremoloParser_IncreasedPrecision
- Children:
- 985d1f
- Parents:
- a5c293
- git-author:
- Frederik Heber <frederik.heber@…> (05/19/17 14:29:40)
- git-committer:
- Frederik Heber <frederik.heber@…> (04/10/18 06:43:11)
- Location:
- src/Actions/MoleculeAction
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/MoleculeAction/ForceAnnealingAction.cpp
ra5c293 rcdfb6f 93 93 set, 94 94 true, 95 params.steps.get()); 95 params.steps.get(), 96 params.MaxDistance.get()); 96 97 // parse forces into next step 97 98 if (!params.forcesfile.get().string().empty()) { -
src/Actions/MoleculeAction/ForceAnnealingAction.def
ra5c293 rcdfb6f 16 16 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 17 17 // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value 18 #define paramtypes (boost::filesystem::path)(unsigned int)(bool) 19 #define paramtokens ("forces-file")("steps")("output-every-step") 20 #define paramdescriptions ("file containing")("fixed number of optimization steps to be performed")("whether WorldTime should be increased and output written after every step, useful if optimization might hang") 21 #define paramdefaults (PARAM_DEFAULT(""))(NOPARAM_DEFAULT)(PARAM_DEFAULT("0")) 22 #define paramreferences (forcesfile)(steps)(DoOutput) 18 #define paramtypes (boost::filesystem::path)(unsigned int)(bool)(int) 19 #define paramtokens ("forces-file")("steps")("output-every-step")("max-distance") 20 #define paramdescriptions ("file containing")("fixed number of optimization steps to be performed")("whether WorldTime should be increased and output written after every step, useful if optimization might hang")("maximum distance to which bond graph is taken into account") 21 #define paramdefaults (PARAM_DEFAULT(""))(NOPARAM_DEFAULT)(PARAM_DEFAULT("0"))(PARAM_DEFAULT(0)) 22 #define paramreferences (forcesfile)(steps)(DoOutput)(MaxDistance) 23 23 #define paramvalids \ 24 24 (DummyValidator< boost::filesystem::path >()) \ 25 25 (NotZeroValidator< unsigned int >()) \ 26 (DummyValidator<bool>()) 26 (DummyValidator<bool>()) \ 27 (DummyValidator< int >()) 27 28 28 29 #define statetypes (std::vector<AtomicInfo>)(std::vector<AtomicInfo>)
Note:
See TracChangeset
for help on using the changeset viewer.