21 lines
617 B
21 lines
617 B
#include "src/storage/sparse/StateValuations.h"
|
|
|
|
namespace storm {
|
|
namespace storage {
|
|
namespace sparse {
|
|
|
|
StateValuations::StateValuations(state_type const& numberOfStates) : valuations(numberOfStates) {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
StateValuations::~StateValuations() {
|
|
// Intentionally left empty.
|
|
}
|
|
|
|
std::string StateValuations::stateInfo(state_type const& state) const {
|
|
return valuations[state].toString();
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|