3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

include chronological backtracking, two-phase sat, xor inprocessing, probsat, ddfw

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-06-13 03:34:31 -07:00
parent 46d23ea8d7
commit d17248821a
32 changed files with 3246 additions and 654 deletions

View file

@ -46,7 +46,6 @@ static bool build_instance(char const * filename, sat::solver& s, sat::local_sea
std::cout << "Objective function format error. They have different lengths.\n";
return false;
}
// read the constraints, one at a time
int k;
@ -124,6 +123,6 @@ void tst_sat_local_search(char ** argv, int argc, int& i) {
cancel_eh<reslimit> eh(local_search.rlimit());
scoped_ctrl_c ctrlc(eh, false, true);
scoped_timer timer(cutoff_time*1000, &eh);
local_search.check();
local_search.check(0, nullptr, nullptr);
}