summaryrefslogtreecommitdiff
path: root/src/theory/sets/term_info.h
blob: 2783faa796b8225b7f704f6505153e9269fa51c2 (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
/*********************                                                        */
/*! \file term_info.h
 ** \verbatim
 ** Original author: Kshitij Bansal
 ** Major contributors: none
 ** Minor contributors (to current version): none
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2013-2014  New York University and The University of Iowa
 ** See the file COPYING in the top-level source directory for licensing
 ** information.\endverbatim
 **
 ** \brief Term info.
 **
 ** Term info.
 **/

#include "cvc4_private.h"

#pragma once

namespace CVC4 {
namespace theory {
namespace sets {


typedef context::CDList<TNode> CDTNodeList;
typedef context::CDHashSet<Node, NodeHashFunction> CDNodeSet;
typedef context::CDHashSet<Node, NodeHashFunction> CDNodeSet;

class TheorySetsTermInfo {
public:
  CDTNodeList* elementsInThisSet;
  CDTNodeList* elementsNotInThisSet;
  CDTNodeList* setsContainingThisElement;
  CDTNodeList* setsNotContainingThisElement;
  CDTNodeList* parents;

  TheorySetsTermInfo(context::Context* c)
  {
    elementsInThisSet = new(true)CDTNodeList(c);
    elementsNotInThisSet = new(true)CDTNodeList(c);
    setsContainingThisElement = new(true)CDTNodeList(c);
    setsNotContainingThisElement = new(true)CDTNodeList(c);
    parents = new(true)CDTNodeList(c);
  }

  void addToElementList(TNode n, bool polarity) {
    if(polarity) elementsInThisSet -> push_back(n);
    else elementsNotInThisSet -> push_back(n);
  }

  void addToSetList(TNode n, bool polarity) {
    if(polarity) setsContainingThisElement -> push_back(n);
    else setsNotContainingThisElement -> push_back(n);
  }

  ~TheorySetsTermInfo() {
    elementsInThisSet -> deleteSelf();
    elementsNotInThisSet -> deleteSelf();
    setsContainingThisElement -> deleteSelf();
    setsNotContainingThisElement -> deleteSelf();
    parents -> deleteSelf();
  }

};

}/* CVC4::theory::sets namespace */
}/* CVC4::theory namespace */
}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback