Skip to content

Commit

Permalink
formatting updates
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed May 2, 2023
1 parent 392266c commit c64d61b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/model/model_smt2_pp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,10 @@ static void pp_funs(std::ostream & out, ast_printer_context & ctx, model_core co
ptr_buffer<func_decl> func_decls;
sort_fun_decls(m, md, func_decls);
for (func_decl * f : func_decls) {
if (recfun_util.is_defined(f) && !recfun_util.is_generated(f)) {
if (recfun_util.is_defined(f) && !recfun_util.is_generated(f))
continue;
}
if (!m.is_considered_uninterpreted(f)) {
if (!m.is_considered_uninterpreted(f))
continue;
}
func_interp * f_i = md.get_func_interp(f);
SASSERT(f->get_arity() == f_i->get_arity());
format_ref body(fm(m));
Expand Down

0 comments on commit c64d61b

Please sign in to comment.