.. _program_listing_file_include_games_ipg.h: Program Listing for File ipg.h ============================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/games/ipg.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* ############################################# * This file is part of * ZERO * * Copyright (c) 2020 * Released under the Creative Commons * CC BY-NC-SA 4.0 License * * Find out more at * https://github.com/ds4dm/ZERO * #############################################*/ #pragma once #include "zero.h" #include #include #include #include #include #include namespace Data::IPG { enum class Algorithms { CutAndPlay, ZERORegrets }; enum class CutsAggressiveness { NotEvenTry, NoThanks, KeepItCool, Truculent }; enum class Objectives { Feasibility, Quadratic, Linear, ZERORegrets_SocialCost, ZERORegrets_PlayerOne }; class DataObject : public ZEROAlgorithmData { public: Attr CutAggressiveness = { Data::IPG::CutsAggressiveness::KeepItCool}; Attr Algorithm = { Data::IPG::Algorithms::CutAndPlay}; Attr LCPSolver; Attr Objective = { Data::IPG::Objectives::Linear}; Attr>> Cuts; Attr Presolve = {true}; DataObject() : LCPSolver{static_cast(0)} {}; }; } // namespace Data::IPG namespace Game { class IPG : public AbstractGame { protected: // Datafields std::vector> PlayersIP{}; std::vector PlayerVariables{}; bool Finalized{false}; std::vector Solution; double SocialWelfare; private: std::shared_ptr Algorithm{}; protected: virtual void preFinalize() = 0; virtual void postFinalize() = 0; public: // functions friend class Algorithms::IPG::Algorithm; friend class Algorithms::IPG::CutAndPlay; friend class Algorithms::IPG::ZERORegrets; void finalize(); IPG(GRBEnv *env) { this->Env = env; }; IPG(GRBEnv *env, std::vector> players); void findNashEq() override; bool isSolved(double tol = 1e-5) const override; bool isPureStrategy(double tol = 1e-5) const override; std::vector getX() const { return this->Solution; } /*** * @brief Gets the SocialWelfare associated to the incumbent solution * @return The payoff value */ double getSocialWelfare() const { return this->SocialWelfare; } ZEROStatistics getStatistics() const { return this->Stats; } void setAlgorithm(Data::IPG::Algorithms algorithm) { this->Stats.AlgorithmData.Algorithm = algorithm; } void setPresolve(bool value) { this->Stats.AlgorithmData.Presolve=value; } void setLCPAlgorithm(const Data::LCP::Algorithms algo) { this->Stats.AlgorithmData.LCPSolver.set(algo); } void setGameObjective(const Data::IPG::Objectives obj) { this->Stats.AlgorithmData.Objective.set(obj); } void setCutsAggressiveness(const Data::IPG::CutsAggressiveness aggressiveness) { this->Stats.AlgorithmData.CutAggressiveness.set(aggressiveness); } }; } // namespace Game namespace std { string to_string(Data::IPG::Algorithms al); string to_string(Data::IPG::Objectives ob); string to_string(Data::IPG::CutsAggressiveness ct); }; // namespace std #include "algorithms/IPG/ipg_algorithms.h" #include "interfaces/ipg_models.h"