mirror of
https://github.com/Z3Prover/z3
synced 2025-10-10 17:58:06 +00:00
add local search parameters and co-processor mode
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
31c68b6e23
commit
fb4f6d654a
7 changed files with 33 additions and 5 deletions
|
@ -782,6 +782,9 @@ namespace sat {
|
|||
pop_to_base_level();
|
||||
IF_VERBOSE(2, verbose_stream() << "(sat.sat-solver)\n";);
|
||||
SASSERT(at_base_lvl());
|
||||
if (m_config.m_local_search && !m_local_search) {
|
||||
m_local_search = alloc(local_search, *this);
|
||||
}
|
||||
if ((m_config.m_num_threads > 1 || m_local_search) && !m_par) {
|
||||
return check_par(num_lits, lits);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue