-
Notifications
You must be signed in to change notification settings - Fork 13
/
PbSolver.h
159 lines (128 loc) · 6.76 KB
/
PbSolver.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/**************************************************************************************[PbSolver.h]
Copyright (c) 2005-2010, Niklas Een, Niklas Sorensson
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
**************************************************************************************************/
#ifndef PbSolver_h
#define PbSolver_h
#include "minisat/mtl/Vec.h"
#include "minisat/simp/SimpSolver.h"
#include "Map.h"
#include "StackAlloc.h"
using Minisat::Var;
using Minisat::Lit;
using Minisat::SimpSolver;
using Minisat::lbool;
using Minisat::mkLit;
using Minisat::lit_Undef;
//=================================================================================================
// Linear -- a class for storing pseudo-boolean constraints:
class Linear {
int orig_size; // Allocated terms in constraint.
public:
int size; // Terms in constraint.
Int lo, hi; // Sum should be in interval [lo,hi] (inclusive).
private:
char data[0]; // (must be last element of the struct)
public:
// NOTE: Cannot be used by normal 'new' operator!
Linear(const vec<Lit>& ps, const vec<Int>& Cs, Int low, Int high) {
orig_size = size = ps.size(), lo = low, hi = high;
char* p = data;
for (int i = 0; i < ps.size(); i++) *(Lit*)p = ps[i], p += sizeof(Lit);
for (int i = 0; i < Cs.size(); i++) new ((Int*)p) Int(Cs[i]), p += sizeof(Int); }
~Linear()
{
for (int i = 0; i < size; i++)
(*this)(i).~Int();
}
Lit operator [] (int i) const { return *(Lit*)(data + sizeof(Lit)*i); }
Int operator () (int i) const { return *(Int*)(data + sizeof(Lit)*orig_size + sizeof(Int)*i); }
Lit& operator [] (int i) { return *(Lit*)(data + sizeof(Lit)*i); }
Int& operator () (int i) { return *(Int*)(data + sizeof(Lit)*orig_size + sizeof(Int)*i); }
};
//=================================================================================================
// PbSolver -- Pseudo-boolean solver (linear boolean constraints):
class PbSolver {
protected:
SimpSolver sat_solver; // Underlying SAT solver.
vec<Lit> trail; // Chronological assignment stack.
StackAlloc<char*> mem; // Used to allocate the 'Linear' constraints stored in 'constrs' (other 'Linear's, such as the goal function, are allocated with 'xmalloc()')
public:
vec<Linear*> constrs; // Vector with all constraints.
Linear* goal; // Non-normalized goal function (used in optimization). NULL means no goal function specified. NOTE! We are always minimizing.
protected:
vec<int> n_occurs; // Lit -> int: Number of occurrences.
vec<vec<int> > occur; // Lit -> vec<int>: Occur lists. Left empty until 'setupOccurs()' is called.
int propQ_head; // Head of propagation queue (index into 'trail').
Minisat::vec<Lit> tmp_clause;
// Main internal methods:
//
bool propagate(Linear& c);
void propagate();
bool addUnit (Lit p) {
if (value(p) == l_Undef) trail.push(p);
return sat_solver.addClause(p); }
bool addClause(const vec<Lit>& ps){
tmp_clause.clear(); for (int i = 0; i < ps.size(); i++) tmp_clause.push(ps[i]);
return sat_solver.addClause_(tmp_clause); }
bool normalizePb(vec<Lit>& ps, vec<Int>& Cs, Int& C);
void storePb (const vec<Lit>& ps, const vec<Int>& Cs, Int lo, Int hi);
void setupOccurs(); // Called on demand from 'propagate()'.
void findIntervals();
bool rewriteAlmostClauses();
bool convertPbs(bool first_call); // Called from 'solve()' to convert PB constraints to clauses.
public:
PbSolver(bool use_preprocessing = false)
: goal(NULL)
, propQ_head(0)
//, stats(sat_solver.stats_ref())
, declared_n_vars(-1)
, declared_n_constrs(-1)
, best_goalvalue(Int_MAX)
{
// Turn off preprocessing if wanted.
if (!use_preprocessing)
sat_solver.eliminate(true);
}
// Helpers (semi-internal):
//
lbool value(Var x) const { return sat_solver.value(x); }
lbool value(Lit p) const { return sat_solver.value(p); }
int nVars() const { return sat_solver.nVars(); }
int nConstrs() const { return constrs.size(); }
// Public variables:
//BasicSolverStats& stats;
void printStats();
int declared_n_vars; // Number of variables declared in file header (-1 = not specified).
int declared_n_constrs; // Number of constraints declared in file header (-1 = not specified).
int pb_n_vars; // Actual number of variables (before clausification).
int pb_n_constrs; // Actual number of constraints (before clausification).
Map<cchar*, int> name2index;
vec<cchar*> index2name;
vec<bool> best_model; // Best model found (size is 'pb_n_vars').
Int best_goalvalue; // Value of goal function for that model (or 'Int_MAX' if no models were found).
// Problem specification:
//
int getVar (cchar* name);
void allocConstrs(int n_vars, int n_constrs);
void addGoal (const vec<Lit>& ps, const vec<Int>& Cs);
bool addConstr (const vec<Lit>& ps, const vec<Int>& Cs, Int rhs, int ineq);
// Solve:
//
bool okay(void) { return sat_solver.okay(); }
enum solve_Command { sc_Minimize, sc_FirstSolution, sc_AllSolutions };
void solve(solve_Command cmd = sc_Minimize); // Returns best/first solution found or Int_MAX if UNSAT.
};
//=================================================================================================
#endif