3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-22 13:53:39 +00:00

fix local search

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2017-03-14 13:47:01 -07:00
parent 51951a3683
commit 5c6cef4735
3 changed files with 81 additions and 37 deletions

View file

@ -11,7 +11,6 @@ void tst_sat_lookahead(char ** argv, int argc, int& i) {
reslimit limit;
params_ref params;
sat::solver solver(params, limit);
sat::lookahead lh(solver);
char const* file_name = argv[i + 1];
++i;
@ -24,6 +23,8 @@ void tst_sat_lookahead(char ** argv, int argc, int& i) {
parse_dimacs(in, solver);
}
sat::lookahead lh(solver);
IF_VERBOSE(20, solver.display_status(verbose_stream()););
std::cout << lh.check() << "\n";