GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/arith/soi_simplex.h Lines: 2 17 11.8 %
Date: 2021-11-07 Branches: 0 10 0.0 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Tim King, Morgan Deters, Mathias Preiner
4
 *
5
 * This file is part of the cvc5 project.
6
 *
7
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
8
 * in the top-level source directory and their institutional affiliations.
9
 * All rights reserved.  See the file COPYING in the top-level source
10
 * directory for licensing information.
11
 * ****************************************************************************
12
 *
13
 * This is an implementation of the Simplex Module for the Simplex for
14
 * DPLL(T) decision procedure.
15
 *
16
 * This implements the Simplex module for the Simpelx for DPLL(T) decision
17
 * procedure.
18
 * See the Simplex for DPLL(T) technical report for more background.(citation?)
19
 * This shares with the theory a Tableau, and a PartialModel that:
20
 *  - satisfies the equalities in the Tableau, and
21
 *  - the assignment for the non-basic variables satisfies their bounds.
22
 * This is required to either produce a conflict or satisifying PartialModel.
23
 * Further, we require being told when a basic variable updates its value.
24
 *
25
 * During the Simplex search we maintain a queue of variables.
26
 * The queue is required to contain all of the basic variables that voilate
27
 * their bounds.
28
 * As elimination from the queue is more efficient to be done lazily,
29
 * we do not maintain that the queue of variables needs to be only basic
30
 * variables or only variables that satisfy their bounds.
31
 *
32
 * The simplex procedure roughly follows Alberto's thesis. (citation?)
33
 * There is one round of selecting using a heuristic pivoting rule.
34
 * (See PreferenceFunction Documentation for the available options.)
35
 * The non-basic variable is the one that appears in the fewest pivots.
36
 * (Bruno says that Leonardo invented this first.)
37
 * After this, Bland's pivot rule is invoked.
38
 *
39
 * During this proccess, we periodically inspect the queue of variables to
40
 * 1) remove now extraneous extries,
41
 * 2) detect conflicts that are "waiting" on the queue but may not be detected
42
 *    by the current queue heuristics, and
43
 * 3) detect multiple conflicts.
44
 *
45
 * Conflicts are greedily slackened to use the weakest bounds that still
46
 * produce the conflict.
47
 *
48
 * Extra things tracked atm: (Subject to change at Tim's whims)
49
 * - A superset of all of the newly pivoted variables.
50
 * - A queue of additional conflicts that were discovered by Simplex.
51
 *   These are theory valid and are currently turned into lemmas
52
 */
53
54
#include "cvc5_private.h"
55
56
#pragma once
57
58
#include "theory/arith/linear_equality.h"
59
#include "theory/arith/simplex.h"
60
#include "theory/arith/simplex_update.h"
61
#include "util/dense_map.h"
62
#include "util/statistics_stats.h"
63
64
namespace cvc5 {
65
namespace theory {
66
namespace arith {
67
68
15268
class SumOfInfeasibilitiesSPD : public SimplexDecisionProcedure {
69
public:
70
 SumOfInfeasibilitiesSPD(Env& env,
71
                         LinearEqualityModule& linEq,
72
                         ErrorSet& errors,
73
                         RaiseConflict conflictChannel,
74
                         TempVarMalloc tvmalloc);
75
76
 Result::Sat findModel(bool exactResult) override;
77
78
 // other error variables are dropping
79
 WitnessImprovement dualLikeImproveError(ArithVar evar);
80
 WitnessImprovement primalImproveError(ArithVar evar);
81
82
private:
83
  /** The current sum of infeasibilities variable. */
84
  ArithVar d_soiVar;
85
86
  // dual like
87
  // - found conflict
88
  // - satisfied error set
89
  Result::Sat sumOfInfeasibilities();
90
91
  // static const uint32_t PENALTY = 4;
92
  // DenseMultiset d_scores;
93
  // void decreasePenalties(){ d_scores.removeOneOfEverything(); }
94
  // uint32_t penalty(ArithVar x) const { return d_scores.count(x); }
95
  // void setPenalty(ArithVar x, WitnessImprovement w){
96
  //   if(improvement(w)){
97
  //     if(d_scores.count(x) > 0){
98
  //       d_scores.removeAll(x);
99
  //     }
100
  //   }else{
101
  //     d_scores.setCount(x, PENALTY);
102
  //   }
103
  // }
104
105
  int32_t d_pivotBudget;
106
  // enum PivotImprovement {
107
  //   ErrorDropped,
108
  //   NonDegenerate,
109
  //   HeuristicDegenerate,
110
  //   BlandsDegenerate
111
  // };
112
113
  WitnessImprovement d_prevWitnessImprovement;
114
  uint32_t d_witnessImprovementInARow;
115
116
  uint32_t degeneratePivotsInARow() const;
117
118
  static const uint32_t s_focusThreshold = 6;
119
  static const uint32_t s_maxDegeneratePivotsBeforeBlandsOnLeaving = 100;
120
  static const uint32_t s_maxDegeneratePivotsBeforeBlandsOnEntering = 10;
121
122
  DenseMap<uint32_t> d_leavingCountSinceImprovement;
123
  void increaseLeavingCount(ArithVar x){
124
    if(!d_leavingCountSinceImprovement.isKey(x)){
125
      d_leavingCountSinceImprovement.set(x,1);
126
    }else{
127
      (d_leavingCountSinceImprovement.get(x))++;
128
    }
129
  }
130
  LinearEqualityModule::UpdatePreferenceFunction selectLeavingFunction(ArithVar x){
131
    bool useBlands = d_leavingCountSinceImprovement.isKey(x) &&
132
      d_leavingCountSinceImprovement[x] >= s_maxDegeneratePivotsBeforeBlandsOnEntering;
133
    if(useBlands) {
134
      return &LinearEqualityModule::preferWitness<false>;
135
    } else {
136
      return &LinearEqualityModule::preferWitness<true>;
137
    }
138
  }
139
140
  bool debugSOI(WitnessImprovement w, std::ostream& out, int instance) const;
141
142
  void debugPrintSignal(ArithVar updated) const;
143
144
  ArithVarVec d_sgnDisagreements;
145
146
  void logPivot(WitnessImprovement w);
147
148
  void updateAndSignal(const UpdateInfo& selected, WitnessImprovement w);
149
150
  UpdateInfo selectUpdate(LinearEqualityModule::UpdatePreferenceFunction upf,
151
                          LinearEqualityModule::VarPreferenceFunction bpf);
152
153
154
  // UpdateInfo selectUpdateForDualLike(ArithVar basic){
155
  //   TimerStat::CodeTimer codeTimer(d_statistics.d_selectUpdateForDualLike);
156
157
  //   LinearEqualityModule::UpdatePreferenceFunction upf =
158
  //     &LinearEqualityModule::preferWitness<true>;
159
  //   LinearEqualityModule::VarPreferenceFunction bpf =
160
  //     &LinearEqualityModule::minVarOrder;
161
  //   return selectPrimalUpdate(basic, upf, bpf);
162
  // }
163
164
  // UpdateInfo selectUpdateForPrimal(ArithVar basic, bool useBlands){
165
  //   TimerStat::CodeTimer codeTimer(d_statistics.d_selectUpdateForPrimal);
166
167
  //   LinearEqualityModule::UpdatePreferenceFunction upf = useBlands ?
168
  //     &LinearEqualityModule::preferWitness<false>:
169
  //     &LinearEqualityModule::preferWitness<true>;
170
171
  //   LinearEqualityModule::VarPreferenceFunction bpf = useBlands ?
172
  //     &LinearEqualityModule::minVarOrder :
173
  //     &LinearEqualityModule::minRowLength;
174
  //   bpf = &LinearEqualityModule::minVarOrder;
175
176
  //   return selectPrimalUpdate(basic, upf, bpf);
177
  // }
178
  // WitnessImprovement selectFocusImproving() ;
179
  WitnessImprovement soiRound();
180
  WitnessImprovement SOIConflict();
181
  std::vector< ArithVarVec > greedyConflictSubsets();
182
  bool generateSOIConflict(const ArithVarVec& subset);
183
184
  // WitnessImprovement focusUsingSignDisagreements(ArithVar basic);
185
  // WitnessImprovement focusDownToLastHalf();
186
  // WitnessImprovement adjustFocusShrank(const ArithVarVec& drop);
187
  // WitnessImprovement focusDownToJust(ArithVar v);
188
189
190
  void adjustFocusAndError(const UpdateInfo& up, const AVIntPairVec& focusChanges);
191
192
  /**
193
   * This is the main simplex for DPLL(T) loop.
194
   * It runs for at most maxIterations.
195
   *
196
   * Returns true iff it has found a conflict.
197
   * d_conflictVariable will be set and the conflict for this row is reported.
198
   */
199
  bool searchForFeasibleSolution(uint32_t maxIterations);
200
201
  bool initialProcessSignals(){
202
    TimerStat &timer = d_statistics.d_initialSignalsTime;
203
    IntStat& conflictStat  = d_statistics.d_initialConflicts;
204
    return standardProcessSignals(timer, conflictStat);
205
  }
206
207
  void quickExplain();
208
  DenseSet d_qeInSoi;
209
  DenseSet d_qeInUAndNotInSoi;
210
  ArithVarVec d_qeConflict;
211
  ArithVarVec d_qeGreedyOrder;
212
  sgn_table d_qeSgns;
213
214
  uint32_t quickExplainRec(uint32_t cEnd, uint32_t uEnd);
215
  void qeAddRange(uint32_t begin, uint32_t end);
216
  void qeRemoveRange(uint32_t begin, uint32_t end);
217
  void qeSwapRange(uint32_t N, uint32_t r, uint32_t s);
218
219
  unsigned trySet(const ArithVarVec& set);
220
  unsigned tryAllSubsets(const ArithVarVec& set, unsigned depth, ArithVarVec& tmp);
221
222
  /** These fields are designed to be accessible to TheoryArith methods. */
223
15268
  class Statistics {
224
  public:
225
    TimerStat d_initialSignalsTime;
226
    IntStat d_initialConflicts;
227
228
    IntStat d_soiFoundUnsat;
229
    IntStat d_soiFoundSat;
230
    IntStat d_soiMissed;
231
232
    IntStat d_soiConflicts;
233
    IntStat d_hasToBeMinimal;
234
    IntStat d_maybeNotMinimal;
235
236
    TimerStat d_soiTimer;
237
    TimerStat d_soiFocusConstructionTimer;
238
    TimerStat d_soiConflictMinimization;
239
    TimerStat d_selectUpdateForSOI;
240
241
    ReferenceStat<uint32_t> d_finalCheckPivotCounter;
242
243
    Statistics(const std::string& name, uint32_t& pivots);
244
  } d_statistics;
245
};/* class FCSimplexDecisionProcedure */
246
247
}  // namespace arith
248
}  // namespace theory
249
}  // namespace cvc5