summaryrefslogtreecommitdiff
path: root/src/expr/expr.cpp
blob: fa273dfa5665f03bd1111e6e671551c840c939c6 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*********************                                           -*- C++ -*-  */
/** expr.cpp
 ** This file is part of the CVC4 prototype.
 ** Copyright (c) 2009 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.
 **
 ** Reference-counted encapsulation of a pointer to an expression.
 **/

#include "expr/expr.h"
#include "expr_value.h"
#include "expr_builder.h"
#include "util/Assert.h"

using namespace CVC4::expr;

namespace CVC4 {

ExprValue ExprValue::s_null;

Expr Expr::s_null(&ExprValue::s_null);

bool Expr::isNull() const {
  return d_ev == &ExprValue::s_null;
}

Expr::Expr() :
  d_ev(&ExprValue::s_null) {
  // No refcount needed
}

Expr::Expr(ExprValue* ev)
  : d_ev(ev) {
  Assert(d_ev != NULL, "Expecting a non-NULL evpression value!");
  d_ev->inc();
}

Expr::Expr(const Expr& e) {
  Assert(e.d_ev != NULL, "Expecting a non-NULL evpression value!");
  d_ev = e.d_ev;
  d_ev->inc();
}

Expr::~Expr() {
  Assert(d_ev != NULL, "Expecting a non-NULL evpression value!");
  d_ev->dec();
}

void Expr::assignExprValue(ExprValue* ev) {
  d_ev = ev;
  d_ev->inc();
}

Expr& Expr::operator=(const Expr& e) {
  Assert(d_ev != NULL, "Expecting a non-NULL evpression value!");
  if(this != &e && d_ev != e.d_ev) {
    d_ev->dec();
    d_ev = e.d_ev;
    d_ev->inc();
  }
  return *this;
}

ExprValue const* Expr::operator->() const {
  Assert(d_ev != NULL, "Expecting a non-NULL evpression value!");
  return d_ev;
}

uint64_t Expr::hash() const {
  Assert(d_ev != NULL, "Expecting a non-NULL evpression value!");
  return d_ev->hash();
}

Expr Expr::eqExpr(const Expr& right) const {
  return ExprManager::currentEM()->mkExpr(EQUAL, *this, right);
}

Expr Expr::notExpr() const {
  return ExprManager::currentEM()->mkExpr(NOT, *this);
}

// FIXME: What does this do and why?
Expr Expr::negate() const { // avoid double-negatives
  return ExprBuilder(*this).negate();
}


Expr Expr::andExpr(const Expr& right) const {
  return ExprManager::currentEM()->mkExpr(AND, *this, right);
}

Expr Expr::orExpr(const Expr& right) const {
  return ExprManager::currentEM()->mkExpr(OR, *this, right);
}

Expr Expr::iteExpr(const Expr& thenpart, const Expr& elsepart) const {
  return ExprManager::currentEM()->mkExpr(ITE, *this, thenpart, elsepart);
}

Expr Expr::iffExpr(const Expr& right) const {
  return ExprManager::currentEM()->mkExpr(IFF, *this, right);
}

Expr Expr::impExpr(const Expr& right) const {
  return ExprManager::currentEM()->mkExpr(IMPLIES, *this, right);
}

Expr Expr::xorExpr(const Expr& right) const {
  return ExprManager::currentEM()->mkExpr(XOR, *this, right);
}

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