2013-07-24 07:32:01 +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
|
|
|
|
*/
|
|
|
|
#include <algorithm>
|
2013-12-12 18:50:07 +00:00
|
|
|
#include <limits>
|
2013-09-13 03:04:10 +00:00
|
|
|
#include "kernel/free_vars.h"
|
2013-12-03 20:40:52 +00:00
|
|
|
#include "kernel/replace_fn.h"
|
2013-12-12 18:50:07 +00:00
|
|
|
#include "kernel/instantiate.h"
|
2013-07-24 07:32:01 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2014-01-21 22:30:38 +00:00
|
|
|
template<bool ClosedSubst>
|
2014-02-17 23:21:48 +00:00
|
|
|
expr instantiate_core(expr const & a, unsigned s, unsigned n, expr const * subst) {
|
2014-03-01 00:57:25 +00:00
|
|
|
return replace(a, [=](expr const & m, unsigned offset) -> optional<expr> {
|
2013-12-18 02:31:59 +00:00
|
|
|
if (is_var(m)) {
|
|
|
|
unsigned vidx = var_idx(m);
|
2014-01-21 22:30:38 +00:00
|
|
|
if (vidx >= offset + s) {
|
|
|
|
if (vidx < offset + s + n) {
|
|
|
|
if (ClosedSubst)
|
2014-03-01 00:57:25 +00:00
|
|
|
return some_expr(subst[vidx - s - offset]);
|
2014-01-21 22:30:38 +00:00
|
|
|
else
|
2014-03-01 00:57:25 +00:00
|
|
|
return some_expr(lift_free_vars(subst[vidx - s - offset], offset));
|
2014-01-21 22:30:38 +00:00
|
|
|
} else {
|
2014-03-01 00:57:25 +00:00
|
|
|
return some_expr(mk_var(vidx - n));
|
2014-01-21 22:30:38 +00:00
|
|
|
}
|
2013-12-18 02:31:59 +00:00
|
|
|
}
|
2013-07-24 07:32:01 +00:00
|
|
|
}
|
2014-03-01 00:57:25 +00:00
|
|
|
return none_expr();
|
2013-12-18 02:31:59 +00:00
|
|
|
});
|
2013-08-03 18:45:51 +00:00
|
|
|
}
|
2014-01-21 22:30:38 +00:00
|
|
|
|
2014-02-17 23:21:48 +00:00
|
|
|
expr instantiate_with_closed(expr const & e, unsigned s, unsigned n, expr const * subst) { return instantiate_core<true>(e, s, n, subst); }
|
|
|
|
expr instantiate_with_closed(expr const & e, unsigned n, expr const * s) { return instantiate_with_closed(e, 0, n, s); }
|
2013-12-13 01:47:11 +00:00
|
|
|
expr instantiate_with_closed(expr const & e, std::initializer_list<expr> const & l) { return instantiate_with_closed(e, l.size(), l.begin()); }
|
|
|
|
expr instantiate_with_closed(expr const & e, expr const & s) { return instantiate_with_closed(e, 1, &s); }
|
2014-02-17 23:21:48 +00:00
|
|
|
expr instantiate(expr const & e, unsigned s, unsigned n, expr const * subst) { return instantiate_core<false>(e, s, n, subst); }
|
|
|
|
expr instantiate(expr const & e, unsigned n, expr const * s) { return instantiate(e, 0, n, s); }
|
2013-12-13 01:47:11 +00:00
|
|
|
expr instantiate(expr const & e, std::initializer_list<expr> const & l) { return instantiate(e, l.size(), l.begin()); }
|
2014-02-17 23:21:48 +00:00
|
|
|
expr instantiate(expr const & e, unsigned i, expr const & s) { return instantiate(e, i, 1, &s); }
|
|
|
|
expr instantiate(expr const & e, expr const & s) { return instantiate(e, 0, s); }
|
2013-10-23 22:44:26 +00:00
|
|
|
|
|
|
|
bool is_head_beta(expr const & t) {
|
2014-02-17 23:21:48 +00:00
|
|
|
expr const * it = &t;
|
|
|
|
while (is_app(*it)) {
|
|
|
|
expr const & f = app_fn(*it);
|
|
|
|
if (is_lambda(f)) {
|
|
|
|
return true;
|
|
|
|
} else if (is_app(f)) {
|
|
|
|
it = &f;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2013-10-23 22:44:26 +00:00
|
|
|
}
|
|
|
|
|
2014-02-17 23:21:48 +00:00
|
|
|
expr apply_beta(expr f, unsigned num_args, expr const * args) {
|
2014-02-22 19:44:57 +00:00
|
|
|
lean_assert(num_args > 0);
|
2014-01-14 22:36:51 +00:00
|
|
|
if (!is_lambda(f)) {
|
2014-02-22 19:44:57 +00:00
|
|
|
return mk_rev_app(f, num_args, args);
|
2014-01-14 22:36:51 +00:00
|
|
|
} else {
|
|
|
|
unsigned m = 1;
|
2014-02-17 23:21:48 +00:00
|
|
|
while (is_lambda(binder_body(f)) && m < num_args) {
|
|
|
|
f = binder_body(f);
|
2014-01-14 22:36:51 +00:00
|
|
|
m++;
|
|
|
|
}
|
|
|
|
lean_assert(m <= num_args);
|
2014-02-22 19:44:57 +00:00
|
|
|
return mk_rev_app(instantiate(binder_body(f), m, args + (num_args - m)), num_args - m, args);
|
2013-10-23 23:01:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-17 23:21:48 +00:00
|
|
|
expr head_beta_reduce(expr const & t) {
|
2013-10-23 22:44:26 +00:00
|
|
|
if (!is_head_beta(t)) {
|
|
|
|
return t;
|
|
|
|
} else {
|
2014-02-17 23:21:48 +00:00
|
|
|
buffer<expr> args;
|
|
|
|
expr const * it = &t;
|
|
|
|
while (true) {
|
|
|
|
lean_assert(is_app(*it));
|
2014-02-17 23:32:27 +00:00
|
|
|
expr const & f = app_fn(*it);
|
2014-02-17 23:21:48 +00:00
|
|
|
args.push_back(app_arg(*it));
|
|
|
|
if (is_lambda(f)) {
|
|
|
|
return apply_beta(f, args.size(), args.data());
|
|
|
|
} else {
|
|
|
|
lean_assert(is_app(f));
|
|
|
|
it = &f;
|
|
|
|
}
|
|
|
|
}
|
2013-10-23 22:44:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-17 23:21:48 +00:00
|
|
|
expr beta_reduce(expr t) {
|
2014-03-01 00:57:25 +00:00
|
|
|
auto f = [=](expr const & m, unsigned) -> optional<expr> {
|
2013-10-23 22:44:26 +00:00
|
|
|
if (is_head_beta(m))
|
2014-03-01 00:57:25 +00:00
|
|
|
return some_expr(head_beta_reduce(m));
|
2013-10-23 22:44:26 +00:00
|
|
|
else
|
2014-03-01 00:57:25 +00:00
|
|
|
return none_expr();
|
2013-10-23 22:44:26 +00:00
|
|
|
};
|
|
|
|
while (true) {
|
2014-02-17 23:21:48 +00:00
|
|
|
expr new_t = replace_fn(f)(t);
|
2013-10-23 22:44:26 +00:00
|
|
|
if (new_t == t)
|
|
|
|
return new_t;
|
|
|
|
else
|
|
|
|
t = new_t;
|
|
|
|
}
|
|
|
|
}
|
2014-02-25 02:31:38 +00:00
|
|
|
|
|
|
|
expr instantiate_params(expr const & e, param_names const & ps, levels const & ls) {
|
|
|
|
// TODO(Leo)
|
|
|
|
return e;
|
|
|
|
}
|
2013-07-24 07:32:01 +00:00
|
|
|
}
|