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.
26 lines
814 B
26 lines
814 B
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "storm/abstraction/ExplicitGameStrategy.h"
|
|
|
|
namespace storm {
|
|
namespace abstraction {
|
|
|
|
class ExplicitGameStrategyPair {
|
|
public:
|
|
ExplicitGameStrategyPair(uint64_t numberOfPlayer1States, uint64_t numberOfPlayer2States);
|
|
ExplicitGameStrategyPair(ExplicitGameStrategy&& player1Strategy, ExplicitGameStrategy&& player2Strategy);
|
|
|
|
ExplicitGameStrategy& getPlayer1Strategy();
|
|
ExplicitGameStrategy const& getPlayer1Strategy() const;
|
|
ExplicitGameStrategy& getPlayer2Strategy();
|
|
ExplicitGameStrategy const& getPlayer2Strategy() const;
|
|
|
|
private:
|
|
ExplicitGameStrategy player1Strategy;
|
|
ExplicitGameStrategy player2Strategy;
|
|
};
|
|
|
|
}
|
|
}
|