GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/prop/minisat/core/SolverTypes.h Lines: 140 160 87.5 %
Date: 2021-11-05 Branches: 67 190 35.3 %

Line Exec Source
1
/***********************************************************************************[SolverTypes.h]
2
Copyright (c) 2003-2006, Niklas Een, Niklas Sorensson
3
Copyright (c) 2007-2010, Niklas Sorensson
4
5
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6
associated documentation files (the "Software"), to deal in the Software without restriction,
7
including without limitation the rights to use, copy, modify, merge, publish, distribute,
8
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
9
furnished to do so, subject to the following conditions:
10
11
The above copyright notice and this permission notice shall be included in all copies or
12
substantial portions of the Software.
13
14
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
15
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
17
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
18
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19
**************************************************************************************************/
20
21
#include "cvc5_private.h"
22
23
#ifndef Minisat_SolverTypes_h
24
#define Minisat_SolverTypes_h
25
26
#include "base/check.h"
27
#include "base/output.h"
28
#include "prop/minisat/mtl/Alg.h"
29
#include "prop/minisat/mtl/Alloc.h"
30
#include "prop/minisat/mtl/IntTypes.h"
31
#include "prop/minisat/mtl/Map.h"
32
#include "prop/minisat/mtl/Vec.h"
33
34
namespace cvc5 {
35
namespace Minisat {
36
37
class Solver;
38
39
//=================================================================================================
40
// Variables, literals, lifted booleans, clauses:
41
42
43
// NOTE! Variables are just integers. No abstraction here. They should be chosen from 0..N,
44
// so that they can be used as array indices.
45
46
typedef int Var;
47
#define var_Undef (-1)
48
49
50
51
struct Lit {
52
    int     x;
53
54
    // Use this as a constructor:
55
    friend Lit mkLit(Var var, bool sign);
56
57
3745796898
    bool operator == (Lit p) const { return x == p.x; }
58
174284117
    bool operator != (Lit p) const { return x != p.x; }
59
34310064
    bool operator <  (Lit p) const { return x < p.x;  } // '<' makes p, ~p adjacent in the ordering.
60
};
61
62
63
67370356
inline  Lit  mkLit     (Var var, bool sign = false) { Lit p; p.x = var + var + (int)sign; return p; }
64
1158197534
inline  Lit  operator ~(Lit p)              { Lit q; q.x = p.x ^ 1; return q; }
65
inline  Lit  operator ^(Lit p, bool b)      { Lit q; q.x = p.x ^ (unsigned int)b; return q; }
66
1638705499
inline  bool sign      (Lit p)              { return p.x & 1; }
67
5200551740
inline  int  var       (Lit p)              { return p.x >> 1; }
68
69
// Mapping Literals to and from compact integers suitable for array indexing:
70
10201618
inline int toInt(Var v) { return v; }
71
170675953
inline int toInt(Lit p) { return p.x; }
72
14205
inline Lit toLit(int i)
73
{
74
  Lit p;
75
14205
  p.x = i;
76
14205
  return p;
77
}
78
79
//const Lit lit_Undef = mkLit(var_Undef, false);  // }- Useful special constants.
80
//const Lit lit_Error = mkLit(var_Undef, true );  // }
81
82
const Lit lit_Undef = { -2 };  // }- Useful special constants.
83
const Lit lit_Error = { -1 };  // }
84
85
//=================================================================================================
86
// Lifted booleans:
87
//
88
// NOTE: this implementation is optimized for the case when comparisons between
89
// values are mostly
90
//       between one variable and one constant. Some care had to be taken to
91
//       make sure that gcc does enough constant propagation to produce sensible
92
//       code, and this appears to be somewhat fragile unfortunately.
93
94
/*
95
  This is to avoid multiple definitions of l_True, l_False and l_Undef if using
96
  multiple copies of Minisat. IMPORTANT: if we you change the value of the
97
  constants so that it is not the same in all copies of Minisat this breaks!
98
 */
99
100
#ifndef l_True
101
#define l_True  (lbool((uint8_t)0)) // gcc does not do constant propagation if these are real constants.
102
#endif
103
104
#ifndef l_False
105
#define l_False (lbool((uint8_t)1))
106
#endif
107
108
#ifndef l_Undef
109
#define l_Undef (lbool((uint8_t)2))
110
#endif
111
112
class lbool {
113
    uint8_t value;
114
115
public:
116
2984583969
    explicit lbool(uint8_t v) : value(v) { }
117
118
595215
    lbool()       : value(0) { }
119
97039791
    explicit lbool(bool x) : value(!x) { }
120
121
1470807076
    bool  operator == (lbool b) const { return ((b.value&2) & (value&2)) | (!(b.value&2)&(value == b.value)); }
122
695829560
    bool  operator != (lbool b) const { return !(*this == b); }
123
1422362306
    lbool operator ^  (bool  b) const { return lbool((uint8_t)(value^(uint8_t)b)); }
124
125
    lbool operator&&(lbool b) const
126
    {
127
      uint8_t sel = (this->value << 1) | (b.value << 3);
128
      uint8_t v = (0xF7F755F4 >> sel) & 3;
129
      return lbool(v);
130
    }
131
132
    lbool operator || (lbool b) const {
133
        uint8_t sel = (this->value << 1) | (b.value << 3);
134
        uint8_t v   = (0xFCFCF400 >> sel) & 3;
135
        return lbool(v); }
136
137
    friend int   toInt  (lbool l);
138
    friend lbool toLbool(int   v);
139
};
140
inline int   toInt  (lbool l) { return l.value; }
141
inline lbool toLbool(int   v) { return lbool((uint8_t)v);  }
142
143
144
class Clause;
145
typedef RegionAllocator<uint32_t>::Ref CRef;
146
147
/* convenience printing functions */
148
149
150
inline std::ostream& operator <<(std::ostream& out, Minisat::Lit lit) {
151
  const char * s = (Minisat::sign(lit)) ? "~" : " ";
152
  out << s << Minisat::var(lit);
153
  return out;
154
}
155
156
inline std::ostream& operator <<(std::ostream& out, Minisat::vec<Minisat::Lit>& clause) {
157
  out << "clause:";
158
  for(int i = 0; i < clause.size(); ++i) {
159
    out << " " << clause[i];
160
  }
161
  out << ";";
162
  return out;
163
}
164
165
inline std::ostream& operator <<(std::ostream& out, Minisat::lbool val) {
166
  std::string val_str;
167
  if( val == l_False ) {
168
    val_str = "0";
169
  } else if (val == l_True ) {
170
    val_str = "1";
171
  } else { // unknown
172
    val_str = "_";
173
  }
174
175
  out << val_str;
176
  return out;
177
}
178
179
}  // namespace Minisat
180
}  // namespace cvc5
181
182
namespace cvc5 {
183
namespace Minisat{
184
185
//=================================================================================================
186
// Clause -- a simple class for representing a clause:
187
188
class Clause {
189
    struct {
190
        unsigned mark      : 2;
191
        unsigned removable : 1;
192
        unsigned has_extra : 1;
193
        unsigned reloced   : 1;
194
        unsigned size      : 27;
195
        unsigned level     : 32; }                            header;
196
    union { Lit lit; float act; uint32_t abs; CRef rel; } data[0];
197
198
    friend class ClauseAllocator;
199
200
    // NOTE: This constructor cannot be used directly (doesn't allocate enough memory).
201
    template<class V>
202
5748084
    Clause(const V& ps, bool use_extra, bool removable, int level) {
203
5748084
        header.mark      = 0;
204
5748084
        header.removable = removable;
205
5748084
        header.has_extra = use_extra;
206
5748084
        header.reloced   = 0;
207
5748084
        header.size      = ps.size();
208
5748084
        header.level     = level;
209
210
5748084
        for (int i = 0; i < ps.size(); i++) data[i].lit = ps[i];
211
212
5748084
        if (header.has_extra){
213
5748084
            if (header.removable)
214
687826
              data[header.size].act = 0;
215
            else
216
5060258
              calcAbstraction();
217
        }
218
5748084
    }
219
220
public:
221
7005491
    void calcAbstraction() {
222
7005491
      Assert(header.has_extra);
223
7005491
      uint32_t abstraction = 0;
224
28645708
      for (int i = 0; i < size(); i++)
225
21640217
        abstraction |= 1 << (var(data[i].lit) & 31);
226
7005491
      data[header.size].abs = abstraction;
227
7005491
    }
228
229
71847024
    int          level       ()      const   { return header.level; }
230
1086065769
    int          size        ()      const   { return header.size; }
231
59256
    void shrink(int i)
232
    {
233
59256
      Assert(i <= size());
234
59256
      if (header.has_extra) data[header.size - i] = data[header.size];
235
59256
      header.size -= i;
236
59256
    }
237
59256
    void         pop         ()              { shrink(1); }
238
38952509
    bool         removable   ()      const   { return header.removable; }
239
2554726
    bool         has_extra   ()      const   { return header.has_extra; }
240
59957814
    uint32_t     mark        ()      const   { return header.mark; }
241
3266011
    void         mark        (uint32_t m)    { header.mark = m; }
242
    const Lit&   last        ()      const   { return data[header.size-1].lit; }
243
244
6542356
    bool         reloced     ()      const   { return header.reloced; }
245
4440004
    CRef         relocation  ()      const   { return data[0].rel; }
246
2051072
    void         relocate    (CRef c)        { header.reloced = 1; data[0].rel = c; }
247
248
    // NOTE: somewhat unsafe to change the clause in-place! Must manually call 'calcAbstraction' afterwards for
249
    //       subsumption operations to behave correctly.
250
1702690946
    Lit&         operator [] (int i)         { return data[i].lit; }
251
52256829
    Lit          operator [] (int i) const   { return data[i].lit; }
252
5320102
    operator const Lit* (void) const         { return (Lit*)data; }
253
254
9243163
    float& activity()
255
    {
256
9243163
      Assert(header.has_extra);
257
9243163
      return data[header.size].act;
258
    }
259
    uint32_t abstraction() const
260
    {
261
      Assert(header.has_extra);
262
      return data[header.size].abs;
263
    }
264
265
    Lit          subsumes    (const Clause& other) const;
266
    void         strengthen  (Lit p);
267
};
268
269
270
//=================================================================================================
271
// ClauseAllocator -- a simple class for allocating memory for clauses:
272
273
274
const CRef CRef_Undef = RegionAllocator<uint32_t>::Ref_Undef;
275
const CRef CRef_Lazy  = RegionAllocator<uint32_t>::Ref_Undef - 1;
276
18352
class ClauseAllocator : public RegionAllocator<uint32_t>
277
{
278
6440963
    static int clauseWord32Size(int size, bool has_extra){
279
6440963
        return (sizeof(Clause) + (sizeof(Lit) * (size + (int)has_extra))) / sizeof(uint32_t); }
280
 public:
281
    bool extra_clause_field;
282
283
3019
    ClauseAllocator(uint32_t start_cap) : RegionAllocator<uint32_t>(start_cap), extra_clause_field(false){}
284
15338
    ClauseAllocator() : extra_clause_field(false){}
285
286
3019
    void moveTo(ClauseAllocator& to){
287
3019
        to.extra_clause_field = extra_clause_field;
288
3019
        RegionAllocator<uint32_t>::moveTo(to); }
289
290
    template<class Lits>
291
5748084
    CRef alloc(int level, const Lits& ps, bool removable = false)
292
    {
293
5748084
      Assert(sizeof(Lit) == sizeof(uint32_t));
294
5748084
      Assert(sizeof(float) == sizeof(uint32_t));
295
5748084
      bool use_extra = removable | extra_clause_field;
296
297
5748084
      CRef cid = RegionAllocator<uint32_t>::alloc(
298
          clauseWord32Size(ps.size(), use_extra));
299
5748084
      new (lea(cid)) Clause(ps, use_extra, removable, level);
300
301
5748084
      return cid;
302
    }
303
304
    // Deref, Load Effective Address (LEA), Inverse of LEA (AEL):
305
644475332
    Clause&       operator[](Ref r)       { return (Clause&)RegionAllocator<uint32_t>::operator[](r); }
306
14910550
    const Clause& operator[](Ref r) const { return (Clause&)RegionAllocator<uint32_t>::operator[](r); }
307
5748084
    Clause*       lea       (Ref r)       { return (Clause*)RegionAllocator<uint32_t>::lea(r); }
308
87123
    const Clause* lea       (Ref r) const { return (Clause*)RegionAllocator<uint32_t>::lea(r); }
309
    Ref           ael       (const Clause* t){ return RegionAllocator<uint32_t>::ael((uint32_t*)t); }
310
311
692879
    void free(CRef cid)
312
    {
313
692879
        Clause& c = operator[](cid);
314
692879
        RegionAllocator<uint32_t>::free(clauseWord32Size(c.size(), c.has_extra()));
315
692879
    }
316
317
    void reloc(CRef& cr, ClauseAllocator& to);
318
    // Implementation moved to Solver.cc.
319
};
320
321
322
//=================================================================================================
323
// OccLists -- a class for maintaining occurence lists with lazy deletion:
324
325
template<class Idx, class Vec, class Deleted>
326
30666
class OccLists
327
{
328
    vec<Vec>  occs;
329
    vec<char> dirty;
330
    vec<Idx>  dirties;
331
    Deleted   deleted;
332
333
 public:
334
30676
    OccLists(const Deleted& d) : deleted(d) {}
335
336
2841513
    void  init      (const Idx& idx){ occs.growTo(toInt(idx)+1); dirty.growTo(toInt(idx)+1, 0); }
337
    void  resizeTo  (const Idx& idx);
338
    // Vec&  operator[](const Idx& idx){ return occs[toInt(idx)]; }
339
156591715
    Vec&  operator[](const Idx& idx){ return occs[toInt(idx)]; }
340
433855
    Vec&  lookup    (const Idx& idx){ if (dirty[toInt(idx)]) clean(idx); return occs[toInt(idx)]; }
341
342
    void  cleanAll  ();
343
    void  clean     (const Idx& idx);
344
1814374
    void  smudge    (const Idx& idx){
345
1814374
        if (dirty[toInt(idx)] == 0){
346
599012
            dirty[toInt(idx)] = 1;
347
599012
            dirties.push(idx);
348
        }
349
1814374
    }
350
351
    void  clear(bool free = true){
352
        occs   .clear(free);
353
        dirty  .clear(free);
354
        dirties.clear(free);
355
    }
356
};
357
358
359
template<class Idx, class Vec, class Deleted>
360
5419938
void OccLists<Idx,Vec,Deleted>::cleanAll()
361
{
362
5856444
    for (int i = 0; i < dirties.size(); i++)
363
        // Dirties may contain duplicates so check here if a variable is already cleaned:
364
436506
        if (dirty[toInt(dirties[i])])
365
399953
            clean(dirties[i]);
366
5419938
    dirties.clear();
367
5419938
}
368
369
template<class Idx, class Vec, class Deleted>
370
3114
void OccLists<Idx,Vec,Deleted>::resizeTo(const Idx& idx)
371
{
372
3114
    int shrinkSize = occs.size() - (toInt(idx) + 1);
373
3114
    occs.shrink(shrinkSize);
374
3114
    dirty.shrink(shrinkSize);
375
    // Remove out-of-bound indices from dirties
376
    int  i, j;
377
181239
    for (i = j = 0; i < dirties.size(); i++)
378
178125
        if (toInt(dirties[i]) < occs.size())
379
18838
            dirties[j++] = dirties[i];
380
3114
    dirties.shrink(i - j);
381
3114
}
382
383
template<class Idx, class Vec, class Deleted>
384
436506
void OccLists<Idx,Vec,Deleted>::clean(const Idx& idx)
385
{
386
436506
    Vec& vec = occs[toInt(idx)];
387
    int  i, j;
388
15347056
    for (i = j = 0; i < vec.size(); i++)
389
14910550
        if (!deleted(vec[i]))
390
13582792
            vec[j++] = vec[i];
391
436506
    vec.shrink(i - j);
392
436506
    dirty[toInt(idx)] = 0;
393
436506
}
394
395
396
//=================================================================================================
397
// CMap -- a class for mapping clauses to values:
398
399
400
template<class T>
401
class CMap
402
{
403
    struct CRefHash {
404
        uint32_t operator()(CRef cr) const { return (uint32_t)cr; } };
405
406
    typedef Map<CRef, T, CRefHash> HashTable;
407
    HashTable map;
408
409
 public:
410
    // Size-operations:
411
    void     clear       ()                           { map.clear(); }
412
    int      size        ()                const      { return map.elems(); }
413
414
    // Insert/Remove/Test mapping:
415
    void     insert      (CRef cr, const T& t){ map.insert(cr, t); }
416
    void     growTo      (CRef cr, const T& t){ map.insert(cr, t); } // NOTE: for compatibility
417
    void     remove      (CRef cr)            { map.remove(cr); }
418
    bool     has         (CRef cr, T& t)      { return map.peek(cr, t); }
419
420
    // Vector interface (the clause 'c' must already exist):
421
    const T& operator [] (CRef cr) const      { return map[cr]; }
422
    T&       operator [] (CRef cr)            { return map[cr]; }
423
424
    // Iteration (not transparent at all at the moment):
425
    int  bucket_count() const { return map.bucket_count(); }
426
    const vec<typename HashTable::Pair>& bucket(int i) const { return map.bucket(i); }
427
428
    // Move contents to other map:
429
    void moveTo(CMap& other){ map.moveTo(other.map); }
430
431
    // TMP debug:
432
    void debug(){
433
        printf(" --- size = %d, bucket_count = %d\n", size(), map.bucket_count()); }
434
};
435
436
/*_________________________________________________________________________________________________
437
|
438
|  subsumes : (other : const Clause&)  ->  Lit
439
|
440
|  Description:
441
|       Checks if clause subsumes 'other', and at the same time, if it can be
442
used to simplify 'other' |       by subsumption resolution.
443
|
444
|    Result:
445
|       lit_Error  - No subsumption or simplification
446
|       lit_Undef  - Clause subsumes 'other'
447
|       p          - The literal p can be deleted from 'other'
448
|________________________________________________________________________________________________@*/
449
19317113
inline Lit Clause::subsumes(const Clause& other) const
450
{
451
    // We restrict subsumtion to clauses at higher levels (if !enable_incremantal this should always be false)
452
19317113
    if (level() > other.level()) {
453
      return lit_Error;
454
    }
455
456
    //if (other.size() < size() || (extra.abst & ~other.extra.abst) != 0)
457
    //if (other.size() < size() || (!learnt() && !other.learnt() && (extra.abst & ~other.extra.abst) != 0))
458
19317113
    Assert(!header.removable);
459
19317113
    Assert(!other.header.removable);
460
19317113
    Assert(header.has_extra);
461
19317113
    Assert(other.header.has_extra);
462
19317113
    if (other.header.size < header.size || (data[header.size].abs & ~other.data[other.header.size].abs) != 0)
463
16853924
        return lit_Error;
464
465
2463189
    Lit        ret = lit_Undef;
466
2463189
    const Lit* c   = (const Lit*)(*this);
467
2463189
    const Lit* d   = (const Lit*)other;
468
469
11556241
    for (unsigned i = 0; i < header.size; i++) {
470
        // search for c[i] or ~c[i]
471
1211793795
        for (unsigned j = 0; j < other.header.size; j++)
472
1209509178
            if (c[i] == d[j])
473
7907240
                goto ok;
474
1201601938
            else if (ret == lit_Undef && c[i] == ~d[j]){
475
1185812
                ret = c[i];
476
1185812
                goto ok;
477
            }
478
479
        // did not find it
480
2284617
        return lit_Error;
481
9093052
    ok:;
482
    }
483
484
178572
    return ret;
485
}
486
487
59256
inline void Clause::strengthen(Lit p)
488
{
489
59256
    remove(*this, p);
490
59256
    calcAbstraction();
491
59256
}
492
493
//=================================================================================================
494
}
495
}  // namespace cvc5
496
497
#endif