summaryrefslogtreecommitdiff
path: root/src/theory/shared_data.cpp
blob: 678595f5fd953cf0e9d2d0a8c1bff8101fb0646d (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
/*********************                                                        */
/*! \file shared_data.cpp
 ** \verbatim
 ** Original author: taking
 ** Major contributors: mdeters
 ** Minor contributors (to current version): none
 ** This file is part of the CVC4 prototype.
 ** Copyright (c) 2009, 2010  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 equivalence class data for UF theory.
 **
 ** Implementation of equivalence class data for UF theory.  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_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_equality = data->d_equality;
  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;
  Node equality = d_equality;
  Theory* explainingTheory = d_explainingTheory;

  makeCurrent();
  d_proofNext = this;
  
  Node tmpNode;
  Theory* tmpTheory;
  SharedData* tmpData;

  while (!current->isProofRoot()) {
    tmpNode = current->getEquality();
    current->setEquality(equality);
    equality = tmpNode;

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

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