mirror of
https://github.com/Z3Prover/z3
synced 2025-08-09 04:31:24 +00:00
fix debug build
This commit is contained in:
parent
73a24ca0a9
commit
d9fcfdab34
8 changed files with 12 additions and 10 deletions
|
@ -1401,6 +1401,7 @@ std::ostream& operator<<(std::ostream& out, sort_ref_vector const& e) {
|
|||
|
||||
|
||||
#ifdef Z3DEBUG
|
||||
#include <iostream>
|
||||
void pp(expr const * n, ast_manager & m) {
|
||||
std::cout << mk_ismt2_pp(const_cast<expr*>(n), m) << std::endl;
|
||||
}
|
||||
|
|
|
@ -445,8 +445,6 @@ void static_features::post_process(expr * e, bool form_ctx, bool or_and_ctx, boo
|
|||
}
|
||||
|
||||
unsigned depth = 0;
|
||||
unsigned form_depth = 0;
|
||||
unsigned or_and_depth = 0;
|
||||
unsigned ite_depth = 0;
|
||||
|
||||
auto [form_ctx_new, or_and_ctx_new, ite_ctx_new] = new_ctx(e);
|
||||
|
@ -533,8 +531,6 @@ void static_features::process_root(expr * e) {
|
|||
if (num_args == 2)
|
||||
m_num_bin_clauses++;
|
||||
unsigned depth = 0;
|
||||
unsigned form_depth = 0;
|
||||
unsigned or_and_depth = 0;
|
||||
for (unsigned i = 0; i < num_args; i++) {
|
||||
expr * arg = to_app(e)->get_arg(i);
|
||||
if (m.is_not(arg))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue