mirror of
https://github.com/Z3Prover/z3
synced 2026-08-02 12:13:25 +00:00
fix build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
31cff62a26
commit
1ff3eaae8c
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue