summaryrefslogtreecommitdiff
path: root/src/theory/quantifiers_engine.cpp
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-03-11 15:43:56 +0100
committerajreynol <andrew.j.reynolds@gmail.com>2015-03-11 15:43:56 +0100
commite99c176931f0673ac47eb4525365b813df99112e (patch)
tree30806fa85535222680b5ea846d9cb67c9b7f47ab /src/theory/quantifiers_engine.cpp
parent10df4ba0752eb23c76b9aa847e3ad116673a47b6 (diff)
Minor fixes and improvements to cegqi-si for linear arithmetic.
Diffstat (limited to 'src/theory/quantifiers_engine.cpp')
-rw-r--r--src/theory/quantifiers_engine.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/theory/quantifiers_engine.cpp b/src/theory/quantifiers_engine.cpp
index 890f04aad..a475a8912 100644
--- a/src/theory/quantifiers_engine.cpp
+++ b/src/theory/quantifiers_engine.cpp
@@ -909,15 +909,7 @@ void QuantifiersEngine::getPhaseReqTerms( Node f, std::vector< Node >& nodes ){
// Node req = qe->getPhaseReqEquality( f, trNodes[i] );
// trNodes[i] = NodeManager::currentNM()->mkNode( EQUAL, trNodes[i], req );
//}
- if( nodeChanged ){
- Debug("literal-matching") << " Make " << prev << " -> " << nodes[i] << std::endl;
- ++(d_statistics.d_lit_phase_req);
- }else{
- ++(d_statistics.d_lit_phase_nreq);
- }
}
- }else{
- d_statistics.d_lit_phase_nreq += (int)nodes.size();
}
}
@@ -961,8 +953,6 @@ QuantifiersEngine::Statistics::Statistics():
d_instantiations("QuantifiersEngine::Instantiations_Total", 0),
d_inst_duplicate("QuantifiersEngine::Duplicate_Inst", 0),
d_inst_duplicate_eq("QuantifiersEngine::Duplicate_Inst_Eq", 0),
- d_lit_phase_req("QuantifiersEngine::lit_phase_req", 0),
- d_lit_phase_nreq("QuantifiersEngine::lit_phase_nreq", 0),
d_triggers("QuantifiersEngine::Triggers", 0),
d_simple_triggers("QuantifiersEngine::Triggers_Simple", 0),
d_multi_triggers("QuantifiersEngine::Triggers_Multi", 0),
@@ -974,8 +964,6 @@ QuantifiersEngine::Statistics::Statistics():
StatisticsRegistry::registerStat(&d_instantiations);
StatisticsRegistry::registerStat(&d_inst_duplicate);
StatisticsRegistry::registerStat(&d_inst_duplicate_eq);
- StatisticsRegistry::registerStat(&d_lit_phase_req);
- StatisticsRegistry::registerStat(&d_lit_phase_nreq);
StatisticsRegistry::registerStat(&d_triggers);
StatisticsRegistry::registerStat(&d_simple_triggers);
StatisticsRegistry::registerStat(&d_multi_triggers);
@@ -989,8 +977,6 @@ QuantifiersEngine::Statistics::~Statistics(){
StatisticsRegistry::unregisterStat(&d_instantiations);
StatisticsRegistry::unregisterStat(&d_inst_duplicate);
StatisticsRegistry::unregisterStat(&d_inst_duplicate_eq);
- StatisticsRegistry::unregisterStat(&d_lit_phase_req);
- StatisticsRegistry::unregisterStat(&d_lit_phase_nreq);
StatisticsRegistry::unregisterStat(&d_triggers);
StatisticsRegistry::unregisterStat(&d_simple_triggers);
StatisticsRegistry::unregisterStat(&d_multi_triggers);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback