#pragma once #include #include #include #include "storm-conv/settings/modules/JaniExportSettings.h" #include "storm/storage/jani/ModelFeatures.h" namespace storm { namespace converter { struct JaniConversionOptions { JaniConversionOptions(); JaniConversionOptions(storm::settings::modules::JaniExportSettings const& settings); /// (Automaton,Variable)-pairs that will be transformed to location variables of the respective automaton. std::vector> locationVariables; /// If set, the model might have transient assignments to the edges bool edgeAssignments; /// If set, the model is transformed into a single automaton bool flatten; /// If set, constants in expressions are substituted with their definition bool substituteConstants; /// If given, the model will get this name boost::optional modelName; /// Only these model features are allowed in the output storm::jani::ModelFeatures allowedModelFeatures; }; } }