3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-05 10:50:24 +00:00

fix sign for binary propagation hints

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-05-29 10:32:05 -07:00
parent bffa7ff2f6
commit cb279fba2b
3 changed files with 8 additions and 4 deletions

View file

@ -946,6 +946,11 @@ namespace sat {
s += 6;
return true;
}
if (0 == strncmp(s, "cut", 3)) {
h.m_ty = hint_type::cut_h;
s += 3;
return true;
}
return false;
};
@ -999,7 +1004,6 @@ namespace sat {
return;
ws();
}
return;
}
}