3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-12-23 15:30:06 -08:00
parent beb4c0f27b
commit 38f74297a9
2 changed files with 12 additions and 6 deletions

View file

@ -295,8 +295,9 @@ namespace dd {
void grobner::add_to_watch(equation& eq) {
SASSERT(!eq.is_processed());
SASSERT(is_tuned());
pdd const& p = eq.poly();
if (is_tuned() && !p.is_val()) {
if (!p.is_val()) {
m_watch[p.var()].push_back(&eq);
}
}