this->addOption(storm::settings::OptionBuilder(moduleName,exportResultOptionName,false,"A path to a file where the parametric result should be saved.")
@ -41,6 +42,8 @@ namespace storm {
this->addOption(storm::settings::OptionBuilder(moduleName,validateAssumptions,false,"Sets whether assumptions made in monotonicity analysis are validated").build());
this->addOption(storm::settings::OptionBuilder(moduleName,samplesMonotonicityAnalysis,false,"Sets whether monotonicity should be checked on samples")
.addArgument(storm::settings::ArgumentBuilder::createUnsignedIntegerArgument("mon-samples","The number of samples taken in monotonicity-analysis can be given, default is 0, no samples").setDefaultValueUnsignedInteger(0).build()).build());
this->addOption(storm::settings::OptionBuilder(moduleName,precision,false,"Sets precision of monotonicity checking on samples")
.addArgument(storm::settings::ArgumentBuilder::createDoubleArgument("mon-precision","The precision of checking monotonicity on samples, default is 1e-6").setDefaultValueDouble(0.000001).build()).build());