Skip to content

Commit

Permalink
revert new solve-eqs
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Nov 8, 2022
1 parent 3a37cfc commit 9ef78fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tactic/core/solve_eqs2_tactic.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ inline tactic * mk_solve_eqs2_tactic(ast_manager& m, params_ref const& p = param
return alloc(dependent_expr_state_tactic, m, p, alloc(solve_eqs2_tactic_factory), "solve-eqs");
}

#if 1
#if 0
inline tactic * mk_solve_eqs_tactic(ast_manager & m, params_ref const & p = params_ref()) {
return mk_solve_eqs2_tactic(m, p);
}
Expand Down
2 changes: 1 addition & 1 deletion src/tactic/core/solve_eqs_tactic.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class tactic;

tactic * mk_solve_eqs1_tactic(ast_manager & m, params_ref const & p = params_ref());

#if 0
#if 1
inline tactic * mk_solve_eqs_tactic(ast_manager & m, params_ref const & p = params_ref()) {
return mk_solve_eqs1_tactic(m, p);
}
Expand Down

0 comments on commit 9ef78fc

Please sign in to comment.