Skip to content

Commit

Permalink
minor code simplification
Browse files Browse the repository at this point in the history
  • Loading branch information
nunoplopes committed Dec 8, 2022
1 parent 8981d32 commit ca6fed8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/qe/lite/qe_lite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2444,8 +2444,7 @@ namespace {
}

tactic * mk_qe_lite_tactic(ast_manager & m, params_ref const & p) {
return alloc(dependent_expr_state_tactic, m, p,
[](auto& m, auto& p, auto &s) -> dependent_expr_simplifier* { return alloc(qe_lite_simplifier, m, p, s); });
return alloc(dependent_expr_state_tactic, m, p, mk_qe_lite_simplifer);
}

dependent_expr_simplifier* mk_qe_lite_simplifer(ast_manager& m, params_ref const& p, dependent_expr_state& st) {
Expand Down

0 comments on commit ca6fed8

Please sign in to comment.