chore(kernel/inductive): cleanup code
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
ba13144094
commit
536b7539c6
1 changed files with 1 additions and 5 deletions
|
@ -91,7 +91,6 @@ Author: Leonardo de Moura
|
|||
Fun (A, C, e, b, u), elim_k A C e p[A,b] (intro_k_i A b u) ==>
|
||||
Fun (A, C, e, b, u), (e_k_i b u v)
|
||||
*/
|
||||
|
||||
namespace lean {
|
||||
namespace inductive {
|
||||
static name g_tmp_prefix = name::mk_internal_unique_name();
|
||||
|
@ -755,7 +754,6 @@ optional<expr> inductive_normalizer_extension::operator()(expr const & e, extens
|
|||
// Check intro num_args
|
||||
if (intro_args.size() != it1->m_num_params + it2->m_num_bu)
|
||||
return none_expr();
|
||||
// std::cout << "Candidate: " << e << "\n";
|
||||
if (it1->m_num_params > 0) {
|
||||
// Global parameters of elim and intro be definitionally equal
|
||||
simple_delayed_justification jst([=]() { return mk_justification("elim/intro global parameters must match", some_expr(e)); });
|
||||
|
@ -764,7 +762,6 @@ optional<expr> inductive_normalizer_extension::operator()(expr const & e, extens
|
|||
return none_expr();
|
||||
}
|
||||
}
|
||||
// std::cout << "global params matched\n";
|
||||
// Number of universe levels must match.
|
||||
if (length(const_levels(elim_fn)) != length(it1->m_level_names))
|
||||
return none_expr();
|
||||
|
@ -776,7 +773,6 @@ optional<expr> inductive_normalizer_extension::operator()(expr const & e, extens
|
|||
std::reverse(ACebu.begin(), ACebu.end());
|
||||
expr r = instantiate(it2->m_comp_rhs_body, ACebu.size(), ACebu.data());
|
||||
r = instantiate_params(r, it1->m_level_names, const_levels(elim_fn));
|
||||
// std::cout << "ELIM/INTRO: " << e << " ==> " << r << "\n";
|
||||
return some_expr(r);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue