mirror of
https://github.com/Z3Prover/z3
synced 2025-08-06 11:20:26 +00:00
bug fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
bb4888ce31
commit
4c1379e8c9
22 changed files with 238 additions and 580 deletions
|
@ -73,6 +73,11 @@ namespace sat {
|
|||
adaptive_psat_cutoff
|
||||
};
|
||||
|
||||
enum local_search_mode {
|
||||
gsat,
|
||||
wsat
|
||||
};
|
||||
|
||||
struct config {
|
||||
unsigned long long m_max_memory;
|
||||
phase_selection m_phase;
|
||||
|
@ -90,6 +95,7 @@ namespace sat {
|
|||
unsigned m_num_threads;
|
||||
unsigned m_local_search_threads;
|
||||
bool m_local_search;
|
||||
local_search_mode m_local_search_mode;
|
||||
unsigned m_unit_walk_threads;
|
||||
bool m_unit_walk;
|
||||
bool m_lookahead_simplify;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue