3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-01-02 19:15:23 -08:00
parent 43e449a805
commit 9cbec3b0ca

View file

@ -129,7 +129,7 @@ namespace q {
r = n;
}
else if (n->generation() == gen) {
if ((++count) % (1 + m_qs.random()) == 0)
if ((m_qs.random() % ++count) == 0)
r = n;
}
if (count > m_max_choose_candidates)