mirror of
https://github.com/Z3Prover/z3
synced 2025-10-09 09:21:56 +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
|
@ -36,6 +36,7 @@ namespace sat {
|
|||
m_glue_psm("glue_psm"),
|
||||
m_psm_glue("psm_glue") {
|
||||
m_num_threads = 1;
|
||||
m_local_search = false;
|
||||
updt_params(p);
|
||||
}
|
||||
|
||||
|
@ -79,6 +80,7 @@ namespace sat {
|
|||
|
||||
m_max_conflicts = p.max_conflicts();
|
||||
m_num_threads = p.threads();
|
||||
m_local_search = p.local_search();
|
||||
|
||||
// These parameters are not exposed
|
||||
m_simplify_mult1 = _p.get_uint("simplify_mult1", 300);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue