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) {
|
2013-12-18 02:31:59 +00:00
|
|
|
return replace(a, [=](expr const & m, unsigned offset) -> expr {
|
|
|
|
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)
|
|
|
|
return subst[n - (vidx - s - offset) - 1];
|
|
|
|
else
|
2014-02-17 23:21:48 +00:00
|
|
|
return lift_free_vars(subst[n - (vidx - s - offset) - 1], offset);
|
2014-01-21 22:30:38 +00:00
|
|
|
} else {
|
2013-12-18 02:31:59 +00:00
|
|
|
return mk_var(vidx - n);
|
2014-01-21 22:30:38 +00:00
|
|
|
}
|
2013-12-18 02:31:59 +00:00
|
|
|
} else {
|
|
|
|
return m;
|
|
|
|
}
|
2013-09-13 01:25:38 +00:00
|
|
|
} else {
|
|
|
|
return m;
|
2013-07-24 07:32:01 +00:00
|
|
|
}
|
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-01-14 22:36:51 +00:00
|
|
|
if (!is_lambda(f)) {
|
2013-10-23 23:01:05 +00:00
|
|
|
buffer<expr> new_args;
|
2014-01-14 22:36:51 +00:00
|
|
|
new_args.push_back(f);
|
|
|
|
new_args.append(num_args, args);
|
2013-10-26 21:46:12 +00:00
|
|
|
return mk_app(new_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-17 23:21:48 +00:00
|
|
|
expr r = instantiate(binder_body(f), m, args);
|
2014-01-14 22:36:51 +00:00
|
|
|
if (m == num_args) {
|
|
|
|
return r;
|
|
|
|
} else {
|
|
|
|
buffer<expr> new_args;
|
|
|
|
new_args.push_back(r);
|
|
|
|
for (; m < num_args; m++)
|
|
|
|
new_args.push_back(args[m]);
|
|
|
|
return mk_app(new_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)) {
|
2014-02-18 00:53:03 +00:00
|
|
|
std::reverse(args.begin(), args.end());
|
2014-02-17 23:21:48 +00:00
|
|
|
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) {
|
2013-10-23 22:44:26 +00:00
|
|
|
auto f = [=](expr const & m, unsigned) -> expr {
|
|
|
|
if (is_head_beta(m))
|
2014-02-17 23:21:48 +00:00
|
|
|
return head_beta_reduce(m);
|
2013-10-23 22:44:26 +00:00
|
|
|
else
|
|
|
|
return m;
|
|
|
|
};
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2013-07-24 07:32:01 +00:00
|
|
|
}
|