summaryrefslogtreecommitdiff
path: root/src/theory/uf/theory_uf.cpp
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-10-27 17:47:56 -0500
committerAndres Noetzli <andres.noetzli@gmail.com>2019-10-27 15:47:56 -0700
commit3af2dfea22aae0d527fcfa93600c451b323c15b7 (patch)
tree046c84f5f05ca2900d1e8484a45fbf1cba7b91cb /src/theory/uf/theory_uf.cpp
parent24936010e7d0dc644bd2bf1f533ac0abee678f6b (diff)
Fix collect model info for higher-order (#3409)
This ensures we add lemmas when collect model info fails for the higher order extension of UF. This fixes #3405 (that benchmark now answers unknown).
Diffstat (limited to 'src/theory/uf/theory_uf.cpp')
-rw-r--r--src/theory/uf/theory_uf.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/theory/uf/theory_uf.cpp b/src/theory/uf/theory_uf.cpp
index 6284ae31e..76e6e08bc 100644
--- a/src/theory/uf/theory_uf.cpp
+++ b/src/theory/uf/theory_uf.cpp
@@ -324,6 +324,7 @@ bool TheoryUF::collectModelInfo(TheoryModel* m)
if (!m->assertEqualityEngine(&d_equalityEngine, &termSet))
{
+ Trace("uf") << "Collect model info fail UF" << std::endl;
return false;
}
@@ -332,6 +333,7 @@ bool TheoryUF::collectModelInfo(TheoryModel* m)
// function equivalence classes.
if (!d_ho->collectModelInfoHo(termSet, m))
{
+ Trace("uf") << "Collect model info fail HO" << std::endl;
return false;
}
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback