From: ajreynol Date: Sat, 1 Aug 2015 15:22:11 +0000 (+0200) Subject: Simplification/improvement to solving deltas in LRA cbqi. Bug fix sygus datatypes. X-Git-Tag: cvc5-1.0.0~6260 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=86ad2ca93048844eedcafd2a2dadc43ef85dfb32;p=cvc5.git Simplification/improvement to solving deltas in LRA cbqi. Bug fix sygus datatypes. --- diff --git a/src/parser/smt2/smt2.cpp b/src/parser/smt2/smt2.cpp index cc3b09cfe..7e621f56b 100644 --- a/src/parser/smt2/smt2.cpp +++ b/src/parser/smt2/smt2.cpp @@ -545,11 +545,7 @@ void Smt2::mkSygusDefaultGrammar( const Type& range, Expr& bvl, const std::strin std::map< Type, std::vector< DatatypeConstructorArg > > sels; //types for each of the variables for( unsigned i=0; i::iterator it = d_prog_var[n[i]].begin(); it != d_prog_var[n[i]].end(); ++it ){ d_prog_var[n][it->first] = true; } } - if( n==d_n_delta ){ - d_has_delta[n] = true; - } } } @@ -108,12 +102,6 @@ bool CegInstantiator::addInstantiation( std::vector< Node >& subs, std::vector< ns = n; proc = true; } - if( d_has_delta.find( ns )!=d_has_delta.end() ){ - //also must set delta to zero - ns = ns.substitute( (TNode)d_n_delta, (TNode)d_zero ); - ns = Rewriter::rewrite( ns ); - computeProgVars( ns ); - } if( proc ){ //try the substitution subs_proc[0][ns][pv_coeff] = true; @@ -180,9 +168,6 @@ bool CegInstantiator::addInstantiation( std::vector< Node >& subs, std::vector< Trace("cegqi-si-inst-debug") << "...equality is " << eq << std::endl; std::map< Node, Node > msum; if( QuantArith::getMonomialSumLit( eq, msum ) ){ - if( !d_n_delta.isNull() ){ - msum.erase( d_n_delta ); - } if( Trace.isOn("cegqi-si-inst-debug") ){ Trace("cegqi-si-inst-debug") << "...got monomial sum: " << std::endl; QuantArith::debugPrintMonomialSum( msum, "cegqi-si-inst-debug" ); @@ -269,9 +254,6 @@ bool CegInstantiator::addInstantiation( std::vector< Node >& subs, std::vector< Trace("cegqi-si-inst-debug") << " substituted : " << satom << ", pol = " << pol << std::endl; std::map< Node, Node > msum; if( QuantArith::getMonomialSumLit( satom, msum ) ){ - if( !d_n_delta.isNull() ){ - msum.erase( d_n_delta ); - } if( Trace.isOn("cegqi-si-inst-debug") ){ Trace("cegqi-si-inst-debug") << "...got monomial sum: " << std::endl; QuantArith::debugPrintMonomialSum( msum, "cegqi-si-inst-debug" ); @@ -358,6 +340,11 @@ bool CegInstantiator::addInstantiation( std::vector< Node >& subs, std::vector< bool CegInstantiator::addInstantiationInc( Node n, Node pv, Node pv_coeff, int styp, std::vector< Node >& subs, std::vector< Node >& vars, std::vector< Node >& coeff, std::vector< Node >& has_coeff, std::vector< int >& subs_typ, unsigned i, unsigned effort ) { + if( styp==2 || styp==-2 ){ + Node delta = d_qe->getTermDatabase()->getVtsDelta(); + n = NodeManager::currentNM()->mkNode( styp==2 ? PLUS : MINUS, n, delta ); + n = Rewriter::rewrite( n ); + } //must ensure variables have been computed for n computeProgVars( n ); //substitute into previous substitutions, when applicable @@ -530,25 +517,7 @@ bool CegInstantiator::addInstantiationCoeff( std::vector< Node >& subs, std::vec } bool CegInstantiator::addInstantiation( std::vector< Node >& subs, std::vector< Node >& vars, std::vector< int >& subs_typ ) { - // do delta rationals - std::map< int, Node > prev; - for( unsigned i=0; igetTermDatabase()->getVtsDelta(); - d_n_delta = delta; - subs[i] = NodeManager::currentNM()->mkNode( subs_typ[i]==2 ? PLUS : MINUS, subs[i], delta ); - } - } - //check if we have already added this instantiation - bool success = d_out->addInstantiation( subs, subs_typ ); - if( !success ){ - //revert the substitution - for( std::map< int, Node >::iterator it = prev.begin(); it != prev.end(); ++it ){ - subs[it->first] = it->second; - } - } - return success; + return d_out->addInstantiation( subs, subs_typ ); } diff --git a/src/theory/quantifiers/inst_strategy_cbqi.h b/src/theory/quantifiers/inst_strategy_cbqi.h index 99c048013..0e6227606 100644 --- a/src/theory/quantifiers/inst_strategy_cbqi.h +++ b/src/theory/quantifiers/inst_strategy_cbqi.h @@ -51,13 +51,11 @@ private: Node d_zero; Node d_one; Node d_true; - Node d_n_delta; QuantifiersEngine * d_qe; CegqiOutput * d_out; //program variable contains cache std::map< Node, std::map< Node, bool > > d_prog_var; std::map< Node, bool > d_inelig; - std::map< Node, bool > d_has_delta; private: //for adding instantiations during check void computeProgVars( Node n );