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-09-13 10:35:29 +00:00
|
|
|
#include <utility>
|
|
|
|
#include "kernel/abstract.h"
|
|
|
|
#include "kernel/free_vars.h"
|
2013-12-03 20:40:52 +00:00
|
|
|
#include "kernel/replace_fn.h"
|
2013-07-24 07:32:01 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2014-05-16 18:55:43 +00:00
|
|
|
expr abstract(expr const & e, unsigned s, unsigned n, expr const * subst) {
|
|
|
|
lean_assert(std::all_of(subst, subst+n, closed));
|
2014-03-01 00:57:25 +00:00
|
|
|
return replace(e, [=](expr const & e, unsigned offset) -> optional<expr> {
|
2014-05-16 18:55:43 +00:00
|
|
|
if (closed(e)) {
|
|
|
|
unsigned i = n;
|
|
|
|
while (i > 0) {
|
|
|
|
--i;
|
|
|
|
if (subst[i] == e)
|
|
|
|
return some_expr(mk_var(offset + s + n - i - 1));
|
|
|
|
}
|
2013-12-18 02:31:59 +00:00
|
|
|
}
|
2014-03-01 00:57:25 +00:00
|
|
|
return none_expr();
|
2013-12-18 02:31:59 +00:00
|
|
|
});
|
2013-07-24 07:32:01 +00:00
|
|
|
}
|
2014-05-16 18:55:43 +00:00
|
|
|
expr abstract(expr const & e, unsigned n, expr const * subst) { return abstract(e, 0, n, subst); }
|
2014-05-17 00:47:04 +00:00
|
|
|
expr abstract(expr const & e, expr const & s, unsigned i) { return abstract(e, i, 1, &s); }
|
2014-05-16 18:55:43 +00:00
|
|
|
|
2013-08-03 19:20:01 +00:00
|
|
|
expr abstract_p(expr const & e, unsigned n, expr const * s) {
|
2013-07-24 07:32:01 +00:00
|
|
|
lean_assert(std::all_of(s, s+n, closed));
|
2014-03-01 00:57:25 +00:00
|
|
|
return replace(e, [=](expr const & e, unsigned offset) -> optional<expr> {
|
2014-05-16 22:39:19 +00:00
|
|
|
if (closed(e)) {
|
2014-05-16 18:55:43 +00:00
|
|
|
unsigned i = n;
|
|
|
|
while (i > 0) {
|
|
|
|
--i;
|
|
|
|
if (is_eqp(s[i], e))
|
|
|
|
return some_expr(mk_var(offset + n - i - 1));
|
|
|
|
}
|
2013-12-18 02:31:59 +00:00
|
|
|
}
|
2014-03-01 00:57:25 +00:00
|
|
|
return none_expr();
|
2013-12-18 02:31:59 +00:00
|
|
|
});
|
2013-07-24 07:32:01 +00:00
|
|
|
}
|
2013-08-15 05:30:12 +00:00
|
|
|
#define MkBinder(FName) \
|
|
|
|
expr FName(std::initializer_list<std::pair<expr const &, expr const &>> const & l, expr const & b) { \
|
|
|
|
expr r = b; \
|
|
|
|
auto it = l.end(); \
|
|
|
|
while (it != l.begin()) { \
|
|
|
|
--it; \
|
|
|
|
auto const & p = *it; \
|
|
|
|
r = FName(p.first, p.second, r); \
|
|
|
|
} \
|
|
|
|
return r; \
|
2013-08-06 18:27:14 +00:00
|
|
|
}
|
2013-08-15 05:30:12 +00:00
|
|
|
|
|
|
|
MkBinder(Fun);
|
|
|
|
MkBinder(Pi);
|
2014-05-18 20:15:00 +00:00
|
|
|
|
2014-05-19 16:01:20 +00:00
|
|
|
#define MkBinder2(FName, Mk) \
|
|
|
|
expr FName(unsigned num, expr const * locals, expr const & b) { \
|
|
|
|
expr r = b; \
|
|
|
|
unsigned i = num; \
|
|
|
|
while (i > 0) { \
|
|
|
|
--i; \
|
|
|
|
r = Mk(local_pp_name(locals[i]), mlocal_type(locals[i]), abstract(r, locals[i])); \
|
|
|
|
} \
|
|
|
|
return r; \
|
2014-05-18 20:15:00 +00:00
|
|
|
}
|
2014-05-19 16:01:20 +00:00
|
|
|
|
|
|
|
MkBinder2(Fun, mk_lambda);
|
|
|
|
MkBinder2(Pi, mk_pi);
|
2013-07-24 07:32:01 +00:00
|
|
|
}
|