3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-08-01 19:54:04 +00:00

fix build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2026-07-28 11:49:55 -07:00
parent 31cff62a26
commit 1ff3eaae8c

View file

@ -67,7 +67,7 @@ int int_branch::find_inf_int_base_column() {
auto add_column = [&](bool improved, int &result, unsigned &n, unsigned j) {
if (result == -1)
result = j;
else if (improved && ((random() % (++n)) == 0))
else if (improved && (lra.settings().random_next() % (++n)) == 0)
result = j;
};