summaryrefslogtreecommitdiff
path: root/src/decision/justify_stack.cpp
blob: 53350e2f6fa405aa2e138c502e9f5e54d8662d1f (plain)
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
/******************************************************************************
 * Top contributors (to current version):
 *   Andrew Reynolds
 *
 * This file is part of the cvc5 project.
 *
 * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
 * in the top-level source directory and their institutional affiliations.
 * All rights reserved.  See the file COPYING in the top-level source
 * directory for licensing information.
 * ****************************************************************************
 *
 * Justification stack.
 */

#include "decision/justify_stack.h"

namespace cvc5 {
namespace decision {

JustifyStack::JustifyStack(context::Context* c)
    : d_context(c), d_current(c), d_stack(c), d_stackSizeValid(c, 0)
{
}
JustifyStack::~JustifyStack() {}

void JustifyStack::reset(TNode curr)
{
  d_current = curr;
  d_stackSizeValid = 0;
  pushToStack(curr, prop::SAT_VALUE_TRUE);
}
void JustifyStack::clear()
{
  d_current = TNode::null();
  d_stackSizeValid = 0;
}

size_t JustifyStack::size() const { return d_stackSizeValid.get(); }

TNode JustifyStack::getCurrentAssertion() const { return d_current.get(); }
bool JustifyStack::hasCurrentAssertion() const
{
  return !d_current.get().isNull();
}
JustifyInfo* JustifyStack::getCurrent()
{
  if (d_stackSizeValid.get() == 0)
  {
    return nullptr;
  }
  Assert(d_stack.size() >= d_stackSizeValid.get());
  return d_stack[d_stackSizeValid.get() - 1].get();
}

void JustifyStack::pushToStack(TNode n, prop::SatValue desiredVal)
{
  if (Trace.isOn("jh-stack"))
  {
    for (size_t i = 0, ssize = d_stackSizeValid.get(); i < ssize; i++)
    {
      Trace("jh-stack") << " ";
    }
    Trace("jh-stack") << "- " << n << " " << desiredVal << std::endl;
  }
  // note that n is possibly negated here
  JustifyInfo* ji = getOrAllocJustifyInfo(d_stackSizeValid.get());
  ji->set(n, desiredVal);
  d_stackSizeValid = d_stackSizeValid + 1;
}

void JustifyStack::popStack()
{
  Assert(d_stackSizeValid.get() > 0);
  d_stackSizeValid = d_stackSizeValid - 1;
}

JustifyInfo* JustifyStack::getOrAllocJustifyInfo(size_t i)
{
  // don't request stack beyond the bound
  Assert(i <= d_stack.size());
  if (i == d_stack.size())
  {
    d_stack.push_back(std::make_shared<JustifyInfo>(d_context));
  }
  return d_stack[i].get();
}

}
}  // namespace cvc5
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback