- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/RandomNumbersAction/SetRandomNumbersEngineAction.def
r043598 r6ba9ba 10 10 #include "Parameters/Validators/Specific/RandomNumberValidators.hpp" 11 11 #include "Parameters/Validators/Specific/KeyValueValidator.hpp" 12 #include "Parameters/Specifics/KeyValuePair.hpp"13 12 14 13 // i.e. there is an integer with variable name Z that can be found in 15 14 // ValueStorage by the token "Z" -> first column: int, Z, "Z" 16 15 // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value 17 #define paramtypes (std::string)( KeyValuePair)16 #define paramtypes (std::string)(std::string) 18 17 #define paramtokens ("set-random-number-engine")("random-number-engine-parameters") 19 18 #define paramdescriptions ("name of the pseudo-random engine from boost::random")("seed of the pseudo-random number sequence") 20 #define paramdefaults (NOPARAM_DEFAULT)(PARAM_DEFAULT( KeyValuePair("seed=-1")))19 #define paramdefaults (NOPARAM_DEFAULT)(PARAM_DEFAULT(std::string("seed=-1"))) 21 20 #define paramreferences (engine_type)(parameters) 22 21 #define paramvalids \
Note:
See TracChangeset
for help on using the changeset viewer.