#pragma once #include "storm/storage/dd/Bdd.h" namespace storm { namespace abstraction { namespace prism { template struct GameBddResult { GameBddResult(); GameBddResult(storm::dd::Bdd const& gameBdd, uint_fast64_t numberOfPlayer2Variables); storm::dd::Bdd bdd; uint_fast64_t numberOfPlayer2Variables; }; } } }