summaryrefslogtreecommitdiff
path: root/src/util/command.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2009-12-10 18:44:51 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2009-12-10 18:44:51 +0000
commitf79afa96e7e7176b974252dd05a9f7bdf70194e8 (patch)
treecb12c0a880f8fbb356516a86699b0063a7bb8981 /src/util/command.h
parent8b2d1d64b886db4cff74e2a7b1370841979001b2 (diff)
killing expr into node...
Diffstat (limited to 'src/util/command.h')
-rw-r--r--src/util/command.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/util/command.h b/src/util/command.h
index 31acbc43b..189872220 100644
--- a/src/util/command.h
+++ b/src/util/command.h
@@ -15,12 +15,12 @@
#include <iostream>
#include "cvc4_config.h"
-#include "expr/expr.h"
+#include "expr/node.h"
namespace CVC4 {
class SmtEngine;
class Command;
- class Expr;
+ class Node;
}/* CVC4 namespace */
namespace CVC4 {
@@ -46,9 +46,9 @@ private:
class CVC4_PUBLIC AssertCommand : public Command {
protected:
- Expr d_expr;
+ Node d_expr;
public:
- AssertCommand(const Expr& e);
+ AssertCommand(const Node& e);
void invoke(CVC4::SmtEngine* smt_engine);
void toString(std::ostream& out) const;
};/* class AssertCommand */
@@ -57,21 +57,21 @@ public:
class CVC4_PUBLIC CheckSatCommand : public Command {
public:
CheckSatCommand();
- CheckSatCommand(const Expr& e);
+ CheckSatCommand(const Node& e);
void invoke(SmtEngine* smt);
void toString(std::ostream& out) const;
protected:
- Expr d_expr;
+ Node d_expr;
};/* class CheckSatCommand */
class CVC4_PUBLIC QueryCommand : public Command {
public:
- QueryCommand(const Expr& e);
+ QueryCommand(const Node& e);
void invoke(SmtEngine* smt);
void toString(std::ostream& out) const;
protected:
- Expr d_expr;
+ Node d_expr;
};/* class QueryCommand */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback