From b6d5d0b11cf7624cd7a3e0a2f6f77d83d2f7001a Mon Sep 17 00:00:00 2001 From: ajreynol Date: Thu, 3 Nov 2016 15:09:12 -0500 Subject: Add priorities to getNextDecision. Properly handle case for finite types + unbounded heaps in sep logic. Fix another simple memory leak in sygus. --- src/theory/quantifiers/theory_quantifiers.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/theory/quantifiers/theory_quantifiers.cpp') diff --git a/src/theory/quantifiers/theory_quantifiers.cpp b/src/theory/quantifiers/theory_quantifiers.cpp index e97a76ce6..0b4f3c0c7 100644 --- a/src/theory/quantifiers/theory_quantifiers.cpp +++ b/src/theory/quantifiers/theory_quantifiers.cpp @@ -179,8 +179,8 @@ void TheoryQuantifiers::check(Effort e) { getQuantifiersEngine()->check( e ); } -Node TheoryQuantifiers::getNextDecisionRequest(){ - return getQuantifiersEngine()->getNextDecisionRequest(); +Node TheoryQuantifiers::getNextDecisionRequest( unsigned& priority ){ + return getQuantifiersEngine()->getNextDecisionRequest( priority ); } void TheoryQuantifiers::assertUniversal( Node n ){ -- cgit v1.2.3