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.
21 lines
540 B
21 lines
540 B
#ifndef STORM_MODELS_SPARSE_STATEANNOTATION_H_
|
|
#define STORM_MODELS_SPARSE_STATEANNOTATION_H_
|
|
|
|
#include "storm/storage/sparse/StateType.h"
|
|
|
|
namespace storm {
|
|
namespace models {
|
|
namespace sparse {
|
|
|
|
class StateAnnotation {
|
|
public:
|
|
virtual ~StateAnnotation() = default;
|
|
|
|
virtual std::string getStateInfo(storm::storage::sparse::state_type const& state) const = 0;
|
|
};
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif /* STORM_MODELS_SPARSE_STATEANNOTATION_H_ */
|