summaryrefslogtreecommitdiff
path: root/src/expr/term_context_stack.cpp
blob: 557683498f61ab8d87df53707719698a6bc4c129 (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
/*********************                                                        */
/*! \file term_context_stack.cpp
 ** \verbatim
 ** Top contributors (to current version):
 **   Andrew Reynolds
 ** This file is part of the CVC4 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.\endverbatim
 **
 ** \brief Term context stack
 **/

#include "expr/term_context_stack.h"

#include "expr/term_context.h"

namespace CVC5 {

TCtxStack::TCtxStack(const TermContext* tctx) : d_tctx(tctx) {}

void TCtxStack::pushInitial(Node t)
{
  Assert(d_stack.empty());
  d_stack.push_back(std::pair<Node, uint32_t>(t, d_tctx->initialValue()));
}

void TCtxStack::pushChildren(Node t, uint32_t tval)
{
  for (size_t i = 0, nchild = t.getNumChildren(); i < nchild; i++)
  {
    pushChild(t, tval, i);
  }
}

void TCtxStack::pushChild(Node t, uint32_t tval, size_t index)
{
  Assert(index < t.getNumChildren());
  Trace("tctx-debug") << "TCtxStack::pushChild: computing " << t << "[" << index
                      << "] / " << tval << std::endl;
  uint32_t tcval = d_tctx->computeValue(t, tval, index);
  Trace("tctx-debug") << "TCtxStack::pushChild: returned " << t << "[" << index
                      << "] / " << tval << " ---> " << tcval << std::endl;
  d_stack.push_back(std::pair<Node, uint32_t>(t[index], tcval));
}

void TCtxStack::pushOp(Node t, uint32_t tval)
{
  Assert(t.hasOperator());
  uint32_t toval = d_tctx->computeValueOp(t, tval);
  d_stack.push_back(std::pair<Node, uint32_t>(t.getOperator(), toval));
}

void TCtxStack::push(Node t, uint32_t tval)
{
  d_stack.push_back(std::pair<Node, uint32_t>(t, tval));
}

void TCtxStack::pop() { d_stack.pop_back(); }

void TCtxStack::clear() { d_stack.clear(); }
size_t TCtxStack::size() const { return d_stack.size(); }

bool TCtxStack::empty() const { return d_stack.empty(); }

std::pair<Node, uint32_t> TCtxStack::getCurrent() const
{
  return d_stack.back();
}

TCtxNode TCtxStack::getCurrentNode() const
{
  std::pair<Node, uint32_t> curr = TCtxStack::getCurrent();
  return TCtxNode(curr.first, curr.second, d_tctx);
}

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