GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/decision_strategy.cpp Lines: 58 61 95.1 %
Date: 2021-11-06 Branches: 87 162 53.7 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Andrew Reynolds, Aina Niemetz
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
 * Implementation of base classes for decision strategies used by theory
14
 * solvers for use in the DecisionManager of TheoryEngine.
15
 */
16
17
#include "theory/decision_strategy.h"
18
19
#include "theory/rewriter.h"
20
21
using namespace cvc5::kind;
22
23
namespace cvc5 {
24
namespace theory {
25
26
6712
DecisionStrategyFmf::DecisionStrategyFmf(Env& env, Valuation valuation)
27
    : DecisionStrategy(env),
28
      d_valuation(valuation),
29
      d_has_curr_literal(false, context()),
30
6712
      d_curr_literal(0, context())
31
{
32
6712
}
33
34
5338
void DecisionStrategyFmf::initialize() { d_literals.clear(); }
35
36
3782711
Node DecisionStrategyFmf::getNextDecisionRequest()
37
{
38
7565422
  Trace("dec-strategy-debug")
39
3782711
      << "Get next decision request " << identify() << "..." << std::endl;
40
3782711
  if (d_has_curr_literal.get())
41
  {
42
3664548
    Trace("dec-strategy-debug") << "...already has decision" << std::endl;
43
3664548
    return Node::null();
44
  }
45
  bool success;
46
118163
  unsigned curr_lit = d_curr_literal.get();
47
89322
  do
48
  {
49
207485
    success = true;
50
    // get the current literal
51
356691
    Node lit = getLiteral(curr_lit);
52
414962
    Trace("dec-strategy-debug")
53
207481
        << "...check literal #" << curr_lit << " : " << lit << std::endl;
54
    // if out of literals, we are done in the current SAT context
55
207481
    if (!lit.isNull())
56
    {
57
      bool value;
58
205112
      if (!d_valuation.hasSatValue(lit, value))
59
      {
60
58275
        Trace("dec-strategy-debug") << "...not assigned, return." << std::endl;
61
        // if it has not been decided, return it
62
58275
        return lit;
63
      }
64
146837
      else if (!value)
65
      {
66
178644
        Trace("dec-strategy-debug")
67
89322
            << "...assigned false, increment." << std::endl;
68
        // asserted false, the current literal is incremented
69
89322
        curr_lit = d_curr_literal.get() + 1;
70
89322
        d_curr_literal.set(curr_lit);
71
        // repeat
72
89322
        success = false;
73
      }
74
      else
75
      {
76
57515
        Trace("dec-strategy-debug") << "...already assigned true." << std::endl;
77
      }
78
    }
79
    else
80
    {
81
2369
      Trace("dec-strategy-debug") << "...exhausted literals." << std::endl;
82
    }
83
149206
  } while (!success);
84
  // the current literal has been decided with the right polarity, we are done
85
59884
  d_has_curr_literal = true;
86
59884
  return Node::null();
87
}
88
89
1744
bool DecisionStrategyFmf::getAssertedLiteralIndex(unsigned& i) const
90
{
91
1744
  if (d_has_curr_literal.get())
92
  {
93
1744
    i = d_curr_literal.get();
94
1744
    return true;
95
  }
96
  return false;
97
}
98
99
532
Node DecisionStrategyFmf::getAssertedLiteral()
100
{
101
532
  if (d_has_curr_literal.get())
102
  {
103
532
    Assert(d_curr_literal.get() < d_literals.size());
104
532
    return getLiteral(d_curr_literal.get());
105
  }
106
  return Node::null();
107
}
108
109
218734
Node DecisionStrategyFmf::getLiteral(unsigned n)
110
{
111
  // allocate until the index is valid
112
227389
  while (n >= d_literals.size())
113
  {
114
17314
    Node lit = mkLiteral(d_literals.size());
115
8655
    if (!lit.isNull())
116
    {
117
7939
      lit = rewrite(lit);
118
    }
119
8655
    d_literals.push_back(lit);
120
  }
121
210075
  Node ret = d_literals[n];
122
210075
  if (!ret.isNull())
123
  {
124
    // always ensure it is in the CNF stream
125
207706
    ret = d_valuation.ensureLiteral(ret);
126
  }
127
210075
  return ret;
128
}
129
130
2807
DecisionStrategySingleton::DecisionStrategySingleton(Env& env,
131
                                                     const char* name,
132
                                                     Node lit,
133
2807
                                                     Valuation valuation)
134
2807
    : DecisionStrategyFmf(env, valuation), d_name(name), d_literal(lit)
135
{
136
2807
}
137
138
3354
Node DecisionStrategySingleton::mkLiteral(unsigned n)
139
{
140
3354
  if (n == 0)
141
  {
142
2638
    return d_literal;
143
  }
144
716
  return Node::null();
145
}
146
147
Node DecisionStrategySingleton::getSingleLiteral() { return d_literal; }
148
149
}  // namespace theory
150
31137
}  // namespace cvc5