/****************************************************************************** * Top contributors (to current version): * Tim King, Morgan Deters * * This file is part of the cvc5 project. * * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS * in the top-level source directory and their institutional affiliations. * All rights reserved. See the file COPYING in the top-level source * directory for licensing information. * **************************************************************************** * * [[ Add one-line brief description here ]] * * [[ Add lengthier description here ]] * \todo document this file */ #include "cvc5_private.h" #pragma once #include #include "theory/arith/arithvar.h" #include "theory/arith/delta_rational.h" #include "util/dense_map.h" #include "util/maybe.h" #include "util/rational.h" #include "util/statistics_stats.h" namespace cvc5 { namespace theory { namespace arith { enum LinResult { LinUnknown, /* Unknown error */ LinFeasible, /* Relaxation is feasible */ LinInfeasible, /* Relaxation is infeasible/all integer branches closed */ LinExhausted }; enum MipResult { MipUnknown, /* Unknown error */ MipBingo, /* Integer feasible */ MipClosed, /* All integer branches closed */ BranchesExhausted, /* Exhausted number of branches */ PivotsExhauasted, /* Exhausted number of pivots */ ExecExhausted /* Exhausted total operations */ }; std::ostream& operator<<(std::ostream& out, MipResult res); class ApproximateStatistics { public: ApproximateStatistics(); IntStat d_branchMaxDepth; IntStat d_branchesMaxOnAVar; TimerStat d_gaussianElimConstructTime; IntStat d_gaussianElimConstruct; AverageStat d_averageGuesses; }; class NodeLog; class TreeLog; class ArithVariables; class CutInfo; class ApproximateSimplex{ public: static bool enabled(); /** * If glpk is enabled, return a subclass that can do something. * If glpk is disabled, return a subclass that does nothing. */ static ApproximateSimplex* mkApproximateSimplexSolver(const ArithVariables& vars, TreeLog& l, ApproximateStatistics& s); ApproximateSimplex(const ArithVariables& v, TreeLog& l, ApproximateStatistics& s); virtual ~ApproximateSimplex(){} /* the maximum pivots allowed in a query. */ void setPivotLimit(int pl); /* maximum branches allowed on a variable */ void setBranchOnVariableLimit(int bl); /* maximum branches allowed on a variable */ void setBranchingDepth(int bd); /** A result is either sat, unsat or unknown.*/ struct Solution { DenseSet newBasis; DenseMap newValues; Solution() : newBasis(), newValues(){} }; virtual ArithVar getBranchVar(const NodeLog& nl) const = 0; /** Sets a maximization criteria for the approximate solver.*/ virtual void setOptCoeffs(const ArithRatPairVec& ref) = 0; virtual ArithRatPairVec heuristicOptCoeffs() const = 0; virtual LinResult solveRelaxation() = 0; virtual Solution extractRelaxation() const = 0; virtual MipResult solveMIP(bool activelyLog) = 0; virtual Solution extractMIP() const = 0; virtual std::vector getValidCuts(const NodeLog& node) = 0; virtual void tryCut(int nid, CutInfo& cut) = 0; /** UTILITIES FOR DEALING WITH ESTIMATES */ static const double SMALL_FIXED_DELTA; static const double TOLERENCE; /** Returns true if two doubles are roughly equal based on TOLERENCE and SMALL_FIXED_DELTA.*/ static bool roughlyEqual(double a, double b); /** * Estimates a double as a Rational using continued fraction expansion that * cuts off the estimate once the value is approximately zero. * This is designed for removing rounding artifacts. */ static Maybe estimateWithCFE(double d); static Maybe estimateWithCFE(double d, const Integer& D); /** * Converts a rational to a continued fraction expansion representation * using a maximum number of expansions equal to depth as long as the expression * is not roughlyEqual() to 0. */ static std::vector rationalToCfe(const Rational& q, int depth); /** Converts a continued fraction expansion representation to a rational. */ static Rational cfeToRational(const std::vector& exp); /** Estimates a rational as a continued fraction expansion.*/ static Rational estimateWithCFE(const Rational& q, const Integer& K); virtual double sumInfeasibilities(bool mip) const = 0; protected: const ArithVariables& d_vars; TreeLog& d_log; ApproximateStatistics& d_stats; /* the maximum pivots allowed in a query. */ int d_pivotLimit; /* maximum branches allowed on a variable */ int d_branchLimit; /* maxmimum branching depth allowed.*/ int d_maxDepth; /* Default denominator for diophatine approximation, 2^{26} .*/ static Integer s_defaultMaxDenom; };/* class ApproximateSimplex */ } // namespace arith } // namespace theory } // namespace cvc5