Storm
A Modern Probabilistic Model Checker
Loading...
Searching...
No Matches
RewardModelInformation.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5namespace storm {
6namespace builder {
7
9 public:
10 RewardModelInformation(std::string const& name, bool stateRewards, bool stateActionRewards, bool transitionRewards);
11
12 std::string const& getName() const;
13 bool hasStateRewards() const;
14 bool hasStateActionRewards() const;
15 bool hasTransitionRewards() const;
16
17 void setHasStateRewards();
20
21 private:
22 std::string name;
23 bool stateRewards;
24 bool stateActionRewards;
25 bool transitionRewards;
26};
27
28} // namespace builder
29} // namespace storm
LabParser.cpp.
Definition cli.cpp:18