3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-01-25 03:24:01 +00:00

fix compiler warnings and errors

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2013-04-03 17:03:07 -07:00
parent 155f629d96
commit afd83f41b8
3 changed files with 11 additions and 4 deletions

View file

@ -220,6 +220,7 @@ static void on_ctrl_c(int) {
raise(SIGINT);
}
#if 0
static void validate_sat(hilbert_basis& hb) {
ast_manager m;
reg_decl_plugins(m);
@ -239,6 +240,7 @@ static void validate_sat(hilbert_basis& hb) {
lbool r = sol->check_sat(0,0);
std::cout << r << "\n";
}
#endif
static void saturate_basis(hilbert_basis& hb) {
signal(SIGINT, on_ctrl_c);