Ignore:
Timestamp:
Aug 2, 2017, 8:50:05 PM (8 years ago)
Author:
Frederik Heber <frederik.heber@…>
Branches:
ForceAnnealing_with_BondGraph_continued
Children:
152599
Parents:
a78360
Message:

Removed DoOutput param from ForceAnnealing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/MoleculeAction/ForceAnnealingAction.def

    ra78360 r208b60  
    1919// ValueStorage by the token "Z" -> first column: int, Z, "Z"
    2020// "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value
    21 #define paramtypes (boost::filesystem::path)(double)(unsigned int)(bool)(int)(double)(bool)
    22 #define paramtokens ("forces-file")("deltat")("steps")("output-every-step")("max-distance")("damping-factor")("use-bondgraph")
    23 #define paramdescriptions ("file containing")("basic step width to be used")("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")("damping factor for decreasing the shift with bond graph distance from the causing site")("whether annealing should take place focusing on atoms alone or on the bonds (faster)")
    24 #define paramdefaults (PARAM_DEFAULT(""))(PARAM_DEFAULT(0.1))(NOPARAM_DEFAULT)(PARAM_DEFAULT("0"))(PARAM_DEFAULT(0))(PARAM_DEFAULT(0.5))(PARAM_DEFAULT(0))
    25 #define paramreferences (forcesfile)(deltat)(steps)(DoOutput)(MaxDistance)(DampingFactor)(UseBondGraph)
     21#define paramtypes (boost::filesystem::path)(double)(unsigned int)(int)(double)(bool)
     22#define paramtokens ("forces-file")("deltat")("steps")("max-distance")("damping-factor")("use-bondgraph")
     23#define paramdescriptions ("file containing")("basic step width to be used")("fixed number of optimization steps to be performed")("maximum distance to which bond graph is taken into account")("damping factor for decreasing the shift with bond graph distance from the causing site")("whether annealing should take place focusing on atoms alone or on the bonds (faster)")
     24#define paramdefaults (PARAM_DEFAULT(""))(PARAM_DEFAULT(0.1))(NOPARAM_DEFAULT)(PARAM_DEFAULT(0))(PARAM_DEFAULT(0.5))(PARAM_DEFAULT(0))
     25#define paramreferences (forcesfile)(deltat)(steps)(MaxDistance)(DampingFactor)(UseBondGraph)
    2626#define paramvalids \
    2727(DummyValidator< boost::filesystem::path >()) \
    2828(RangeValidator< double >(std::numeric_limits<double>::min(), std::numeric_limits<double>::max())) \
    2929(NotZeroValidator< unsigned int >()) \
    30 (DummyValidator<bool>()) \
    3130(DummyValidator< int >()) \
    3231(RangeValidator< double >(0,1)) \
Note: See TracChangeset for help on using the changeset viewer.