summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/instantiation_engine.h
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-03-23 15:09:25 +0100
committerajreynol <andrew.j.reynolds@gmail.com>2015-03-23 15:09:25 +0100
commit8beb91c3113dae4a858a30c7a21387e833d60527 (patch)
tree3779a2c309adb7c6200f709244f90a5d0ac554da /src/theory/quantifiers/instantiation_engine.h
parent973cbd67611a2943714fd9544d098ec1472a40b8 (diff)
Decouple counter-example guided quantifier instantiation from Sygus.
Diffstat (limited to 'src/theory/quantifiers/instantiation_engine.h')
-rw-r--r--src/theory/quantifiers/instantiation_engine.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/theory/quantifiers/instantiation_engine.h b/src/theory/quantifiers/instantiation_engine.h
index c69136933..8a733ac1d 100644
--- a/src/theory/quantifiers/instantiation_engine.h
+++ b/src/theory/quantifiers/instantiation_engine.h
@@ -29,6 +29,7 @@ class InstStrategyAutoGenTriggers;
class InstStrategyLocalTheoryExt;
class InstStrategyFreeVariable;
class InstStrategySimplex;
+class InstStrategyCegqi;
/** instantiation strategy class */
class InstStrategy {
@@ -68,6 +69,8 @@ private:
InstStrategyFreeVariable * d_i_fs;
/** simplex (cbqi) */
InstStrategySimplex * d_i_splx;
+ /** generic cegqi */
+ InstStrategyCegqi * d_i_cegqi;
private:
typedef context::CDHashMap< Node, bool, NodeHashFunction > BoolMap;
/** whether the instantiation engine should set incomplete if it cannot answer SAT */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback