mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 03:33:35 +00:00
fix test build
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d24a642ae0
commit
727929c9af
|
@ -238,10 +238,10 @@ static void cnf_backbones(bool use_chunk, char const* file_name) {
|
|||
std::cerr << "(error \"failed to open file '" << file_name << "'\")" << std::endl;
|
||||
exit(ERR_OPEN_FILE);
|
||||
}
|
||||
parse_dimacs(in, solver);
|
||||
if (!parse_dimacs(in, std::cerr, solver)) return;
|
||||
}
|
||||
else {
|
||||
parse_dimacs(std::cin, solver);
|
||||
if (!parse_dimacs(std::cin, std::cerr, solver)) return;
|
||||
}
|
||||
IF_VERBOSE(20, solver.display_status(verbose_stream()););
|
||||
|
||||
|
|
|
@ -34,7 +34,8 @@ void tst_sat_lookahead(char ** argv, int argc, int& i) {
|
|||
std::cerr << "(error \"failed to open file '" << file_name << "'\")" << std::endl;
|
||||
exit(ERR_OPEN_FILE);
|
||||
}
|
||||
parse_dimacs(in, solver);
|
||||
if (!parse_dimacs(in, std::cerr, solver))
|
||||
return;
|
||||
}
|
||||
|
||||
sat::lookahead lh(solver);
|
||||
|
|
Loading…
Reference in a new issue