3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-16 20:40:27 +00:00

add review comment to bug location

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-12-24 12:40:47 -08:00
parent 48cd05c725
commit e978b81c7a
3 changed files with 15 additions and 3 deletions

View file

@ -169,6 +169,13 @@ namespace polysat {
// - side conditions
// - i.lo() == i.lo_val() for each unit interval i
// - i.hi() == i.hi_val() for each unit interval i
// NSB review:
// the bounds added by x < p and p < x in forbidden_intervals
// match_non_max
// use values that are approximations. Then the propagations in
// try_assign_eval are incorrect.
for (auto const& c : get_constraints(v)) {
s.try_assign_eval(c);
}