summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/inst_strategy_cbqi.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-09-03 13:03:31 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-09-03 13:03:45 -0500
commit9aaa7ca741199f73e70149f8309cd7cd9a12e69f (patch)
tree1dec877f28b4733f9a866620c1e671b4e522faf9 /src/theory/quantifiers/inst_strategy_cbqi.h
parent532a228bc718bde32afb3b96ca2cd3abcbd40f48 (diff)
Option for prenex normal form
Diffstat (limited to 'src/theory/quantifiers/inst_strategy_cbqi.h')
-rw-r--r--src/theory/quantifiers/inst_strategy_cbqi.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/quantifiers/inst_strategy_cbqi.h b/src/theory/quantifiers/inst_strategy_cbqi.h
index eb80de3ce..e88842822 100644
--- a/src/theory/quantifiers/inst_strategy_cbqi.h
+++ b/src/theory/quantifiers/inst_strategy_cbqi.h
@@ -71,8 +71,8 @@ protected:
//mark ids on quantifiers
Node getIdMarkedQuantNode( Node n, std::map< Node, Node >& visited );
// id to ce quant
- std::map< int, Node > d_id_to_ce_quant;
- std::map< Node, int > d_ce_quant_to_id;
+ std::map< Node, Node > d_id_to_ce_quant;
+ std::map< Node, Node > d_ce_quant_to_id;
//do nested quantifier elimination recursive
Node doNestedQENode( Node q, Node ceq, Node n, std::vector< Node >& inst_terms, bool doVts );
Node doNestedQERec( Node q, Node n, std::map< Node, Node >& visited, std::vector< Node >& inst_terms, bool doVts );
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback