summaryrefslogtreecommitdiff
path: root/src/parser/parser.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-08-24 23:23:34 +0000
committerMorgan Deters <mdeters@gmail.com>2012-08-24 23:23:34 +0000
commit80afd586eb0865efcc38aa14833d682f1b7cc27f (patch)
treeaac37b28e0330bf3b72083e979ae94ee71918771 /src/parser/parser.h
parent3619c784bd5dd4b91ab0a2ad429ea145636d3424 (diff)
* disallow internal uses of mkVar() (you have to mkSkolem())
* add support for mkBoundVar() (BOUND_VAR_LISTs in quantifiers must be bound vars)
Diffstat (limited to 'src/parser/parser.h')
-rw-r--r--src/parser/parser.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/parser/parser.h b/src/parser/parser.h
index f3210ae29..7efc4d78c 100644
--- a/src/parser/parser.h
+++ b/src/parser/parser.h
@@ -347,6 +347,9 @@ public:
mkVars(const std::vector<std::string> names, const Type& type,
bool levelZero = false);
+ /** Create a new CVC4 bound variable expression of the given type. */
+ Expr mkBoundVar(const std::string& name, 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