3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-16 04:20:25 +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

@ -1302,6 +1302,12 @@ namespace sat {
return l_undef;
}
if (false && m_config.m_phase == PS_LOCAL_SEARCH && m_ext) {
IF_VERBOSE(0, verbose_stream() << "WARNING: local search with theories is in testing mode\n");
bounded_local_search();
exit(0);
}
log_stats();
if (m_config.m_max_conflicts > 0 && m_config.m_burst_search > 0) {
m_restart_threshold = m_config.m_burst_search;