From: Morgan Deters Date: Tue, 21 May 2013 22:39:33 +0000 (-0400) Subject: Fix bug 512: an assertion failure only appearing with clang on Mac OS, due to imprope... X-Git-Tag: cvc5-1.0.0~7287^2~33^2~9 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7709fff002e3345bd727eaef2677e28830efb84d;p=cvc5.git Fix bug 512: an assertion failure only appearing with clang on Mac OS, due to improper ITE removal in quantifier instantiations. --- diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp index ee37f331e..53f5d10f3 100644 --- a/src/theory/theory_engine.cpp +++ b/src/theory/theory_engine.cpp @@ -1311,6 +1311,18 @@ theory::LemmaStatus TheoryEngine::lemma(TNode node, bool negated, bool removable d_iteRemover.run(additionalLemmas, iteSkolemMap); additionalLemmas[0] = theory::Rewriter::rewrite(additionalLemmas[0]); + if(Trace.isOn("lemma-ites")) { + Debug("lemma-ites") << "removed ITEs from lemma: " << node << std::endl; + Debug("lemma-ites") << " + now have the following " + << additionalLemmas.size() << " lemma(s):" << std::endl; + for(std::vector::const_iterator i = additionalLemmas.begin(); + i != additionalLemmas.end(); + ++i) { + Debug("lemma-ites") << " + " << *i << std::endl; + } + Debug("lemma-ites") << std::endl; + } + // assert to prop engine d_propEngine->assertLemma(additionalLemmas[0], negated, removable); for (unsigned i = 1; i < additionalLemmas.size(); ++ i) { diff --git a/src/util/ite_removal.cpp b/src/util/ite_removal.cpp index f26bbe0aa..7d4948251 100644 --- a/src/util/ite_removal.cpp +++ b/src/util/ite_removal.cpp @@ -30,7 +30,11 @@ void RemoveITE::run(std::vector& output, IteSkolemMap& iteSkolemMap) { for (unsigned i = 0, i_end = output.size(); i < i_end; ++ i) { std::vector quantVar; - output[i] = run(output[i], output, iteSkolemMap, quantVar); + // Do this in two steps to avoid Node problems(?) + // Appears related to bug 512, splitting this into two lines + // fixes the bug on clang on Mac OS + Node itesRemoved = run(output[i], output, iteSkolemMap, quantVar); + output[i] = itesRemoved; } } diff --git a/test/regress/regress0/Makefile.am b/test/regress/regress0/Makefile.am index 4c14de996..6cdd18403 100644 --- a/test/regress/regress0/Makefile.am +++ b/test/regress/regress0/Makefile.am @@ -151,7 +151,8 @@ BUG_TESTS = \ bug484.smt2 \ bug486.cvc \ bug497.cvc \ - bug507.smt2 + bug507.smt2 \ + bug512.minimized.smt2 TESTS = $(SMT_TESTS) $(SMT2_TESTS) $(CVC_TESTS) $(TPTP_TESTS) $(BUG_TESTS) diff --git a/test/regress/regress0/bug512.minimized.smt2 b/test/regress/regress0/bug512.minimized.smt2 new file mode 100644 index 000000000..5fcbf5a9f --- /dev/null +++ b/test/regress/regress0/bug512.minimized.smt2 @@ -0,0 +1,8 @@ +; EXPECT: unknown +; EXIT: 0 +(set-logic UF) +(declare-sort T 0) +(declare-fun bool_2_U (Bool) T) +(declare-fun U_2_bool (T) Bool) +(assert (forall ((x T)) (= (bool_2_U (U_2_bool x)) x))) +(check-sat)