3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-11 21:50:52 +00:00

bug fixes

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-06-22 15:01:12 -07:00
parent 9ebe980b44
commit 5752830f71
10 changed files with 112 additions and 46 deletions

View file

@ -50,6 +50,13 @@ namespace sat {
BH_LRB
};
enum pb_solver {
PB_SOLVER,
PB_CIRCUIT,
PB_SORTING,
PB_TOTALIZER
};
struct config {
unsigned long long m_max_memory;
phase_selection m_phase;
@ -99,7 +106,9 @@ namespace sat {
symbol m_psm;
symbol m_glue;
symbol m_glue_psm;
symbol m_psm_glue;
symbol m_psm_glue;
pb_solver m_pb_solver;
// branching heuristic settings.
branching_heuristic m_branching_heuristic;