3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-03-22 04:28:50 +00:00

minor changes

This commit is contained in:
Jakob Rath 2024-02-08 15:25:00 +01:00
parent 705203ea4c
commit 3eb42cdf4b
6 changed files with 8 additions and 11 deletions

View file

@ -1,4 +1,4 @@
/*++
/*++
Copyright (c) 2021 Microsoft Corporation
Module Name:
@ -131,7 +131,7 @@ namespace polysat {
if (l.lo().val() == 0)
val = 0;
else
val = l.manager().max_value() + 1 - l.lo().val();
val = l.manager().two_to_N() - l.lo().val();
return true;
}