summaryrefslogtreecommitdiff
path: root/src/theory/shared_data.cpp
blob: 3e89dec7eb8f481a8acd479f0cb5a311cde3a7e0 (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
91
92
93
94
/*********************                                                        */
/*! \file shared_data.cpp
 ** \verbatim
 ** Original author: barrett
 ** Major contributors: none
 ** Minor contributors (to current version): none
 ** This file is part of the CVC4 prototype.
 ** Copyright (c) 2009, 2010, 2011  The Analysis of Computer Systems Group (ACSys)
 ** Courant Institute of Mathematical Sciences
 ** New York University
 ** See the file COPYING in the top-level source directory for licensing
 ** information.\endverbatim
 **
 ** \brief Implementation of shared data for shared term manager.
 **
 ** Implementation of shared data used by the shared term manager.  This is a
 ** context-dependent object.
 **/


#include "theory/shared_data.h"
#include "theory/theory.h"


using namespace CVC4;
using namespace context;
using namespace theory;


SharedData::SharedData(Context * context, TNode n, uint64_t theories) :
  ContextObj(context),
  d_theories(theories),
  d_size(1),
  d_find(this),
  d_proofNext(this),
  d_edgeReversed(false),
  d_explainingTheory(NULL),
  d_rep(n) {
}


ContextObj* SharedData::save(ContextMemoryManager* pCMM) {
  return new(pCMM) SharedData(*this);
}


void SharedData::restore(ContextObj* pContextObj) {
  SharedData* data = (SharedData*)pContextObj;
  d_theories = data->d_theories;
  d_size = data->d_size;
  d_find = data->d_find;
  d_proofNext = data->d_proofNext;
  d_edgeReversed = data->d_edgeReversed;
  d_explainingTheory = data->d_explainingTheory;
  d_rep = data->d_rep;
}


void SharedData::reverseEdges() {
  Assert(!isProofRoot(), "reverseEdges called on proof root");

  SharedData* parent = this;
  SharedData* current = d_proofNext;
  bool reversed = d_edgeReversed;
  Theory* explainingTheory = d_explainingTheory;

  makeCurrent();

  // Make this the proof root
  d_proofNext = this;
  
  // Reverse the edges from here to the former root
  bool tmpReversed;
  Theory* tmpTheory;
  SharedData* tmpData;

  while (!current->isProofRoot()) {
    tmpReversed = current->getEdgeReversed();
    current->setEdgeReversed(!reversed);
    reversed = tmpReversed;

    tmpTheory = current->getExplainingTheory();
    current->setExplainingTheory(explainingTheory);
    explainingTheory = tmpTheory;

    tmpData = current->getProofNext();
    current->setProofNext(parent);
    parent = current;
    current = tmpData;
  }
  current->setEdgeReversed(!reversed);
  current->setExplainingTheory(explainingTheory);
  current->setProofNext(parent);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback