You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
392 B

#ifndef STORM_MODELS_MODELTYPE_H_
#define STORM_MODELS_MODELTYPE_H_
#include <ostream>
namespace storm {
namespace models {
// All supported model types.
enum class ModelType {
Dtmc, Ctmc, Mdp, MarkovAutomaton, S2pg
};
std::ostream& operator<<(std::ostream& os, ModelType const& type);
}
}
#endif /* STORM_MODELS_MODELTYPE_H_ */