GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/decision/justify_stack.cpp Lines: 38 41 92.7 %
Date: 2021-08-01 Branches: 25 104 24.0 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Andrew Reynolds
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
 * Justification stack.
14
 */
15
16
#include "decision/justify_stack.h"
17
18
namespace cvc5 {
19
namespace decision {
20
21
7725
JustifyStack::JustifyStack(context::Context* c)
22
7725
    : d_context(c), d_current(c), d_stack(c), d_stackSizeValid(c, 0)
23
{
24
7725
}
25
7725
JustifyStack::~JustifyStack() {}
26
27
6759121
void JustifyStack::reset(TNode curr)
28
{
29
6759121
  d_current = curr;
30
6759121
  d_stackSizeValid = 0;
31
6759121
  pushToStack(curr, prop::SAT_VALUE_TRUE);
32
6759121
}
33
6788897
void JustifyStack::clear()
34
{
35
6788897
  d_current = TNode::null();
36
6788897
  d_stackSizeValid = 0;
37
6788897
}
38
39
2651485
size_t JustifyStack::size() const { return d_stackSizeValid.get(); }
40
41
20889659
TNode JustifyStack::getCurrentAssertion() const { return d_current.get(); }
42
14577129
bool JustifyStack::hasCurrentAssertion() const
43
{
44
14577129
  return !d_current.get().isNull();
45
}
46
38221214
JustifyInfo* JustifyStack::getCurrent()
47
{
48
38221214
  if (d_stackSizeValid.get() == 0)
49
  {
50
6678203
    return nullptr;
51
  }
52
31543011
  Assert(d_stack.size() >= d_stackSizeValid.get());
53
31543011
  return d_stack[d_stackSizeValid.get() - 1].get();
54
}
55
56
9410606
void JustifyStack::pushToStack(TNode n, prop::SatValue desiredVal)
57
{
58
9410606
  if (Trace.isOn("jh-stack"))
59
  {
60
    for (size_t i = 0, ssize = d_stackSizeValid.get(); i < ssize; i++)
61
    {
62
      Trace("jh-stack") << " ";
63
    }
64
    Trace("jh-stack") << "- " << n << " " << desiredVal << std::endl;
65
  }
66
  // note that n is possibly negated here
67
9410606
  JustifyInfo* ji = getOrAllocJustifyInfo(d_stackSizeValid.get());
68
9410606
  ji->set(n, desiredVal);
69
9410606
  d_stackSizeValid = d_stackSizeValid + 1;
70
9410606
}
71
72
9161216
void JustifyStack::popStack()
73
{
74
9161216
  Assert(d_stackSizeValid.get() > 0);
75
9161216
  d_stackSizeValid = d_stackSizeValid - 1;
76
9161216
}
77
78
9410606
JustifyInfo* JustifyStack::getOrAllocJustifyInfo(size_t i)
79
{
80
  // don't request stack beyond the bound
81
9410606
  Assert(i <= d_stack.size());
82
9410606
  if (i == d_stack.size())
83
  {
84
198382
    d_stack.push_back(std::make_shared<JustifyInfo>(d_context));
85
  }
86
9410606
  return d_stack[i].get();
87
}
88
89
}
90
29280
}  // namespace cvc5