Storm
A Modern Probabilistic Model Checker
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
GameBddResult.cpp
Go to the documentation of this file.
3
4namespace storm::gbar {
5namespace abstraction {
6
7template<storm::dd::DdType DdType>
8GameBddResult<DdType>::GameBddResult() : bdd(), numberOfPlayer2Variables(0) {
9 // Intentionally left empty.
10}
11
12template<storm::dd::DdType DdType>
13GameBddResult<DdType>::GameBddResult(storm::dd::Bdd<DdType> const& gameBdd, uint_fast64_t numberOfPlayer2Variables)
14 : bdd(gameBdd), numberOfPlayer2Variables(numberOfPlayer2Variables) {
15 // Intentionally left empty.
16}
17
20
21} // namespace abstraction
22} // namespace storm::gbar