2013-09-13 01:25:38 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
2013-10-29 10:00:43 +00:00
|
|
|
#include <utility>
|
2013-10-27 18:02:29 +00:00
|
|
|
#include <vector>
|
2013-09-13 01:25:38 +00:00
|
|
|
#include <limits>
|
2013-10-16 20:26:31 +00:00
|
|
|
#include <algorithm>
|
2013-09-16 02:50:48 +00:00
|
|
|
#include "util/exception.h"
|
2013-09-13 01:25:38 +00:00
|
|
|
#include "kernel/metavar.h"
|
|
|
|
#include "kernel/free_vars.h"
|
2013-09-17 02:21:40 +00:00
|
|
|
#include "kernel/instantiate.h"
|
2013-09-13 01:25:38 +00:00
|
|
|
#include "kernel/occurs.h"
|
2013-11-19 19:24:02 +00:00
|
|
|
#include "kernel/for_each_fn.h"
|
2013-11-19 21:03:46 +00:00
|
|
|
#include "kernel/find_fn.h"
|
2013-09-13 01:25:38 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2013-10-27 18:02:29 +00:00
|
|
|
/**
|
|
|
|
\brief Assignment normalization justification. That is, when other assignments are applied to an existing assignment.
|
|
|
|
*/
|
|
|
|
class normalize_assignment_justification : public justification_cell {
|
|
|
|
context m_ctx;
|
|
|
|
expr m_expr;
|
|
|
|
std::vector<justification> m_jsts;
|
|
|
|
public:
|
|
|
|
normalize_assignment_justification(context const & ctx, expr const & e,
|
|
|
|
justification const & jst,
|
|
|
|
unsigned num_assignment_jsts, justification const * assignment_jsts):
|
|
|
|
m_ctx(ctx),
|
|
|
|
m_expr(e),
|
|
|
|
m_jsts(assignment_jsts, assignment_jsts + num_assignment_jsts) {
|
|
|
|
m_jsts.push_back(jst);
|
|
|
|
std::reverse(m_jsts.begin(), m_jsts.end());
|
2013-09-13 01:25:38 +00:00
|
|
|
}
|
|
|
|
|
2013-10-27 18:02:29 +00:00
|
|
|
virtual format pp_header(formatter const & fmt, options const & opts) const {
|
|
|
|
unsigned indent = get_pp_indent(opts);
|
|
|
|
format expr_fmt = fmt(m_ctx, m_expr, false, opts);
|
|
|
|
format r;
|
|
|
|
r += format("Normalize assignment");
|
|
|
|
r += nest(indent, compose(line(), expr_fmt));
|
2013-09-27 01:24:45 +00:00
|
|
|
return r;
|
|
|
|
}
|
2013-10-27 18:02:29 +00:00
|
|
|
|
|
|
|
virtual void get_children(buffer<justification_cell*> & r) const {
|
|
|
|
append(r, m_jsts);
|
|
|
|
}
|
|
|
|
|
2013-12-08 18:34:38 +00:00
|
|
|
virtual optional<expr> get_main_expr() const { return some_expr(m_expr); }
|
2013-10-27 18:02:29 +00:00
|
|
|
};
|
2013-09-13 01:25:38 +00:00
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
void metavar_env_cell::inc_timestamp() {
|
2013-10-02 00:25:17 +00:00
|
|
|
if (m_timestamp == std::numeric_limits<unsigned>::max()) {
|
|
|
|
// This should not happen in real examples. We add it just to be safe.
|
2013-12-13 01:47:11 +00:00
|
|
|
throw exception("metavar_env_cell timestamp overflow");
|
2013-10-02 00:25:17 +00:00
|
|
|
}
|
|
|
|
m_timestamp++;
|
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
metavar_env_cell::metavar_env_cell(name const & prefix):
|
2013-10-02 00:25:17 +00:00
|
|
|
m_name_generator(prefix),
|
2013-10-27 18:02:29 +00:00
|
|
|
m_beta_reduce_mv(true),
|
2013-12-13 01:47:11 +00:00
|
|
|
m_timestamp(1),
|
|
|
|
m_rc(0) {
|
2013-10-02 00:25:17 +00:00
|
|
|
}
|
|
|
|
|
2013-11-07 18:16:22 +00:00
|
|
|
static name g_default_name("M");
|
2013-12-13 01:47:11 +00:00
|
|
|
metavar_env_cell::metavar_env_cell():
|
|
|
|
metavar_env_cell(g_default_name) {
|
2013-10-02 00:25:17 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
metavar_env_cell::metavar_env_cell(metavar_env_cell const & other):
|
|
|
|
m_name_generator(other.m_name_generator),
|
|
|
|
m_metavar_data(other.m_metavar_data),
|
|
|
|
m_beta_reduce_mv(other.m_beta_reduce_mv),
|
|
|
|
m_timestamp(0),
|
|
|
|
m_rc(0) {
|
|
|
|
}
|
|
|
|
|
|
|
|
expr metavar_env_cell::mk_metavar(context const & ctx, optional<expr> const & type) {
|
2013-10-02 00:25:17 +00:00
|
|
|
inc_timestamp();
|
|
|
|
name m = m_name_generator.next();
|
|
|
|
expr r = ::lean::mk_metavar(m);
|
2013-10-25 18:02:19 +00:00
|
|
|
m_metavar_data.insert(m, data(type, ctx));
|
2013-10-02 00:25:17 +00:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
context metavar_env_cell::get_context(expr const & m) const {
|
2013-10-02 00:25:17 +00:00
|
|
|
lean_assert(is_metavar(m));
|
|
|
|
lean_assert(!has_local_context(m));
|
|
|
|
return get_context(metavar_name(m));
|
2013-09-13 01:25:38 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
context metavar_env_cell::get_context(name const & m) const {
|
2013-12-13 01:27:30 +00:00
|
|
|
auto it = m_metavar_data.find(m);
|
2013-10-25 18:02:19 +00:00
|
|
|
lean_assert(it);
|
|
|
|
return it->m_context;
|
2013-09-13 01:25:38 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
expr metavar_env_cell::get_type(expr const & m) {
|
2013-10-02 00:25:17 +00:00
|
|
|
lean_assert(is_metavar(m));
|
|
|
|
expr t = get_type(metavar_name(m));
|
|
|
|
if (has_local_context(m)) {
|
|
|
|
if (is_metavar(t)) {
|
|
|
|
return update_metavar(t, append(metavar_lctx(m), metavar_lctx(t)));
|
|
|
|
} else {
|
2013-12-13 01:47:11 +00:00
|
|
|
return apply_local_context(t, metavar_lctx(m), metavar_env(this));
|
2013-10-02 00:25:17 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
expr metavar_env_cell::get_type(name const & m) {
|
2013-12-13 01:27:30 +00:00
|
|
|
auto it = m_metavar_data.find(m);
|
2013-10-25 18:02:19 +00:00
|
|
|
lean_assert(it);
|
|
|
|
if (it->m_type) {
|
2013-12-08 07:21:07 +00:00
|
|
|
return *(it->m_type);
|
2013-10-02 00:25:17 +00:00
|
|
|
} else {
|
|
|
|
expr t = mk_metavar(get_context(m));
|
2013-10-25 18:02:19 +00:00
|
|
|
it->m_type = t;
|
2013-10-02 00:25:17 +00:00
|
|
|
return t;
|
|
|
|
}
|
2013-09-27 01:24:45 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
bool metavar_env_cell::has_type(name const & m) const {
|
2013-12-13 01:27:30 +00:00
|
|
|
auto it = m_metavar_data.find(m);
|
2013-10-25 18:02:19 +00:00
|
|
|
lean_assert(it);
|
2013-12-03 07:02:39 +00:00
|
|
|
return static_cast<bool>(it->m_type);
|
2013-10-16 20:26:31 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
bool metavar_env_cell::has_type(expr const & m) const {
|
2013-10-16 20:26:31 +00:00
|
|
|
lean_assert(is_metavar(m));
|
|
|
|
return has_type(metavar_name(m));
|
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
optional<justification> metavar_env_cell::get_justification(expr const & m) const {
|
2013-10-16 20:26:31 +00:00
|
|
|
lean_assert(is_metavar(m));
|
2013-10-23 20:42:14 +00:00
|
|
|
return get_justification(metavar_name(m));
|
2013-10-16 20:26:31 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
optional<justification> metavar_env_cell::get_justification(name const & m) const {
|
2013-12-08 07:21:07 +00:00
|
|
|
auto r = get_subst_jst(m);
|
|
|
|
if (r)
|
|
|
|
return optional<justification>(r->second);
|
|
|
|
else
|
|
|
|
return optional<justification>();
|
2013-10-16 20:26:31 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
bool metavar_env_cell::is_assigned(name const & m) const {
|
2013-12-13 01:27:30 +00:00
|
|
|
auto it = m_metavar_data.find(m);
|
2013-10-27 18:02:29 +00:00
|
|
|
return it && it->m_subst;
|
2013-10-02 00:25:17 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
bool metavar_env_cell::is_assigned(expr const & m) const {
|
2013-10-02 00:25:17 +00:00
|
|
|
lean_assert(is_metavar(m));
|
|
|
|
return is_assigned(metavar_name(m));
|
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
void metavar_env_cell::assign(name const & m, expr const & t, justification const & jst) {
|
2013-10-02 00:25:17 +00:00
|
|
|
lean_assert(!is_assigned(m));
|
|
|
|
inc_timestamp();
|
2013-12-13 01:27:30 +00:00
|
|
|
auto it = m_metavar_data.find(m);
|
2013-10-27 18:02:29 +00:00
|
|
|
lean_assert(it);
|
|
|
|
it->m_subst = t;
|
|
|
|
it->m_justification = jst;
|
2013-10-02 00:25:17 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
void metavar_env_cell::assign(expr const & m, expr const & t, justification const & j) {
|
2013-10-02 00:25:17 +00:00
|
|
|
lean_assert(is_metavar(m));
|
|
|
|
lean_assert(!has_local_context(m));
|
2013-10-23 20:42:14 +00:00
|
|
|
assign(metavar_name(m), t, j);
|
2013-09-27 01:24:45 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
expr apply_local_context(expr const & a, local_context const & lctx, optional<metavar_env> const & menv) {
|
2013-10-27 18:02:29 +00:00
|
|
|
if (lctx) {
|
|
|
|
if (is_metavar(a)) {
|
|
|
|
return mk_metavar(metavar_name(a), append(lctx, metavar_lctx(a)));
|
|
|
|
} else {
|
2013-12-13 01:47:11 +00:00
|
|
|
expr r = apply_local_context(a, tail(lctx), menv);
|
2013-10-27 18:02:29 +00:00
|
|
|
local_entry const & e = head(lctx);
|
|
|
|
if (e.is_lift()) {
|
2013-12-13 01:47:11 +00:00
|
|
|
return lift_free_vars(r, e.s(), e.n(), menv);
|
2013-10-27 18:02:29 +00:00
|
|
|
} else {
|
|
|
|
lean_assert(e.is_inst());
|
2013-12-13 01:47:11 +00:00
|
|
|
return instantiate(r, e.s(), e.v(), menv);
|
2013-10-27 18:02:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return a;
|
2013-10-16 00:32:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
optional<std::pair<expr, justification>> metavar_env_cell::get_subst_jst(expr const & m) const {
|
2013-10-27 18:02:29 +00:00
|
|
|
lean_assert(is_metavar(m));
|
2013-10-29 09:39:52 +00:00
|
|
|
auto p = get_subst_jst(metavar_name(m));
|
2013-12-08 07:21:07 +00:00
|
|
|
if (p) {
|
|
|
|
expr r = p->first;
|
2013-10-29 09:39:52 +00:00
|
|
|
local_context const & lctx = metavar_lctx(m);
|
|
|
|
if (lctx)
|
2013-12-13 01:47:11 +00:00
|
|
|
r = apply_local_context(r, lctx, metavar_env(const_cast<metavar_env_cell*>(this)));
|
2013-12-08 07:21:07 +00:00
|
|
|
return some(mk_pair(r, p->second));
|
2013-10-29 09:39:52 +00:00
|
|
|
} else {
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
optional<std::pair<expr, justification>> metavar_env_cell::get_subst_jst(name const & m) const {
|
|
|
|
auto it = const_cast<metavar_env_cell*>(this)->m_metavar_data.find(m);
|
2013-10-27 18:02:29 +00:00
|
|
|
if (it->m_subst) {
|
2013-12-08 07:21:07 +00:00
|
|
|
expr s = *(it->m_subst);
|
2013-12-13 01:47:11 +00:00
|
|
|
if (has_assigned_metavar(s)) {
|
2013-10-27 18:02:29 +00:00
|
|
|
buffer<justification> jsts;
|
2013-12-13 01:47:11 +00:00
|
|
|
expr new_subst = instantiate_metavars(s, jsts);
|
2013-10-27 18:02:29 +00:00
|
|
|
if (!jsts.empty()) {
|
2013-12-13 01:47:11 +00:00
|
|
|
justification new_jst(new normalize_assignment_justification(it->m_context, s, it->m_justification,
|
|
|
|
jsts.size(), jsts.data()));
|
|
|
|
it->m_justification = new_jst;
|
2013-10-27 18:02:29 +00:00
|
|
|
it->m_subst = new_subst;
|
|
|
|
}
|
|
|
|
}
|
2013-12-08 07:21:07 +00:00
|
|
|
return optional<std::pair<expr, justification>>(std::pair<expr, justification>(*(it->m_subst), it->m_justification));
|
2013-10-23 23:35:47 +00:00
|
|
|
} else {
|
2013-12-08 07:21:07 +00:00
|
|
|
return optional<std::pair<expr, justification>>();
|
2013-10-23 23:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
optional<expr> metavar_env_cell::get_subst(name const & m) const {
|
2013-12-08 07:21:07 +00:00
|
|
|
auto r = get_subst_jst(m);
|
|
|
|
if (r)
|
2013-12-08 18:34:38 +00:00
|
|
|
return some_expr(r->first);
|
2013-12-08 07:21:07 +00:00
|
|
|
else
|
2013-12-08 18:34:38 +00:00
|
|
|
return none_expr();
|
2013-11-16 22:44:33 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
optional<expr> metavar_env_cell::get_subst(expr const & m) const {
|
2013-12-08 07:21:07 +00:00
|
|
|
auto r = get_subst_jst(m);
|
|
|
|
if (r)
|
2013-12-08 18:34:38 +00:00
|
|
|
return some_expr(r->first);
|
2013-12-08 07:21:07 +00:00
|
|
|
else
|
2013-12-08 18:34:38 +00:00
|
|
|
return none_expr();
|
2013-10-29 09:39:52 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
bool metavar_env_cell::has_assigned_metavar(expr const & e) const {
|
|
|
|
if (!has_metavar(e)) {
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
bool result = false;
|
|
|
|
for_each(e, [&](expr const & n, unsigned) {
|
|
|
|
if (result)
|
|
|
|
return false;
|
|
|
|
if (!has_metavar(n))
|
|
|
|
return false;
|
|
|
|
if (is_metavar(n) && is_assigned(n)) {
|
|
|
|
result = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
});
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool metavar_env_cell::has_metavar(expr const & e, expr const & m) const {
|
|
|
|
if (has_metavar(e)) {
|
|
|
|
lean_assert(is_metavar(m));
|
|
|
|
lean_assert(!is_assigned(m));
|
|
|
|
return static_cast<bool>(find(e, [&](expr const & m2) {
|
|
|
|
return
|
|
|
|
is_metavar(m2) &&
|
|
|
|
((metavar_name(m) == metavar_name(m2)) ||
|
|
|
|
(is_assigned(m2) && has_metavar(*get_subst(m2), m)));
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-27 18:02:29 +00:00
|
|
|
class instantiate_metavars_proc : public replace_visitor {
|
|
|
|
protected:
|
2013-12-13 01:47:11 +00:00
|
|
|
metavar_env_cell const * m_menv;
|
|
|
|
buffer<justification> & m_jsts;
|
2013-10-27 18:02:29 +00:00
|
|
|
|
|
|
|
void push_back(justification const & jst) {
|
|
|
|
if (jst)
|
|
|
|
m_jsts.push_back(jst);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual expr visit_metavar(expr const & m, context const & ctx) {
|
2013-12-13 01:47:11 +00:00
|
|
|
if (is_metavar(m) && m_menv->is_assigned(m)) {
|
|
|
|
auto p = m_menv->get_subst_jst(m);
|
2013-12-08 07:21:07 +00:00
|
|
|
lean_assert(p);
|
|
|
|
expr r = p->first;
|
|
|
|
push_back(p->second);
|
2013-12-13 01:47:11 +00:00
|
|
|
if (m_menv->has_assigned_metavar(r)) {
|
2013-10-27 18:02:29 +00:00
|
|
|
return visit(r, ctx);
|
|
|
|
} else {
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return m;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual expr visit_app(expr const & e, context const & ctx) {
|
|
|
|
expr const & f = arg(e, 0);
|
2013-12-13 01:47:11 +00:00
|
|
|
if (m_menv->beta_reduce_metavar_application() && is_metavar(f) && m_menv->is_assigned(f)) {
|
2013-10-23 23:35:47 +00:00
|
|
|
buffer<expr> new_args;
|
2013-10-27 18:02:29 +00:00
|
|
|
for (unsigned i = 0; i < num_args(e); i++)
|
2013-10-23 23:35:47 +00:00
|
|
|
new_args.push_back(visit(arg(e, i), ctx));
|
2013-10-27 18:02:29 +00:00
|
|
|
if (is_lambda(new_args[0]))
|
|
|
|
return apply_beta(new_args[0], new_args.size() - 1, new_args.data() + 1);
|
|
|
|
else
|
|
|
|
return mk_app(new_args);
|
|
|
|
} else {
|
|
|
|
return replace_visitor::visit_app(e, ctx);
|
2013-10-23 23:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-27 18:02:29 +00:00
|
|
|
public:
|
2013-12-13 01:47:11 +00:00
|
|
|
instantiate_metavars_proc(metavar_env_cell const * menv, buffer<justification> & jsts):
|
2013-10-27 18:02:29 +00:00
|
|
|
m_menv(menv),
|
|
|
|
m_jsts(jsts) {
|
|
|
|
}
|
|
|
|
};
|
2013-10-23 23:35:47 +00:00
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
expr metavar_env_cell::instantiate_metavars(expr const & e, buffer<justification> & jsts) const {
|
2013-12-08 07:21:07 +00:00
|
|
|
if (!has_metavar(e)) {
|
2013-09-17 14:15:47 +00:00
|
|
|
return e;
|
|
|
|
} else {
|
2013-12-13 01:47:11 +00:00
|
|
|
return instantiate_metavars_proc(this, jsts)(e);
|
2013-09-17 14:15:47 +00:00
|
|
|
}
|
2013-09-13 01:25:38 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
bool cached_metavar_env::update(optional<metavar_env> const & menv) {
|
|
|
|
if (!menv) {
|
|
|
|
if (m_timestamp != 0) {
|
|
|
|
m_menv = none_menv();
|
|
|
|
m_timestamp = 0;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-27 01:24:45 +00:00
|
|
|
} else {
|
2013-12-13 01:47:11 +00:00
|
|
|
unsigned new_timestamp = (*menv)->get_timestamp();
|
|
|
|
if (m_menv != menv || m_timestamp != new_timestamp) {
|
|
|
|
m_menv = menv;
|
|
|
|
m_timestamp = new_timestamp;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
2013-09-27 01:24:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
local_context add_lift(local_context const & lctx, unsigned s, unsigned n) {
|
2013-12-11 01:23:22 +00:00
|
|
|
if (n == 0)
|
2013-09-27 01:24:45 +00:00
|
|
|
return lctx;
|
2013-12-11 01:23:22 +00:00
|
|
|
if (lctx) {
|
2013-09-27 01:24:45 +00:00
|
|
|
local_entry e = head(lctx);
|
2013-09-17 10:14:02 +00:00
|
|
|
// Simplification rule
|
2013-12-11 01:23:22 +00:00
|
|
|
// lift:s2:n2 lift:s1:n1 ---> lift:s1:n1+n2 when s1 <= s2 <= s1 + n1
|
|
|
|
if (e.is_lift() && e.s() <= s && s <= e.s() + e.n()) {
|
2013-09-27 01:24:45 +00:00
|
|
|
return add_lift(tail(lctx), e.s(), e.n() + n);
|
2013-09-17 10:14:02 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-27 01:24:45 +00:00
|
|
|
return cons(mk_lift(s, n), lctx);
|
2013-09-16 17:58:56 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
expr add_lift(expr const & m, unsigned s, unsigned n, optional<metavar_env> const & menv) {
|
2013-12-12 18:50:07 +00:00
|
|
|
if (menv && s >= free_var_range(m, *menv))
|
|
|
|
return m;
|
2013-09-27 01:24:45 +00:00
|
|
|
return update_metavar(m, add_lift(metavar_lctx(m), s, n));
|
2013-09-13 01:25:38 +00:00
|
|
|
}
|
|
|
|
|
2013-09-27 01:24:45 +00:00
|
|
|
local_context add_inst(local_context const & lctx, unsigned s, expr const & v) {
|
|
|
|
if (lctx) {
|
|
|
|
local_entry e = head(lctx);
|
2013-09-17 02:29:19 +00:00
|
|
|
if (e.is_lift() && e.s() <= s && s < e.s() + e.n()) {
|
2013-09-27 01:24:45 +00:00
|
|
|
return add_lift(tail(lctx), e.s(), e.n() - 1);
|
2013-09-17 09:57:28 +00:00
|
|
|
}
|
|
|
|
// Simplifications such as
|
|
|
|
// inst:4 #6 lift:5:3 --> lift:4:2
|
|
|
|
// inst:3 #7 lift:4:5 --> lift:3:4
|
|
|
|
// General rule is:
|
|
|
|
// inst:(s-1) #(s+n-2) lift:s:n --> lift:s-1:n-1
|
|
|
|
if (e.is_lift() && is_var(v) && e.s() > 0 && s == e.s() - 1 && e.s() + e.n() > 2 && var_idx(v) == e.s() + e.n() - 2) {
|
2013-09-27 01:24:45 +00:00
|
|
|
return add_lift(tail(lctx), e.s() - 1, e.n() - 1);
|
2013-09-13 01:25:38 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-27 01:24:45 +00:00
|
|
|
return cons(mk_inst(s, v), lctx);
|
2013-09-13 01:25:38 +00:00
|
|
|
}
|
|
|
|
|
2013-12-13 01:47:11 +00:00
|
|
|
expr add_inst(expr const & m, unsigned s, expr const & v, optional<metavar_env> const & menv) {
|
2013-12-12 18:50:07 +00:00
|
|
|
if (menv && s >= free_var_range(m, *menv))
|
|
|
|
return m;
|
2013-09-27 01:24:45 +00:00
|
|
|
return update_metavar(m, add_inst(metavar_lctx(m), s, v));
|
2013-09-13 01:25:38 +00:00
|
|
|
}
|
|
|
|
|
2013-09-27 01:24:45 +00:00
|
|
|
bool has_local_context(expr const & m) {
|
2013-12-03 07:02:39 +00:00
|
|
|
return static_cast<bool>(metavar_lctx(m));
|
2013-09-13 01:25:38 +00:00
|
|
|
}
|
|
|
|
|
2013-09-19 03:46:00 +00:00
|
|
|
expr pop_meta_context(expr const & m) {
|
2013-09-27 01:24:45 +00:00
|
|
|
lean_assert(has_local_context(m));
|
|
|
|
return update_metavar(m, tail(metavar_lctx(m)));
|
2013-09-19 03:46:00 +00:00
|
|
|
}
|
2013-09-13 01:25:38 +00:00
|
|
|
}
|