summaryrefslogtreecommitdiff
path: root/src/parser/parser.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-11-28 17:37:57 +0000
committerMorgan Deters <mdeters@gmail.com>2012-11-28 17:37:57 +0000
commit83cf3909b50af1d37735a252e79d550aac08cf7a (patch)
treec4d09b7aef51e8f38aeb5953e0d091c9fc0fb03c /src/parser/parser.h
parent629d04c45e1606a4d0ecef2717924e839d5daec3 (diff)
Bug fix:
* Fix creation of bound variables in CVC native language parser * This corrects a problem with misleading model output (this commit was certified error- and warning-free by the test-and-commit script.)
Diffstat (limited to 'src/parser/parser.h')
-rw-r--r--src/parser/parser.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/parser/parser.h b/src/parser/parser.h
index eed8531a5..fc956b463 100644
--- a/src/parser/parser.h
+++ b/src/parser/parser.h
@@ -335,6 +335,11 @@ public:
/** Create a new CVC4 bound variable expression of the given type. */
Expr mkBoundVar(const std::string& name, const Type& type);
+ /**
+ * Create a set of new CVC4 bound variable expressions of the given type.
+ */
+ std::vector<Expr> mkBoundVars(const std::vector<std::string> names, const Type& type);
+
/** Create a new CVC4 function expression of the given type. */
Expr mkFunction(const std::string& name, const Type& type,
bool levelZero = false);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback