summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers/instantiation_engine.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-01-17 09:57:12 -0600
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2014-01-17 09:57:26 -0600
commit276fb84a1bb1905ce2080c007f63fefff536a970 (patch)
treeb47aa5c7f5365bf82f2bf2f0053af8308d66dbf0 /src/theory/quantifiers/instantiation_engine.cpp
parent19bfbcb9971d7e21b4a2874d48c2bf690890993f (diff)
More optimizations for quantifiers conflict find. Add trust user patterns mode.
Diffstat (limited to 'src/theory/quantifiers/instantiation_engine.cpp')
-rw-r--r--src/theory/quantifiers/instantiation_engine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/quantifiers/instantiation_engine.cpp b/src/theory/quantifiers/instantiation_engine.cpp
index fa7b4e342..e3ed8d0e0 100644
--- a/src/theory/quantifiers/instantiation_engine.cpp
+++ b/src/theory/quantifiers/instantiation_engine.cpp
@@ -42,7 +42,7 @@ void InstantiationEngine::finishInit(){
// addInstStrategy( new InstStrategyCheckCESolved( this, d_quantEngine ) );
//}
//these are the instantiation strategies for basic E-matching
- if( options::userPatternsQuant() ){
+ if( options::userPatternsQuant()!=USER_PAT_MODE_IGNORE ){
d_isup = new InstStrategyUserPatterns( d_quantEngine );
addInstStrategy( d_isup );
}else{
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback