Storm 1.14.0.1
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
StateAnnotation.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
6
7namespace storm {
8namespace models {
9namespace sparse {
10
12 public:
13 virtual ~StateAnnotation() = default;
14
15 virtual std::string getStateInfo(storm::storage::sparse::state_type const& state) const = 0;
16};
17
18} // namespace sparse
19} // namespace models
20} // namespace storm
virtual std::string getStateInfo(storm::storage::sparse::state_type const &state) const =0