3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-07 11:41:22 +00:00

wip - arith local search

This commit is contained in:
Nikolaj Bjorner 2023-02-20 12:17:14 -08:00
parent 4aa05b2b57
commit 146f0eae06
3 changed files with 49 additions and 33 deletions

View file

@ -62,7 +62,7 @@ namespace sat {
void ddfw::check_with_plugin() {
m_plugin->init_search();
m_steps_since_progress = 0;
while (m_min_sz > 0 && m_steps_since_progress++ <= 1500000) {
while (m_min_sz > 0 && m_steps_since_progress++ <= 150000) {
if (should_reinit_weights()) do_reinit_weights();
else if (do_flip<true>());
else if (do_literal_flip<true>());