2014-06-24 21:55:06 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
|
|
|
#include "util/flet.h"
|
|
|
|
#include "util/list_fn.h"
|
2014-06-25 15:30:09 +00:00
|
|
|
#include "util/lazy_list_fn.h"
|
2014-06-24 21:55:06 +00:00
|
|
|
#include "util/sstream.h"
|
2014-07-02 03:43:53 +00:00
|
|
|
#include "util/name_map.h"
|
2014-06-24 21:55:06 +00:00
|
|
|
#include "kernel/abstract.h"
|
|
|
|
#include "kernel/instantiate.h"
|
|
|
|
#include "kernel/type_checker.h"
|
2014-06-29 16:47:25 +00:00
|
|
|
#include "kernel/for_each_fn.h"
|
2014-06-24 21:55:06 +00:00
|
|
|
#include "kernel/kernel_exception.h"
|
|
|
|
#include "kernel/error_msgs.h"
|
|
|
|
#include "kernel/expr_maps.h"
|
|
|
|
#include "library/coercion.h"
|
|
|
|
#include "library/placeholder.h"
|
|
|
|
#include "library/choice.h"
|
|
|
|
#include "library/explicit.h"
|
|
|
|
#include "library/unifier.h"
|
2014-06-29 16:47:25 +00:00
|
|
|
#include "library/tactic/tactic.h"
|
2014-07-02 03:43:53 +00:00
|
|
|
#include "library/tactic/expr_to_tactic.h"
|
2014-06-29 16:47:25 +00:00
|
|
|
#include "library/error_handling/error_handling.h"
|
2014-06-24 21:55:06 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
class elaborator {
|
2014-06-30 16:14:55 +00:00
|
|
|
typedef list<expr> context;
|
2014-06-24 21:55:06 +00:00
|
|
|
typedef std::vector<constraint> constraints;
|
2014-07-02 03:43:53 +00:00
|
|
|
typedef name_map<expr> tactic_hints;
|
|
|
|
typedef name_map<expr> mvar2meta;
|
2014-06-24 21:55:06 +00:00
|
|
|
|
2014-06-29 16:47:25 +00:00
|
|
|
environment m_env;
|
|
|
|
io_state m_ios;
|
|
|
|
unifier_plugin m_plugin;
|
|
|
|
name_generator m_ngen;
|
|
|
|
type_checker m_tc;
|
|
|
|
substitution m_subst;
|
|
|
|
context m_ctx;
|
|
|
|
pos_info_provider * m_pos_provider;
|
|
|
|
justification m_accumulated; // accumulate justification of eagerly used substitutions
|
|
|
|
constraints m_constraints;
|
2014-07-02 03:43:53 +00:00
|
|
|
tactic_hints m_tactic_hints;
|
|
|
|
mvar2meta m_mvar2meta;
|
2014-06-24 21:55:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Auxiliary object for creating backtracking points.
|
|
|
|
|
|
|
|
\remark A scope can only be created when m_constraints and m_subst are empty,
|
|
|
|
and m_accumulated is none.
|
|
|
|
*/
|
|
|
|
struct scope {
|
|
|
|
elaborator & m_main;
|
|
|
|
context m_old_ctx;
|
|
|
|
scope(elaborator & e, context const & ctx, substitution const & s):m_main(e) {
|
|
|
|
lean_assert(m_main.m_constraints.empty());
|
|
|
|
lean_assert(m_main.m_accumulated.is_none());
|
|
|
|
m_old_ctx = m_main.m_ctx;
|
|
|
|
m_main.m_ctx = ctx;
|
|
|
|
m_main.m_tc.push();
|
|
|
|
m_main.m_subst = s;
|
|
|
|
}
|
|
|
|
~scope() {
|
|
|
|
m_main.m_ctx = m_old_ctx;
|
|
|
|
m_main.m_tc.pop();
|
|
|
|
m_main.m_constraints.clear();
|
|
|
|
m_main.m_accumulated = justification();
|
|
|
|
m_main.m_subst = substitution();
|
|
|
|
lean_assert(m_main.m_constraints.empty());
|
|
|
|
lean_assert(m_main.m_accumulated.is_none());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-06-26 20:35:36 +00:00
|
|
|
void consume_tc_cnstrs() {
|
|
|
|
while (auto c = m_tc.next_cnstr())
|
|
|
|
m_constraints.push_back(*c);
|
|
|
|
}
|
|
|
|
|
2014-06-25 15:30:09 +00:00
|
|
|
struct choice_elaborator {
|
|
|
|
elaborator & m_elab;
|
|
|
|
expr m_choice;
|
|
|
|
context m_ctx;
|
|
|
|
substitution m_subst;
|
|
|
|
unsigned m_idx;
|
|
|
|
choice_elaborator(elaborator & elab, expr const & c, context const & ctx, substitution const & s):
|
|
|
|
m_elab(elab), m_choice(c), m_ctx(ctx), m_subst(s), m_idx(0) {
|
|
|
|
}
|
|
|
|
|
|
|
|
optional<a_choice> next() {
|
|
|
|
while (m_idx < get_num_choices(m_choice)) {
|
|
|
|
expr const & c = get_choice(m_choice, m_idx);
|
|
|
|
m_idx++;
|
|
|
|
try {
|
|
|
|
scope s(m_elab, m_ctx, m_subst);
|
|
|
|
expr r = m_elab.visit(c);
|
|
|
|
justification j = m_elab.m_accumulated;
|
2014-06-26 20:35:36 +00:00
|
|
|
m_elab.consume_tc_cnstrs();
|
2014-06-25 15:30:09 +00:00
|
|
|
list<constraint> cs = to_list(m_elab.m_constraints.begin(), m_elab.m_constraints.end());
|
|
|
|
return optional<a_choice>(r, j, cs);
|
|
|
|
} catch (exception &) {}
|
|
|
|
}
|
|
|
|
return optional<a_choice>();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-06-26 23:02:54 +00:00
|
|
|
lazy_list<a_choice> choose(std::shared_ptr<choice_elaborator> c) {
|
2014-06-25 15:30:09 +00:00
|
|
|
return mk_lazy_list<a_choice>([=]() {
|
|
|
|
auto s = c->next();
|
|
|
|
if (s)
|
|
|
|
return some(mk_pair(*s, choose(c)));
|
|
|
|
else
|
|
|
|
return lazy_list<a_choice>::maybe_pair();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
elaborator(environment const & env, io_state const & ios, name_generator const & ngen,
|
2014-07-02 03:43:53 +00:00
|
|
|
substitution const & s, context const & ctx, pos_info_provider * pp):
|
2014-06-25 15:30:09 +00:00
|
|
|
m_env(env), m_ios(ios),
|
|
|
|
m_plugin([](constraint const &, name_generator const &) { return lazy_list<list<constraint>>(); }),
|
2014-07-02 03:43:53 +00:00
|
|
|
m_ngen(ngen), m_tc(env, m_ngen.mk_child(), mk_default_converter(m_env, optional<module_idx>(0))),
|
2014-06-29 16:47:25 +00:00
|
|
|
m_subst(s), m_ctx(ctx), m_pos_provider(pp) {
|
2014-06-25 15:30:09 +00:00
|
|
|
}
|
|
|
|
|
2014-06-30 16:14:55 +00:00
|
|
|
expr mk_local(name const & n, expr const & t, binder_info const & bi) {
|
|
|
|
return ::lean::mk_local(m_ngen.next(), n, t, bi);
|
2014-06-25 18:04:50 +00:00
|
|
|
}
|
|
|
|
|
2014-06-25 15:30:09 +00:00
|
|
|
expr infer_type(expr const & e) {
|
|
|
|
lean_assert(closed(e));
|
|
|
|
return m_tc.infer(e); }
|
2014-06-25 18:04:50 +00:00
|
|
|
|
|
|
|
expr whnf(expr const & e) {
|
|
|
|
return m_tc.whnf(e);
|
|
|
|
}
|
2014-06-25 15:30:09 +00:00
|
|
|
|
|
|
|
/** \brief Clear constraint buffer \c m_constraints, and associated datastructures
|
|
|
|
\c m_subst and \c m_accumulated.
|
|
|
|
|
|
|
|
\remark \c m_subst contains solutions obtained by eagerly solving the "easy" constraints
|
|
|
|
in \c m_subst, and \c m_accumulated store the justifications of all substitutions eagerly
|
|
|
|
applied.
|
|
|
|
*/
|
|
|
|
void clear_constraints() {
|
|
|
|
m_constraints.clear();
|
|
|
|
m_subst = substitution();
|
|
|
|
m_accumulated = justification();
|
|
|
|
}
|
|
|
|
|
2014-06-24 21:55:06 +00:00
|
|
|
void add_cnstr_core(constraint const & c) {
|
|
|
|
m_constraints.push_back(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Add \c c to \c m_constraints, but also tries to update \c m_subst using \c c.
|
|
|
|
The idea is to "populate" \c m_subst using easy/simple constraints.
|
|
|
|
This trick improves the number of places where coercions can be applied.
|
|
|
|
In the future, we may also use this information to implement eager pruning of choice
|
|
|
|
constraints.
|
|
|
|
|
|
|
|
\remark The justification \c m_accumulated is "appended" to \c c.
|
|
|
|
This justification justifies all substitutions used.
|
|
|
|
|
|
|
|
\remark By appeding \c m_accumulated we know we are not missing any dependency,
|
|
|
|
but this is a coarse approximation of that actual dependencies.
|
|
|
|
*/
|
|
|
|
void add_cnstr(constraint c) {
|
|
|
|
if (!m_accumulated.is_none())
|
|
|
|
c = update_justification(c, mk_composite1(c.get_justification(), m_accumulated));
|
|
|
|
add_cnstr_core(c);
|
|
|
|
auto ss = unify_simple(m_subst, c);
|
|
|
|
m_subst = ss.second;
|
|
|
|
if (ss.first == unify_status::Failed)
|
2014-06-25 16:41:25 +00:00
|
|
|
throw unifier_exception(c.get_justification(), m_subst);
|
2014-06-24 21:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Eagerly instantiate metavars using \c m_subst.
|
|
|
|
|
|
|
|
\remark We update \c m_accumulated with any justifications used.
|
|
|
|
*/
|
|
|
|
expr instantiate_metavars(expr const & e) {
|
|
|
|
auto e_j = m_subst.instantiate_metavars(e);
|
|
|
|
m_accumulated = mk_composite1(m_accumulated, e_j.second);
|
|
|
|
return e_j.first;
|
|
|
|
}
|
|
|
|
|
|
|
|
static expr save_tag(expr && e, tag g) {
|
|
|
|
e.set_tag(g);
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Given <tt>e[l_1, ..., l_n]</tt> and assuming \c m_ctx is
|
|
|
|
<tt>[l_n : A_n[l_1, ..., l_{n-1}], ..., l_1 : A_1 ]</tt>,
|
|
|
|
then the result is
|
|
|
|
<tt>(Pi (x_1 : A_1) ... (x_n : A_n[x_1, ..., x_{n-1}]), e[x_1, ... x_n])</tt>.
|
|
|
|
*/
|
|
|
|
expr pi_abstract_context(expr e, tag g) {
|
|
|
|
for (auto const & p : m_ctx)
|
2014-06-30 16:14:55 +00:00
|
|
|
e = save_tag(Pi(p, e), g);
|
2014-06-24 21:55:06 +00:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
|
|
|
|
expr mk_app(expr const & f, expr const & a, tag g) {
|
|
|
|
return save_tag(::lean::mk_app(f, a), g);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Assuming \c m_ctx is
|
|
|
|
<tt>[l_n : A_n[l_1, ..., l_{n-1}], ..., l_1 : A_1 ]</tt>,
|
|
|
|
return <tt>(f l_1 ... l_n)</tt>.
|
|
|
|
*/
|
|
|
|
expr apply_context(expr const & f, tag g) {
|
|
|
|
buffer<expr> args;
|
|
|
|
for (auto const & p : m_ctx)
|
2014-06-30 16:14:55 +00:00
|
|
|
args.push_back(p);
|
2014-06-24 21:55:06 +00:00
|
|
|
expr r = f;
|
|
|
|
unsigned i = args.size();
|
|
|
|
while (i > 0) {
|
|
|
|
--i;
|
|
|
|
r = mk_app(r, args[i], g);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Assuming \c m_ctx is
|
|
|
|
<tt>[l_n : A_n[l_1, ..., l_{n-1}], ..., l_1 : A_1 ]</tt>,
|
|
|
|
return a fresh metavariable \c ?m with type
|
|
|
|
<tt>(Pi (x_1 : A_1) ... (x_n : A_n[x_1, ..., x_{n-1}]), Type.{?u})</tt>,
|
|
|
|
where \c ?u is a fresh universe metavariable.
|
|
|
|
*/
|
|
|
|
expr mk_type_metavar(tag g) {
|
|
|
|
name n = m_ngen.next();
|
|
|
|
expr s = save_tag(mk_sort(mk_meta_univ(m_ngen.next())), g);
|
|
|
|
expr t = pi_abstract_context(s, g);
|
|
|
|
return save_tag(::lean::mk_metavar(n, t), g);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Assuming \c m_ctx is
|
|
|
|
<tt>[l_n : A_n[l_1, ..., l_{n-1}], ..., l_1 : A_1 ]</tt>,
|
|
|
|
return <tt>(?m l_1 ... l_n)</tt> where \c ?m is a fresh metavariable with type
|
|
|
|
<tt>(Pi (x_1 : A_1) ... (x_n : A_n[x_1, ..., x_{n-1}]), Type.{?u})</tt>,
|
|
|
|
and \c ?u is a fresh universe metavariable.
|
|
|
|
|
|
|
|
\remark The type of the resulting expression is <tt>Type.{?u}</tt>
|
|
|
|
*/
|
|
|
|
expr mk_type_meta(tag g) {
|
|
|
|
return apply_context(mk_type_metavar(g), g);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Given <tt>type[l_1, ..., l_n]</tt> and assuming \c m_ctx is
|
|
|
|
<tt>[l_n : A_n[l_1, ..., l_{n-1}], ..., l_1 : A_1 ]</tt>,
|
|
|
|
then the result is a fresh metavariable \c ?m with type
|
|
|
|
<tt>(Pi (x_1 : A_1) ... (x_n : A_n[x_1, ..., x_{n-1}]), type[x_1, ... x_n])</tt>.
|
|
|
|
If <tt>type</tt> is none, then the result is a fresh metavariable \c ?m1 with type
|
|
|
|
<tt>(Pi (x_1 : A_1) ... (x_n : A_n[x_1, ..., x_{n-1}]), ?m2 x1 .... xn)</tt>,
|
|
|
|
where ?m2 is another fresh metavariable with type
|
|
|
|
<tt>(Pi (x_1 : A_1) ... (x_n : A_n[x_1, ..., x_{n-1}]), Type.{?u})</tt>,
|
|
|
|
and \c ?u is a fresh universe metavariable.
|
|
|
|
*/
|
|
|
|
expr mk_metavar(optional<expr> const & type, tag g) {
|
|
|
|
name n = m_ngen.next();
|
|
|
|
expr r_type = type ? *type : mk_type_meta(g);
|
|
|
|
expr t = pi_abstract_context(r_type, g);
|
|
|
|
return save_tag(::lean::mk_metavar(n, t), g);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Given <tt>type[l_1, ..., l_n]</tt> and assuming \c m_ctx is
|
|
|
|
<tt>[l_n : A_n[l_1, ..., l_{n-1}], ..., l_1 : A_1 ]</tt>,
|
|
|
|
return (?m l_1 ... l_n), where ?m is a fresh metavariable
|
|
|
|
created using \c mk_metavar.
|
|
|
|
|
|
|
|
\see mk_metavar
|
|
|
|
*/
|
|
|
|
expr mk_meta(optional<expr> const & type, tag g) {
|
2014-07-02 03:43:53 +00:00
|
|
|
expr mvar = mk_metavar(type, g);
|
|
|
|
expr meta = apply_context(mvar, g);
|
|
|
|
m_mvar2meta.insert(mlocal_name(mvar), meta);
|
|
|
|
return meta;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Convert the metavariable to the metavariable application that captures
|
|
|
|
the context where it was defined.
|
|
|
|
|
|
|
|
*/
|
|
|
|
optional<expr> mvar_to_meta(expr mvar) {
|
|
|
|
if (auto it = m_mvar2meta.find(mlocal_name(mvar)))
|
|
|
|
return some_expr(*it);
|
|
|
|
else
|
|
|
|
return none_expr();
|
2014-06-24 21:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_expecting_type(expr const & e) {
|
|
|
|
if (is_placeholder(e) && !placeholder_type(e))
|
|
|
|
return mk_type_meta(e.get_tag());
|
|
|
|
else
|
|
|
|
return visit(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_expecting_type_of(expr const & e, expr const & t) {
|
|
|
|
if (is_placeholder(e) && !placeholder_type(e))
|
|
|
|
return mk_meta(some_expr(t), e.get_tag());
|
|
|
|
else if (is_choice(e))
|
|
|
|
return visit_choice(e, some_expr(t));
|
2014-07-02 03:43:53 +00:00
|
|
|
else if (is_by(e))
|
|
|
|
return visit_by(e, some_expr(t));
|
2014-06-24 21:55:06 +00:00
|
|
|
else
|
|
|
|
return visit(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_choice(expr const & e, optional<expr> const & t) {
|
|
|
|
lean_assert(is_choice(e));
|
|
|
|
// Possible optimization: try to lookahead and discard some of the alternatives.
|
2014-06-25 15:30:09 +00:00
|
|
|
expr m = mk_meta(t, e.get_tag());
|
|
|
|
context ctx = m_ctx;
|
|
|
|
auto choice_fn = [=](expr const & /* t */, substitution const & s, name_generator const & /* ngen */) {
|
|
|
|
return choose(std::make_shared<choice_elaborator>(*this, e, ctx, s));
|
2014-06-24 21:55:06 +00:00
|
|
|
};
|
2014-06-26 15:52:40 +00:00
|
|
|
justification j = mk_justification("none of the overloads is applicable", some_expr(e));
|
2014-06-24 21:55:06 +00:00
|
|
|
add_cnstr(mk_choice_cnstr(m, choice_fn, false, j));
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2014-07-02 03:43:53 +00:00
|
|
|
expr visit_by(expr const & e, optional<expr> const & t) {
|
|
|
|
lean_assert(is_by(e));
|
|
|
|
expr m = mk_meta(t, e.get_tag());
|
|
|
|
expr tac = visit(get_by_arg(e));
|
|
|
|
m_tactic_hints.insert(mlocal_name(get_app_fn(m)), tac);
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
|
2014-06-24 21:55:06 +00:00
|
|
|
/**
|
|
|
|
\brief Make sure \c f is really a function, if it is not, try to apply coercions.
|
|
|
|
The result is a pair <tt>new_f, f_type</tt>, where new_f is the new value for \c f,
|
|
|
|
and \c f_type is its type (and a Pi-expression)
|
|
|
|
*/
|
|
|
|
std::pair<expr, expr> ensure_fun(expr f) {
|
|
|
|
expr f_type = infer_type(f);
|
|
|
|
if (!is_pi(f_type))
|
|
|
|
f_type = whnf(f_type);
|
|
|
|
if (!is_pi(f_type) && has_metavar(f_type)) {
|
|
|
|
f_type = whnf(instantiate_metavars(f_type));
|
|
|
|
if (!is_pi(f_type) && is_meta(f_type)) {
|
|
|
|
// let type checker add constraint
|
|
|
|
f_type = m_tc.ensure_pi(f_type, f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!is_pi(f_type)) {
|
|
|
|
// try coercion to function-class
|
|
|
|
optional<expr> c = get_coercion_to_fun(m_env, f_type);
|
|
|
|
if (c) {
|
|
|
|
f = mk_app(*c, f, f.get_tag());
|
|
|
|
f_type = infer_type(f);
|
|
|
|
lean_assert(is_pi(f_type));
|
|
|
|
} else {
|
|
|
|
environment env = m_env;
|
|
|
|
throw_kernel_exception(env, f,
|
|
|
|
[=](formatter const & fmt, options const & o) { return pp_function_expected(fmt, env, o, f); });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lean_assert(is_pi(f_type));
|
|
|
|
return mk_pair(f, f_type);
|
|
|
|
}
|
|
|
|
|
2014-06-27 01:39:23 +00:00
|
|
|
bool has_coercions_from(expr const & a_type) {
|
|
|
|
expr const & a_cls = get_app_fn(whnf(a_type));
|
|
|
|
return is_constant(a_cls) && ::lean::has_coercions_from(m_env, const_name(a_cls));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool has_coercions_to(expr const & d_type) {
|
|
|
|
expr const & d_cls = get_app_fn(whnf(d_type));
|
|
|
|
return is_constant(d_cls) && ::lean::has_coercions_to(m_env, const_name(d_cls));
|
|
|
|
}
|
|
|
|
|
|
|
|
expr apply_coercion(expr const & a, expr a_type, expr d_type) {
|
2014-06-24 21:55:06 +00:00
|
|
|
a_type = whnf(a_type);
|
|
|
|
d_type = whnf(d_type);
|
|
|
|
expr const & d_cls = get_app_fn(d_type);
|
2014-06-27 01:39:23 +00:00
|
|
|
if (is_constant(d_cls)) {
|
|
|
|
if (auto c = get_coercion(m_env, a_type, const_name(d_cls)))
|
|
|
|
return mk_app(*c, a, a.get_tag());
|
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
\brief Given an application \c e, where the expected type is d_type, and the argument type is a_type,
|
|
|
|
create a "delayed coercion". The idea is to create a choice constraint and postpone the coercion
|
|
|
|
search. We do that whenever d_type or a_type is a metavar application, and d_type or a_type is a coercion source/target.
|
|
|
|
*/
|
|
|
|
expr mk_delayed_coercion(expr const & e, expr const & d_type, expr const & a_type) {
|
|
|
|
expr a = app_arg(e);
|
|
|
|
expr m = mk_meta(some_expr(d_type), a.get_tag());
|
|
|
|
auto choice_fn = [=](expr const & new_d_type, substitution const & /* s */, name_generator const & /* ngen */) {
|
|
|
|
expr r = apply_coercion(a, a_type, new_d_type);
|
|
|
|
a_choice c(r, justification(), list<constraint>());
|
|
|
|
return lazy_list<a_choice>(c);
|
|
|
|
};
|
|
|
|
justification j = mk_app_justification(m_env, e, d_type, a_type);
|
|
|
|
add_cnstr(mk_choice_cnstr(m, choice_fn, false, j));
|
|
|
|
return update_app(e, app_fn(e), m);
|
2014-06-24 21:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_app(expr const & e) {
|
2014-06-28 14:30:36 +00:00
|
|
|
bool expl = is_explicit(get_app_fn(e));
|
2014-06-24 21:55:06 +00:00
|
|
|
expr f = visit(app_fn(e));
|
|
|
|
auto f_t = ensure_fun(f);
|
|
|
|
f = f_t.first;
|
2014-06-26 00:47:38 +00:00
|
|
|
expr f_type = f_t.second;
|
|
|
|
lean_assert(is_pi(f_type));
|
2014-06-28 14:30:36 +00:00
|
|
|
if (!expl) {
|
|
|
|
while (is_pi(f_type) && binding_info(f_type).is_strict_implicit()) {
|
|
|
|
tag g = f.get_tag();
|
|
|
|
expr imp_arg = mk_meta(some_expr(binding_domain(f_type)), g);
|
|
|
|
f = mk_app(f, imp_arg, g);
|
|
|
|
f_type = whnf(instantiate(binding_body(f_type), imp_arg));
|
|
|
|
}
|
2014-06-26 00:47:38 +00:00
|
|
|
}
|
|
|
|
expr d_type = binding_domain(f_type);
|
2014-06-24 21:55:06 +00:00
|
|
|
expr a = visit_expecting_type_of(app_arg(e), d_type);
|
|
|
|
expr a_type = instantiate_metavars(infer_type(a));
|
2014-06-25 18:04:50 +00:00
|
|
|
expr r = mk_app(f, a, e.get_tag());
|
2014-06-27 01:39:23 +00:00
|
|
|
|
|
|
|
if (is_meta(d_type) && has_coercions_from(a_type)) {
|
|
|
|
return mk_delayed_coercion(r, d_type, a_type);
|
|
|
|
} else if (is_meta(a_type) && has_coercions_to(d_type)) {
|
|
|
|
return mk_delayed_coercion(r, d_type, a_type);
|
|
|
|
} else {
|
|
|
|
app_delayed_justification j(m_env, r, f_type, a_type);
|
|
|
|
if (!m_tc.is_def_eq(a_type, d_type, j)) {
|
|
|
|
expr new_a = apply_coercion(a, a_type, d_type);
|
|
|
|
bool coercion_worked = false;
|
|
|
|
if (!is_eqp(a, new_a)) {
|
|
|
|
expr new_a_type = instantiate_metavars(infer_type(new_a));
|
|
|
|
coercion_worked = m_tc.is_def_eq(new_a_type, d_type, j);
|
|
|
|
}
|
|
|
|
if (coercion_worked) {
|
|
|
|
r = update_app(r, f, new_a);
|
2014-06-24 21:55:06 +00:00
|
|
|
} else {
|
2014-06-27 01:39:23 +00:00
|
|
|
if (has_metavar(a_type) || has_metavar(d_type)) {
|
|
|
|
// rely on unification hints to solve this constraint
|
|
|
|
add_cnstr(mk_eq_cnstr(a_type, d_type, j.get()));
|
|
|
|
} else {
|
|
|
|
environment env = m_env;
|
|
|
|
throw_kernel_exception(m_env, a,
|
|
|
|
[=](formatter const & fmt, options const & o) {
|
|
|
|
return pp_app_type_mismatch(fmt, env, o, e, d_type, a_type);
|
|
|
|
});
|
|
|
|
}
|
2014-06-24 21:55:06 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-27 01:39:23 +00:00
|
|
|
return r;
|
2014-06-24 21:55:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_placeholder(expr const & e) {
|
|
|
|
return mk_meta(placeholder_type(e), e.get_tag());
|
|
|
|
}
|
|
|
|
|
|
|
|
level replace_univ_placeholder(level const & l) {
|
|
|
|
return replace(l, [&](level const & l) {
|
|
|
|
if (is_placeholder(l))
|
|
|
|
return some_level(mk_meta_univ(m_ngen.next()));
|
|
|
|
else
|
|
|
|
return none_level();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_sort(expr const & e) {
|
|
|
|
return update_sort(e, replace_univ_placeholder(sort_level(e)));
|
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_macro(expr const & e) {
|
|
|
|
// Remark: Macros are not meant to be used in the front end.
|
|
|
|
// Perhaps, we should throw error.
|
|
|
|
buffer<expr> args;
|
|
|
|
for (unsigned i = 0; i < macro_num_args(e); i++)
|
|
|
|
args.push_back(visit(macro_arg(e, i)));
|
|
|
|
return update_macro(e, args.size(), args.data());
|
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_constant(expr const & e) {
|
|
|
|
declaration d = m_env.get(const_name(e));
|
|
|
|
buffer<level> ls;
|
|
|
|
for (level const & l : const_levels(e))
|
|
|
|
ls.push_back(replace_univ_placeholder(l));
|
|
|
|
unsigned num_univ_params = length(d.get_univ_params());
|
|
|
|
if (num_univ_params < ls.size())
|
|
|
|
throw_kernel_exception(m_env, sstream() << "incorrect number of universe levels parameters for '" << const_name(e) << "', #"
|
|
|
|
<< num_univ_params << " expected, #" << ls.size() << " provided");
|
|
|
|
// "fill" with meta universe parameters
|
|
|
|
for (unsigned i = ls.size(); i < num_univ_params; i++)
|
|
|
|
ls.push_back(mk_meta_univ(m_ngen.next()));
|
|
|
|
lean_assert(num_univ_params == ls.size());
|
|
|
|
return update_constant(e, to_list(ls.begin(), ls.end()));
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Make sure \c e is a type. If it is not, then try to apply coercions. */
|
|
|
|
expr ensure_type(expr const & e) {
|
|
|
|
expr t = infer_type(e);
|
|
|
|
if (is_sort(t))
|
|
|
|
return e;
|
|
|
|
t = whnf(t);
|
|
|
|
if (is_sort(t))
|
|
|
|
return e;
|
|
|
|
if (has_metavar(t)) {
|
|
|
|
t = whnf(instantiate_metavars(t));
|
|
|
|
if (is_sort(t))
|
|
|
|
return e;
|
|
|
|
if (is_meta(t)) {
|
|
|
|
// let type checker add constraint
|
|
|
|
m_tc.ensure_sort(t, e);
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
optional<expr> c = get_coercion_to_sort(m_env, t);
|
|
|
|
if (c)
|
|
|
|
return mk_app(*c, e, e.get_tag());
|
|
|
|
environment env = m_env;
|
|
|
|
throw_kernel_exception(env, e,
|
|
|
|
[=](formatter const & fmt, options const & o) { return pp_type_expected(fmt, env, o, e); });
|
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_pi(expr const & e) {
|
|
|
|
expr d = ensure_type(visit_expecting_type(binding_domain(e)));
|
2014-06-30 16:14:55 +00:00
|
|
|
expr l = mk_local(binding_name(e), d, binding_info(e));
|
2014-06-24 21:55:06 +00:00
|
|
|
expr b = instantiate(binding_body(e), l);
|
|
|
|
if (binding_info(e).is_contextual()) {
|
2014-06-30 16:14:55 +00:00
|
|
|
flet<context> set(m_ctx, cons(l, m_ctx));
|
2014-06-24 21:55:06 +00:00
|
|
|
b = ensure_type(visit_expecting_type(b));
|
|
|
|
} else {
|
|
|
|
b = ensure_type(visit_expecting_type(b));
|
|
|
|
}
|
|
|
|
b = abstract(b, l);
|
|
|
|
return update_binding(e, d, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_lambda(expr const & e) {
|
|
|
|
expr d = ensure_type(visit_expecting_type(binding_domain(e)));
|
2014-06-30 16:14:55 +00:00
|
|
|
expr l = mk_local(binding_name(e), d, binding_info(e));
|
2014-06-24 21:55:06 +00:00
|
|
|
expr b = instantiate(binding_body(e), l);
|
|
|
|
if (binding_info(e).is_contextual()) {
|
2014-06-30 16:14:55 +00:00
|
|
|
flet<context> set(m_ctx, cons(l, m_ctx));
|
2014-06-24 21:55:06 +00:00
|
|
|
b = visit(b);
|
|
|
|
} else {
|
|
|
|
b = visit(b);
|
|
|
|
}
|
|
|
|
b = abstract(b, l);
|
|
|
|
return update_binding(e, d, b);
|
|
|
|
}
|
|
|
|
|
|
|
|
expr visit_core(expr const & e) {
|
|
|
|
if (is_placeholder(e)) {
|
|
|
|
return visit_placeholder(e);
|
|
|
|
} else if (is_choice(e)) {
|
|
|
|
return visit_choice(e, none_expr());
|
2014-07-02 03:43:53 +00:00
|
|
|
} else if (is_by(e)) {
|
|
|
|
return visit_by(e, none_expr());
|
2014-06-24 21:55:06 +00:00
|
|
|
} else {
|
|
|
|
switch (e.kind()) {
|
|
|
|
case expr_kind::Local: return e;
|
|
|
|
case expr_kind::Meta: return e;
|
|
|
|
case expr_kind::Sort: return visit_sort(e);
|
|
|
|
case expr_kind::Var: lean_unreachable(); // LCOV_EXCL_LINE
|
|
|
|
case expr_kind::Constant: return visit_constant(e);
|
|
|
|
case expr_kind::Macro: return visit_macro(e);
|
|
|
|
case expr_kind::Lambda: return visit_lambda(e);
|
|
|
|
case expr_kind::Pi: return visit_pi(e);
|
|
|
|
case expr_kind::App: return visit_app(e);
|
|
|
|
}
|
|
|
|
lean_unreachable(); // LCOV_EXCL_LINE
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
expr visit(expr const & e) {
|
|
|
|
expr r;
|
|
|
|
if (is_explicit(e)) {
|
|
|
|
r = visit_core(get_explicit_arg(e));
|
2014-06-28 14:30:36 +00:00
|
|
|
} else if (is_explicit(get_app_fn(e))) {
|
|
|
|
r = visit_core(e);
|
2014-06-24 21:55:06 +00:00
|
|
|
} else {
|
2014-06-25 15:30:09 +00:00
|
|
|
r = visit_core(e);
|
|
|
|
if (!is_lambda(r)) {
|
|
|
|
tag g = e.get_tag();
|
|
|
|
expr r_type = whnf(infer_type(r));
|
|
|
|
expr imp_arg;
|
|
|
|
while (is_pi(r_type) && binding_info(r_type).is_implicit()) {
|
|
|
|
imp_arg = mk_meta(some_expr(binding_domain(r_type)), g);
|
|
|
|
r = mk_app(r, imp_arg, g);
|
|
|
|
r_type = whnf(instantiate(binding_body(r_type), imp_arg));
|
|
|
|
}
|
2014-06-24 21:55:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
2014-06-25 15:30:09 +00:00
|
|
|
|
|
|
|
lazy_list<substitution> solve() {
|
2014-06-26 20:35:36 +00:00
|
|
|
consume_tc_cnstrs();
|
2014-06-25 15:30:09 +00:00
|
|
|
buffer<constraint> cs;
|
|
|
|
cs.append(m_constraints);
|
|
|
|
m_constraints.clear();
|
|
|
|
return unify(m_env, cs.size(), cs.data(), m_ngen.mk_child(), m_plugin,
|
|
|
|
true, get_unifier_max_steps(m_ios.get_options()));
|
|
|
|
}
|
|
|
|
|
2014-06-29 16:47:25 +00:00
|
|
|
void collect_metavars(expr const & e, buffer<expr> & mvars) {
|
|
|
|
for_each(e, [&](expr const & e, unsigned) {
|
2014-07-02 03:43:53 +00:00
|
|
|
if (is_metavar(e)) {
|
|
|
|
mvars.push_back(e);
|
|
|
|
return false; /* do not visit its type */
|
|
|
|
}
|
2014-06-29 16:47:25 +00:00
|
|
|
return has_metavar(e);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-07-02 17:35:43 +00:00
|
|
|
format pp_indent_expr(expr const & e) {
|
|
|
|
return ::lean::pp_indent_expr(m_ios.get_formatter(), m_env, m_ios.get_options(), e);
|
|
|
|
}
|
|
|
|
|
2014-07-02 03:43:53 +00:00
|
|
|
optional<tactic> get_tactic_for(substitution const & substitution, expr const & mvar) {
|
|
|
|
if (auto it = m_tactic_hints.find(mlocal_name(mvar))) {
|
|
|
|
expr pre_tac = substitution.instantiate_metavars_wo_jst(*it);
|
2014-07-02 17:35:43 +00:00
|
|
|
try {
|
|
|
|
return optional<tactic>(expr_to_tactic(m_env, pre_tac, m_pos_provider));
|
|
|
|
} catch (expr_to_tactic_exception & ex) {
|
|
|
|
regular out(m_env, m_ios);
|
|
|
|
display_error_pos(out, m_pos_provider, mvar);
|
|
|
|
out << " " << ex.what();
|
|
|
|
out << pp_indent_expr(pre_tac) << endl << "failed at:" << pp_indent_expr(ex.get_expr()) << endl;
|
|
|
|
return optional<tactic>();
|
|
|
|
}
|
2014-06-29 16:47:25 +00:00
|
|
|
} else {
|
|
|
|
// TODO(Leo): m_env tactic hints
|
|
|
|
return optional<tactic>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void display_unsolved_proof_state(expr const & mvar, proof_state const & ps, char const * msg) {
|
|
|
|
regular out(m_env, m_ios);
|
|
|
|
display_error_pos(out, m_pos_provider, mvar);
|
|
|
|
out << " unsolved placeholder, " << msg << "\n" << ps << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
expr solve_unassigned_mvars(substitution & subst, expr const & e) {
|
|
|
|
buffer<expr> mvars;
|
|
|
|
collect_metavars(e, mvars);
|
|
|
|
for (auto mvar : mvars) {
|
2014-07-02 03:43:53 +00:00
|
|
|
if (auto meta = mvar_to_meta(mvar)) {
|
|
|
|
buffer<expr> locals;
|
|
|
|
get_app_args(*meta, locals);
|
|
|
|
for (expr & l : locals)
|
|
|
|
l = subst.instantiate_metavars_wo_jst(l);
|
|
|
|
mvar = update_mlocal(mvar, subst.instantiate_metavars_wo_jst(mlocal_type(mvar)));
|
|
|
|
meta = ::lean::mk_app(mvar, locals);
|
|
|
|
expr type = m_tc.infer(*meta);
|
2014-07-02 20:14:50 +00:00
|
|
|
proof_state ps(goals(goal(*meta, type)), subst, m_ngen.mk_child());
|
2014-07-02 03:43:53 +00:00
|
|
|
if (optional<tactic> t = get_tactic_for(subst, mvar)) {
|
2014-07-02 21:09:01 +00:00
|
|
|
try {
|
|
|
|
proof_state_seq seq = (*t)(m_env, m_ios, ps);
|
|
|
|
if (auto r = seq.pull()) {
|
|
|
|
subst = r->first.get_subst();
|
|
|
|
expr v = subst.instantiate_metavars_wo_jst(mvar);
|
|
|
|
if (has_metavar(v)) {
|
|
|
|
display_unsolved_proof_state(mvar, r->first, "unsolved subgoals");
|
|
|
|
} else {
|
|
|
|
subst = subst.assign(mlocal_name(mvar), v);
|
|
|
|
}
|
2014-07-02 03:43:53 +00:00
|
|
|
} else {
|
2014-07-02 21:09:01 +00:00
|
|
|
// tactic failed to produce any result
|
|
|
|
display_unsolved_proof_state(mvar, ps, "tactic failed");
|
2014-07-02 03:43:53 +00:00
|
|
|
}
|
2014-07-02 21:09:01 +00:00
|
|
|
} catch (tactic_exception & ex) {
|
|
|
|
regular out(m_env, m_ios);
|
|
|
|
display_error_pos(out, m_pos_provider, ex.get_expr());
|
|
|
|
out << " tactic failed: " << ex.what() << "\n";
|
2014-06-29 16:47:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return subst.instantiate_metavars_wo_jst(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Apply substitution and solve remaining metavariables using tactics. */
|
|
|
|
expr apply(substitution & s, expr const & e) {
|
|
|
|
expr r = s.instantiate_metavars_wo_jst(e);
|
|
|
|
return solve_unassigned_mvars(s, r);
|
|
|
|
}
|
|
|
|
|
2014-06-25 15:30:09 +00:00
|
|
|
expr operator()(expr const & e) {
|
|
|
|
expr r = visit(e);
|
|
|
|
auto p = solve().pull();
|
|
|
|
lean_assert(p);
|
|
|
|
substitution s = p->first;
|
2014-06-29 16:47:25 +00:00
|
|
|
return apply(s, r);
|
2014-06-25 15:30:09 +00:00
|
|
|
}
|
|
|
|
|
2014-06-30 07:51:11 +00:00
|
|
|
static format pp_type_mismatch(formatter const & fmt, environment const & env, options const & opts,
|
|
|
|
expr const & expected_type, expr const & given_type) {
|
|
|
|
format r("type mismatch, expected type");
|
2014-07-02 17:35:43 +00:00
|
|
|
r += ::lean::pp_indent_expr(fmt, env, opts, expected_type);
|
2014-06-30 07:51:11 +00:00
|
|
|
r += compose(line(), format("given type:"));
|
2014-07-02 17:35:43 +00:00
|
|
|
r += ::lean::pp_indent_expr(fmt, env, opts, given_type);
|
2014-06-30 07:51:11 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
expr operator()(expr const & e, expr const & expected_type) {
|
|
|
|
expr r = visit(e);
|
|
|
|
expr r_type = infer_type(r);
|
|
|
|
environment env = m_env;
|
|
|
|
justification j = mk_justification(e, [=](formatter const & fmt, options const & opts, substitution const & subst) {
|
|
|
|
return pp_type_mismatch(fmt, env, opts,
|
|
|
|
subst.instantiate_metavars_wo_jst(expected_type),
|
|
|
|
subst.instantiate_metavars_wo_jst(r_type));
|
|
|
|
});
|
|
|
|
if (!m_tc.is_def_eq(r_type, expected_type, j)) {
|
|
|
|
throw_kernel_exception(env, e,
|
|
|
|
[=](formatter const & fmt, options const & o) {
|
|
|
|
return pp_type_mismatch(fmt, env, o, expected_type, r_type);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
auto p = solve().pull();
|
|
|
|
lean_assert(p);
|
|
|
|
substitution s = p->first;
|
|
|
|
return apply(s, r);
|
|
|
|
}
|
|
|
|
|
2014-06-25 15:30:09 +00:00
|
|
|
std::pair<expr, expr> operator()(expr const & t, expr const & v, name const & n) {
|
|
|
|
expr r_t = visit(t);
|
|
|
|
expr r_v = visit(v);
|
|
|
|
expr r_v_type = infer_type(r_v);
|
|
|
|
environment env = m_env;
|
|
|
|
justification j = mk_justification(v, [=](formatter const & fmt, options const & o, substitution const & subst) {
|
|
|
|
return pp_def_type_mismatch(fmt, env, o, n,
|
|
|
|
subst.instantiate_metavars_wo_jst(r_t),
|
|
|
|
subst.instantiate_metavars_wo_jst(r_v_type));
|
|
|
|
});
|
|
|
|
if (!m_tc.is_def_eq(r_v_type, r_t, j)) {
|
|
|
|
throw_kernel_exception(env, v,
|
|
|
|
[=](formatter const & fmt, options const & o) {
|
|
|
|
return pp_def_type_mismatch(fmt, env, o, n, r_t, r_v_type);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
auto p = solve().pull();
|
|
|
|
lean_assert(p);
|
|
|
|
substitution s = p->first;
|
2014-06-29 16:47:25 +00:00
|
|
|
return mk_pair(apply(s, r_t), apply(s, r_v));
|
2014-06-25 15:30:09 +00:00
|
|
|
}
|
2014-06-24 21:55:06 +00:00
|
|
|
};
|
2014-06-25 15:30:09 +00:00
|
|
|
|
|
|
|
static name g_tmp_prefix = name::mk_internal_unique_name();
|
|
|
|
|
|
|
|
expr elaborate(environment const & env, io_state const & ios, expr const & e, name_generator const & ngen,
|
2014-07-02 03:43:53 +00:00
|
|
|
substitution const & s, list<expr> const & ctx, pos_info_provider * pp) {
|
|
|
|
return elaborator(env, ios, ngen, s, ctx, pp)(e);
|
2014-06-25 15:30:09 +00:00
|
|
|
}
|
|
|
|
|
2014-07-02 03:43:53 +00:00
|
|
|
expr elaborate(environment const & env, io_state const & ios, expr const & e, pos_info_provider * pp) {
|
|
|
|
return elaborate(env, ios, e, name_generator(g_tmp_prefix), substitution(), list<expr>(), pp);
|
2014-06-25 15:30:09 +00:00
|
|
|
}
|
|
|
|
|
2014-06-29 14:03:25 +00:00
|
|
|
std::pair<expr, expr> elaborate(environment const & env, io_state const & ios, name const & n, expr const & t, expr const & v,
|
2014-07-02 03:43:53 +00:00
|
|
|
pos_info_provider * pp) {
|
|
|
|
return elaborator(env, ios, name_generator(g_tmp_prefix), substitution(), list<expr>(), pp)(t, v, n);
|
2014-06-25 15:30:09 +00:00
|
|
|
}
|
2014-06-30 07:51:11 +00:00
|
|
|
|
|
|
|
expr elaborate(environment const & env, io_state const & ios, expr const & e, expr const & expected_type, name_generator const & ngen,
|
2014-07-02 03:43:53 +00:00
|
|
|
list<expr> const & ctx, pos_info_provider * pp) {
|
|
|
|
return elaborator(env, ios, ngen, substitution(), ctx, pp)(e, expected_type);
|
2014-06-30 07:51:11 +00:00
|
|
|
}
|
2014-06-24 21:55:06 +00:00
|
|
|
}
|