#ifndef STORM_STORAGE_PRISM_PROGRAM_H_ #define STORM_STORAGE_PRISM_PROGRAM_H_ #include #include #include #include #include #include #include "storm/storage/prism/Constant.h" #include "storm/storage/prism/Formula.h" #include "storm/storage/prism/Label.h" #include "storm/storage/prism/Module.h" #include "storm/storage/prism/RewardModel.h" #include "storm/storage/prism/SystemCompositionConstruct.h" #include "storm/storage/prism/InitialConstruct.h" #include "storm/storage/prism/Composition.h" #include "storm/utility/solver.h" #include "storm/utility/OsDetection.h" namespace storm { namespace jani { class Model; class Property; } namespace prism { class Program : public LocatedInformation { public: /*! * An enum for the different model types. */ enum class ModelType {UNDEFINED, DTMC, CTMC, MDP, CTMDP, MA}; enum class ValidityCheckLevel : unsigned {VALIDINPUT = 0, READYFORPROCESSING = 1}; /*! * Creates a program with the given model type, undefined constants, global variables, modules, reward * models, labels and initial states. * * @param manager The manager responsible for the variables and expressions of the program. * @param modelType The type of the program. * @param constants The constants of the program. * @param globalBooleanVariables The global boolean variables of the program. * @param globalIntegerVariables The global integer variables of the program. * @param formulas The formulas defined in the program. * @param modules The modules of the program. * @param actionToIndexMap A mapping of action names to their indices. * @param rewardModels The reward models of the program. * @param labels The labels defined for this program. * @param initialConstruct The initial construct of the program. If none, then an initial construct is built * using the initial values of the variables. * @param compositionConstruct If not none, specifies how the modules are composed for the full system. * If none, the regular parallel composition is assumed. * @param filename The filename in which the program is defined. * @param lineNumber The line number in which the program is defined. * @param finalModel If set to true, the program is checked for input-validity, as well as some post-processing. */ Program(std::shared_ptr manager, ModelType modelType, std::vector const& constants, std::vector const& globalBooleanVariables, std::vector const& globalIntegerVariables, std::vector const& formulas, std::vector const& modules, std::map const& actionToIndexMap, std::vector const& rewardModels, std::vector