summaryrefslogtreecommitdiff
path: root/src/expr/expr_manager_template.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/expr/expr_manager_template.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/expr/expr_manager_template.h')
-rw-r--r--src/expr/expr_manager_template.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/expr/expr_manager_template.h b/src/expr/expr_manager_template.h
index b762da3ea..158f17c14 100644
--- a/src/expr/expr_manager_template.h
+++ b/src/expr/expr_manager_template.h
@@ -450,6 +450,8 @@ public:
// variables are special, because duplicates are permitted
Expr mkVar(const std::string& name, Type type);
Expr mkVar(Type type);
+ Expr mkBoundVar(const std::string& name, Type type);
+ Expr mkBoundVar(Type type);
/** Get a reference to the statistics registry for this ExprManager */
StatisticsRegistry* getStatisticsRegistry() const throw();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback