this->addOption(storm::settings::OptionBuilder(moduleName,exportResultOptionName,false,"A path to a file where the parametric result should be saved.")
@ -36,8 +37,11 @@ namespace storm {
this->addOption(storm::settings::OptionBuilder(moduleName,samplesGraphPreservingOptionName,false,"Sets whether it can be assumed that the samples are graph-preserving.").build());
this->addOption(storm::settings::OptionBuilder(moduleName,sampleExactOptionName,false,"Sets whether to sample using exact arithmetic.").build());
this->addOption(storm::settings::OptionBuilder(moduleName,monotonicityAnalysis,false,"Sets whether monotonicity analysis is done").build());
this->addOption(storm::settings::OptionBuilder(moduleName,sccElimination,false,"Sets whether SCCs should be eliminated").build());
this->addOption(storm::settings::OptionBuilder(moduleName,sccElimination,false,"Sets whether SCCs should be eliminated in the monotonicity analysis").build());
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());