From 21b0cedd7dadd96e5d256885e3b65a926a7e4a81 Mon Sep 17 00:00:00 2001 From: ajreynol Date: Thu, 16 Feb 2017 16:19:51 -0600 Subject: Minor fixes for relations, quantifiers dsplit. --- src/theory/quantifiers/first_order_model.cpp | 16 ++++++++++------ src/theory/quantifiers/first_order_model.h | 2 ++ src/theory/quantifiers/quant_split.cpp | 2 +- src/theory/sets/theory_sets_rels.cpp | 4 ---- 4 files changed, 13 insertions(+), 11 deletions(-) diff --git a/src/theory/quantifiers/first_order_model.cpp b/src/theory/quantifiers/first_order_model.cpp index 9e29e21aa..b6743724b 100644 --- a/src/theory/quantifiers/first_order_model.cpp +++ b/src/theory/quantifiers/first_order_model.cpp @@ -62,7 +62,7 @@ unsigned FirstOrderModel::getNumAssertedQuantifiers() { } Node FirstOrderModel::getAssertedQuantifier( unsigned i, bool ordered ) { - if( !ordered || d_forall_rlv_assert.empty() ){ + if( !ordered ){ return d_forall_asserts[i]; }else{ Assert( d_forall_rlv_assert.size()==d_forall_asserts.size() ); @@ -148,9 +148,9 @@ void FirstOrderModel::reset_round() { d_quant_active.clear(); //order the quantified formulas + d_forall_rlv_assert.clear(); if( !d_forall_rlv_vec.empty() ){ Trace("fm-relevant") << "Build sorted relevant list..." << std::endl; - d_forall_rlv_assert.clear(); Trace("fm-relevant-debug") << "Mark asserted quantified formulas..." << std::endl; std::map< Node, bool > qassert; for( unsigned i=0; i lemmas; for(std::map< Node, int >::iterator it = d_quant_to_reduce.begin(); it != d_quant_to_reduce.end(); ++it) { Node q = it->first; - if( d_quantEngine->getModel()->isQuantifierActive( q ) ){ + if( d_quantEngine->getModel()->isQuantifierAsserted( q ) && d_quantEngine->getModel()->isQuantifierActive( q ) ){ if( d_added_split.find( q )==d_added_split.end() ){ d_added_split.insert( q ); std::vector< Node > bvs; diff --git a/src/theory/sets/theory_sets_rels.cpp b/src/theory/sets/theory_sets_rels.cpp index ac5463e13..db29843d8 100644 --- a/src/theory/sets/theory_sets_rels.cpp +++ b/src/theory/sets/theory_sets_rels.cpp @@ -1424,10 +1424,6 @@ int TheorySetsRels::EqcInfo::counter = 0; EqcInfo* t2_ei = getOrMakeEqcInfo(t2); if(t1_ei != NULL && t2_ei != NULL) { - // PT(t1) = PT(t2) -> t1 = t2; - if(!t1_ei->d_pt.get().isNull() && !t2_ei->d_pt.get().isNull()) { - sendInferProduct( true, t1_ei->d_pt.get(), t2_ei->d_pt.get(), explain(NodeManager::currentNM()->mkNode(kind::EQUAL,t1, t2)) ); - } // Apply Product rule on (non)members of t2 and t1->pt if(!t1_ei->d_pt.get().isNull()) { for(NodeSet::key_iterator itr = t2_ei->d_mem.key_begin(); itr != t2_ei->d_mem.key_end(); itr++) { -- cgit v1.2.3