summaryrefslogtreecommitdiff
path: root/src/expr/expr_manager.h
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2009-12-16 19:51:02 +0000
committerTim King <taking@cs.nyu.edu>2009-12-16 19:51:02 +0000
commitb33a35b720059370ffb1507f31603cdb5347503a (patch)
treee4a2de1f99491d5ea066a7cee6d5d60a96624bb8 /src/expr/expr_manager.h
parente2cbeb69ca3a56af6ad7cc65a70f554d08e4df76 (diff)
Small refactoring changes for the expr package.
Diffstat (limited to 'src/expr/expr_manager.h')
-rw-r--r--src/expr/expr_manager.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/expr/expr_manager.h b/src/expr/expr_manager.h
index 4a7f359e9..645193ecf 100644
--- a/src/expr/expr_manager.h
+++ b/src/expr/expr_manager.h
@@ -23,7 +23,7 @@ class CVC4_PUBLIC ExprManager {
public:
/**
- * Creates an expressio manager.
+ * Creates an expression manager.
*/
ExprManager();
@@ -49,8 +49,10 @@ public:
Expr mkExpr(Kind kind, const Expr& child1);
/**
- * Make a ternary expression of a given kind (AND, PLUS, ...).
+ * Make a binary expression of a given kind (AND, PLUS, ...).
* @param kind the kind of expression
+ * @param child1 the first child of the new expression
+ * @param child2 the second child of the new expression
* @return the expression
*/
Expr mkExpr(Kind kind, const Expr& child1, const Expr& child2);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback