.. _program_listing_file_include_mathopt_lcp_lcp.h: Program Listing for File lcp.h ============================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/mathopt/lcp/lcp.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 namespace Data::LCP { enum class Algorithms { MIP, PATH, MINLP }; } // namespace Data::LCP namespace std { string to_string(Data::LCP::Algorithms al); }; // namespace std namespace MathOpt { class LCP { protected: // Essential data environment for MIP/LP solves GRBEnv * Env{}; unsigned int ObjType = 0; arma::vec c_Obj; arma::sp_mat Q_Obj; bool MadeObjective = false; arma::sp_mat M; arma::vec q; perps Compl; unsigned long int LeadStart{1}; unsigned long int LeadEnd{0}; unsigned long int NumberLeader{0}; bool PureMIP = true; arma::sp_mat A = {}; arma::vec b = {}; bool MadeRlxdModel{false}; unsigned long int nR{}; unsigned long int nC{}; VariableBounds BoundsX; GRBModel RelaxedModel; void defConst(GRBEnv *env); void makeRelaxed(); void setMIPObjective(GRBModel &convexModel); std::unique_ptr getMIP(bool indicators = false); std::unique_ptr getMINLP(); std::unique_ptr Ai; std::unique_ptr bi; unsigned long int convexHull(arma::sp_mat &A, arma::vec &b); public: double Eps{1e-6}; LCP() = delete; explicit LCP(GRBEnv *e) : Env{e}, RelaxedModel(*e){}; LCP(GRBEnv * env, arma::sp_mat &M, arma::vec & q, unsigned long int leadStart, unsigned leadEnd, arma::sp_mat &A, arma::vec & b); LCP(GRBEnv *env, arma::sp_mat &M, arma::vec &q, perps &Compl, arma::sp_mat &A, arma::vec &b); LCP(GRBEnv *env, const Game::NashGame &N); ~LCP() = default; // Fields getters inline arma::sp_mat getM() const { return this->M; } inline arma::vec getq() const { return this->q; } inline unsigned long int getNumberLeader() const { return this->NumberLeader; } const inline unsigned long int getLStart() const { return LeadStart; } const inline arma::sp_mat getA() const { return this->A; } const inline arma::vec getb() const { return this->b; } const inline unsigned long int getLEnd() const { return LeadEnd; } inline perps getCompl() const { return this->Compl; } inline unsigned long int getNumCols() const { return this->nC; }; inline unsigned long int getNumRows() const { return this->nR; }; inline bool hasCommonConstraints() const { return this->A.n_nonzero > 0; }; bool extractSols(GRBModel *model, arma::vec &z, arma::vec &x, bool extractZ = false) const; ZEROStatus solve(Data::LCP::Algorithms algo, arma::vec & xSol, arma::vec & zSol, double timeLimit, unsigned long int threads, double & objective, unsigned long int solLimit = 1); std::unique_ptr LCPasMIP(bool solve = false, double timeLimit = -1, unsigned long int threads = 1, unsigned long int solLimit = 1); std::unique_ptr LCPasMILP(const arma::sp_mat &C, const arma::vec & c, const arma::vec & x_minus_i, bool solve = false); std::unique_ptr LCPasMIQP(const arma::sp_mat &Q, const arma::sp_mat &C, const arma::vec & c, const arma::vec & x_minus_i, bool solve = false); ZEROStatus solvePATH(double timelimit, arma::vec &x, arma::vec &z, bool verbose = true); void save(const std::string &filename, bool erase = true) const; long int load(const std::string &filename, long int pos = 0); virtual void makeQP(MathOpt::QP_Objective &QP_obj, MathOpt::QP_Param &QP); void addCustomCuts(const arma::sp_mat &A, const arma::vec &b); bool containsCut(const arma::vec &LHS, const double RHS, double tol = 1e-5); arma::vec zFromX(const arma::vec &x); void processBounds(); bool setMIPLinearObjective(const arma::vec &c); bool setMIPQuadraticObjective(const arma::vec &c, const arma::sp_mat &Q); bool setMIPFeasibilityObjective(); }; } // namespace MathOpt #include "poly_lcp.h"