this->addOption(storm::settings::OptionBuilder(moduleName,locationVariablesOptionName,true,"Variables to export in the location").addArgument(storm::settings::ArgumentBuilder::createStringArgument("variables","A comma separated list of automaton and local variable names seperated by a dot, e.g. A.x,B.y.").setDefaultValueString("").build()).build());
@ -32,6 +33,7 @@ namespace storm {
this->addOption(storm::settings::OptionBuilder(moduleName,compactJsonOptionName,false,"If set, the size of the resulting jani file will be reduced at the cost of (human-)readability.").build());
this->addOption(storm::settings::OptionBuilder(moduleName,eliminateArraysOptionName,false,"If set, transforms the model such that array variables/expressions are eliminated.").build());
this->addOption(storm::settings::OptionBuilder(moduleName,eliminateFunctionsOptionName,false,"If set, transforms the model such that functions are eliminated.").build());
this->addOption(storm::settings::OptionBuilder(moduleName,replaceUnassignedVariablesWithConstantsOptionName,false,"If set, local and global variables that are (a) not assigned to some value and (b) have a known initial value are replaced by constants.").build());