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
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();
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|