diff --git a/src/storm/logic/Coalition.cpp b/src/storm/logic/Coalition.cpp deleted file mode 100644 index baa0736c4..000000000 --- a/src/storm/logic/Coalition.cpp +++ /dev/null @@ -1,25 +0,0 @@ -#include "storm/logic/Coalition.h" - -namespace storm { - namespace logic { - - Coalition::Coalition(std::vector> playerIds) : playerIds(playerIds) { - // Intentionally left empty. - } - - std::vector> Coalition::getPlayerIds() const { - return playerIds; - } - - std::ostream& operator<<(std::ostream& stream, Coalition const& coalition) { - bool firstItem = true; - stream << "<<"; - for (auto const& id : coalition.playerIds) { - if(firstItem) { firstItem = false; } else { stream << ","; } - stream << id; - } - stream << ">> "; - return stream; - } - } -} diff --git a/src/storm/logic/Coalition.h b/src/storm/logic/Coalition.h deleted file mode 100644 index 9f3966dd1..000000000 --- a/src/storm/logic/Coalition.h +++ /dev/null @@ -1,32 +0,0 @@ -#ifndef STORM_LOGIC_COALITION_H_ -#define STORM_LOGIC_COALITION_H_ - -#include -#include - -#include -#include -#include "storm/storage/BoostTypes.h" -#include "storm/utility/OsDetection.h" - -namespace storm { - namespace logic { - - class Coalition { - public: - Coalition() = default; - Coalition(std::vector>); - Coalition(Coalition const& other) = default; - - std::vector> getPlayerIds() const; - - friend std::ostream& operator<<(std::ostream& stream, Coalition const& coalition); - - private: - std::vector> playerIds; - }; - } -} - - -#endif /* STORM_LOGIC_COALITION_H_ */