2013-07-23 18:31:31 +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>
|
2014-01-13 01:06:57 +00:00
|
|
|
#include <limits>
|
2013-09-13 10:35:29 +00:00
|
|
|
#include "kernel/free_vars.h"
|
|
|
|
#include "kernel/expr_sets.h"
|
2013-12-03 20:40:52 +00:00
|
|
|
#include "kernel/replace_fn.h"
|
2014-01-13 00:45:34 +00:00
|
|
|
#include "kernel/for_each_fn.h"
|
2013-07-23 18:31:31 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2013-09-13 01:25:38 +00:00
|
|
|
/**
|
|
|
|
\brief Functional object for checking whether a kernel expression has free variables or not.
|
2013-07-23 18:31:31 +00:00
|
|
|
|
2013-09-13 01:25:38 +00:00
|
|
|
\remark We assume that a metavariable contains free variables.
|
|
|
|
This is an approximation, since we don't know how the metavariable will be instantiated.
|
|
|
|
*/
|
2013-07-26 19:27:55 +00:00
|
|
|
class has_free_vars_fn {
|
|
|
|
protected:
|
2013-08-11 18:19:59 +00:00
|
|
|
expr_cell_offset_set m_cached;
|
2013-07-26 19:27:55 +00:00
|
|
|
|
2013-07-23 18:31:31 +00:00
|
|
|
bool apply(expr const & e, unsigned offset) {
|
|
|
|
// handle easy cases
|
|
|
|
switch (e.kind()) {
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::Constant: case expr_kind::Sort: case expr_kind::Macro:
|
2013-07-23 18:31:31 +00:00
|
|
|
return false;
|
|
|
|
case expr_kind::Var:
|
2013-08-11 18:19:59 +00:00
|
|
|
return var_idx(e) >= offset;
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::App: case expr_kind::Let:
|
|
|
|
case expr_kind::Meta: case expr_kind::Local:
|
2014-04-17 17:52:07 +00:00
|
|
|
case expr_kind::Lambda: case expr_kind::Pi:
|
2013-07-23 18:31:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e.raw()->is_closed())
|
|
|
|
return false;
|
|
|
|
|
2013-08-11 18:19:59 +00:00
|
|
|
if (offset == 0) {
|
|
|
|
return apply_core(e, 0);
|
|
|
|
} else {
|
|
|
|
// The apply_core(e, 0) may seem redundant, but it allows us to
|
|
|
|
// mark nested closed expressions.
|
|
|
|
return apply_core(e, 0) && apply_core(e, offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool apply_core(expr const & e, unsigned offset) {
|
|
|
|
bool shared = false;
|
2013-07-23 18:31:31 +00:00
|
|
|
if (is_shared(e)) {
|
2013-08-11 18:19:59 +00:00
|
|
|
shared = true;
|
2013-07-23 18:31:31 +00:00
|
|
|
expr_cell_offset p(e.raw(), offset);
|
2013-08-11 18:19:59 +00:00
|
|
|
if (m_cached.find(p) != m_cached.end())
|
2013-07-23 18:31:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
switch (e.kind()) {
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::Constant: case expr_kind::Sort: case expr_kind::Macro:
|
|
|
|
case expr_kind::Var:
|
2013-11-11 17:19:38 +00:00
|
|
|
lean_unreachable(); // LCOV_EXCL_LINE
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::Meta: case expr_kind::Local:
|
|
|
|
result = apply(mlocal_type(e), offset);
|
2014-02-23 00:12:06 +00:00
|
|
|
break;
|
2013-07-23 18:31:31 +00:00
|
|
|
case expr_kind::App:
|
2014-02-16 21:36:46 +00:00
|
|
|
result = apply(app_fn(e), offset) || apply(app_arg(e), offset);
|
|
|
|
break;
|
2014-04-17 17:52:07 +00:00
|
|
|
case expr_kind::Lambda: case expr_kind::Pi:
|
2014-02-16 21:36:46 +00:00
|
|
|
result = apply(binder_domain(e), offset) || apply(binder_body(e), offset + 1);
|
2013-07-23 18:31:31 +00:00
|
|
|
break;
|
2013-08-04 16:37:52 +00:00
|
|
|
case expr_kind::Let:
|
2013-12-08 07:21:07 +00:00
|
|
|
result = apply(let_type(e), offset) || apply(let_value(e), offset) || apply(let_body(e), offset + 1);
|
2013-08-04 16:37:52 +00:00
|
|
|
break;
|
2013-07-23 18:31:31 +00:00
|
|
|
}
|
|
|
|
|
2013-08-11 18:19:59 +00:00
|
|
|
if (!result) {
|
|
|
|
if (offset == 0)
|
|
|
|
e.raw()->set_closed();
|
|
|
|
if (shared)
|
|
|
|
m_cached.insert(expr_cell_offset(e.raw(), offset));
|
|
|
|
}
|
2013-07-23 18:31:31 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2013-07-24 07:45:38 +00:00
|
|
|
public:
|
2013-08-11 18:19:59 +00:00
|
|
|
has_free_vars_fn() {}
|
2013-07-24 07:45:38 +00:00
|
|
|
bool operator()(expr const & e) { return apply(e, 0); }
|
2013-07-23 18:31:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool has_free_vars(expr const & e) {
|
2013-12-08 07:21:07 +00:00
|
|
|
return has_free_vars_fn()(e);
|
2013-07-26 19:27:55 +00:00
|
|
|
}
|
|
|
|
|
2013-12-11 23:21:52 +00:00
|
|
|
/**
|
|
|
|
\brief Functional object for computing the range [0, R) of free variables occurring
|
|
|
|
in an expression.
|
|
|
|
*/
|
|
|
|
class free_var_range_fn {
|
|
|
|
expr_map<unsigned> m_cached;
|
|
|
|
|
|
|
|
static unsigned dec(unsigned s) { return (s == 0) ? 0 : s - 1; }
|
|
|
|
|
|
|
|
unsigned apply(expr const & e) {
|
|
|
|
// handle easy cases
|
|
|
|
switch (e.kind()) {
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::Constant: case expr_kind::Sort: case expr_kind::Macro:
|
2013-12-11 23:21:52 +00:00
|
|
|
return 0;
|
|
|
|
case expr_kind::Var:
|
|
|
|
return var_idx(e) + 1;
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::App: case expr_kind::Let:
|
|
|
|
case expr_kind::Meta: case expr_kind::Local:
|
2014-04-17 17:52:07 +00:00
|
|
|
case expr_kind::Lambda: case expr_kind::Pi:
|
2013-12-11 23:21:52 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e.raw()->is_closed())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
bool shared = false;
|
|
|
|
if (is_shared(e)) {
|
|
|
|
shared = true;
|
|
|
|
auto it = m_cached.find(e);
|
|
|
|
if (it != m_cached.end())
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned result = 0;
|
|
|
|
|
|
|
|
switch (e.kind()) {
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::Constant: case expr_kind::Sort: case expr_kind::Macro:
|
|
|
|
case expr_kind::Var:
|
2013-12-11 23:21:52 +00:00
|
|
|
lean_unreachable(); // LCOV_EXCL_LINE
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::Meta: case expr_kind::Local:
|
|
|
|
result = apply(mlocal_type(e));
|
2014-02-23 00:12:06 +00:00
|
|
|
break;
|
2013-12-11 23:21:52 +00:00
|
|
|
case expr_kind::App:
|
2014-02-16 21:36:46 +00:00
|
|
|
result = std::max(apply(app_fn(e)), apply(app_arg(e)));
|
2013-12-11 23:21:52 +00:00
|
|
|
break;
|
2014-04-17 17:52:07 +00:00
|
|
|
case expr_kind::Lambda: case expr_kind::Pi:
|
2014-02-16 21:36:46 +00:00
|
|
|
result = std::max(apply(binder_domain(e)), dec(apply(binder_body(e))));
|
2013-12-11 23:21:52 +00:00
|
|
|
break;
|
|
|
|
case expr_kind::Let:
|
|
|
|
result = std::max({apply(let_type(e)), apply(let_value(e)), dec(apply(let_body(e)))});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shared)
|
|
|
|
m_cached.insert(mk_pair(e, result));
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
public:
|
2014-02-16 21:36:46 +00:00
|
|
|
free_var_range_fn() {}
|
2013-12-11 23:21:52 +00:00
|
|
|
unsigned operator()(expr const & e) { return apply(e); }
|
|
|
|
};
|
|
|
|
|
2014-01-13 01:06:57 +00:00
|
|
|
unsigned free_var_range(expr const & e) {
|
2014-02-16 21:36:46 +00:00
|
|
|
return free_var_range_fn()(e);
|
2013-12-11 23:21:52 +00:00
|
|
|
}
|
|
|
|
|
2013-09-13 01:25:38 +00:00
|
|
|
/**
|
|
|
|
\brief Functional object for checking whether a kernel expression has a free variable in the range <tt>[low, high)</tt> or not.
|
|
|
|
*/
|
2013-08-11 18:19:59 +00:00
|
|
|
class has_free_var_in_range_fn {
|
|
|
|
protected:
|
2013-12-11 23:49:32 +00:00
|
|
|
unsigned m_low;
|
|
|
|
unsigned m_high;
|
|
|
|
expr_cell_offset_set m_cached;
|
|
|
|
std::unique_ptr<free_var_range_fn> m_range_fn;
|
2013-08-11 18:19:59 +00:00
|
|
|
|
2014-01-14 22:36:14 +00:00
|
|
|
// Return true iff m_low + offset <= vidx
|
|
|
|
bool ge_lower(unsigned vidx, unsigned offset) const {
|
|
|
|
unsigned low1 = m_low + offset;
|
|
|
|
if (low1 < m_low)
|
|
|
|
return false; // overflow, vidx can't be >= max unsigned
|
|
|
|
return vidx >= low1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return true iff vidx < m_high + offset
|
|
|
|
bool lt_upper(unsigned vidx, unsigned offset) const {
|
|
|
|
unsigned high1 = m_high + offset;
|
|
|
|
if (high1 < m_high)
|
|
|
|
return true; // overflow, vidx is always < max unsigned
|
|
|
|
return vidx < high1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return true iff m_low + offset <= vidx < m_high + offset
|
|
|
|
bool in_interval(unsigned vidx, unsigned offset) const {
|
|
|
|
return ge_lower(vidx, offset) && lt_upper(vidx, offset);
|
|
|
|
}
|
|
|
|
|
2013-08-11 18:19:59 +00:00
|
|
|
bool apply(expr const & e, unsigned offset) {
|
|
|
|
// handle easy cases
|
|
|
|
switch (e.kind()) {
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::Constant: case expr_kind::Sort: case expr_kind::Macro:
|
2013-08-11 18:19:59 +00:00
|
|
|
return false;
|
|
|
|
case expr_kind::Var:
|
2014-01-14 22:36:14 +00:00
|
|
|
return in_interval(var_idx(e), offset);
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::App: case expr_kind::Let:
|
|
|
|
case expr_kind::Meta: case expr_kind::Local:
|
2014-04-17 17:52:07 +00:00
|
|
|
case expr_kind::Lambda: case expr_kind::Pi:
|
2013-08-11 18:19:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (e.raw()->is_closed())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bool shared = false;
|
|
|
|
if (is_shared(e)) {
|
|
|
|
shared = true;
|
|
|
|
expr_cell_offset p(e.raw(), offset);
|
|
|
|
if (m_cached.find(p) != m_cached.end())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool result = false;
|
|
|
|
|
|
|
|
switch (e.kind()) {
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::Constant: case expr_kind::Sort: case expr_kind::Macro:
|
|
|
|
case expr_kind::Var:
|
2013-11-11 17:19:38 +00:00
|
|
|
lean_unreachable(); // LCOV_EXCL_LINE
|
2014-02-16 21:36:46 +00:00
|
|
|
case expr_kind::Meta: case expr_kind::Local:
|
|
|
|
result = apply(mlocal_type(e), offset);
|
2014-02-23 00:12:06 +00:00
|
|
|
break;
|
2013-08-11 18:19:59 +00:00
|
|
|
case expr_kind::App:
|
2014-02-16 21:36:46 +00:00
|
|
|
result = apply(app_fn(e), offset) || apply(app_arg(e), offset);
|
2013-08-11 18:19:59 +00:00
|
|
|
break;
|
2014-04-17 17:52:07 +00:00
|
|
|
case expr_kind::Lambda: case expr_kind::Pi:
|
2014-02-16 21:36:46 +00:00
|
|
|
result = apply(binder_domain(e), offset) || apply(binder_body(e), offset + 1);
|
2013-08-11 18:19:59 +00:00
|
|
|
break;
|
|
|
|
case expr_kind::Let:
|
2013-12-08 07:21:07 +00:00
|
|
|
result = apply(let_type(e), offset) || apply(let_value(e), offset) || apply(let_body(e), offset + 1);
|
2013-08-11 18:19:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!result && shared) {
|
|
|
|
m_cached.insert(expr_cell_offset(e.raw(), offset));
|
|
|
|
}
|
|
|
|
return result;
|
2013-07-26 19:27:55 +00:00
|
|
|
}
|
|
|
|
public:
|
2014-02-16 21:36:46 +00:00
|
|
|
has_free_var_in_range_fn(unsigned low, unsigned high):
|
2013-08-06 03:06:07 +00:00
|
|
|
m_low(low),
|
|
|
|
m_high(high) {
|
2013-07-26 19:27:55 +00:00
|
|
|
lean_assert(low < high);
|
|
|
|
}
|
2013-08-11 18:19:59 +00:00
|
|
|
bool operator()(expr const & e) { return apply(e, 0); }
|
2013-07-26 19:27:55 +00:00
|
|
|
};
|
|
|
|
|
2014-02-16 21:36:46 +00:00
|
|
|
bool has_free_var(expr const & e, unsigned low, unsigned high) {
|
|
|
|
return high > low && !closed(e) && has_free_var_in_range_fn(low, high)(e);
|
2014-01-13 01:44:28 +00:00
|
|
|
}
|
2013-12-13 01:47:11 +00:00
|
|
|
bool has_free_var(expr const & e, unsigned i) { return has_free_var(e, i, i+1); }
|
2013-07-26 19:27:55 +00:00
|
|
|
|
2014-02-16 21:36:46 +00:00
|
|
|
bool has_free_var_ge(expr const & e, unsigned low) {
|
|
|
|
return has_free_var(e, low, std::numeric_limits<unsigned>::max());
|
2014-01-01 11:02:41 +00:00
|
|
|
}
|
|
|
|
|
2014-02-16 21:36:46 +00:00
|
|
|
expr lower_free_vars(expr const & e, unsigned s, unsigned d) {
|
2014-01-18 10:47:11 +00:00
|
|
|
if (d == 0 || closed(e))
|
2014-01-13 01:44:28 +00:00
|
|
|
return e;
|
2013-09-17 02:21:40 +00:00
|
|
|
lean_assert(s >= d);
|
2014-02-16 21:36:46 +00:00
|
|
|
lean_assert(!has_free_var(e, s-d, s));
|
2014-03-01 00:57:25 +00:00
|
|
|
return replace(e, [=](expr const & e, unsigned offset) -> optional<expr> {
|
2013-12-18 02:31:59 +00:00
|
|
|
if (is_var(e) && var_idx(e) >= s + offset) {
|
|
|
|
lean_assert(var_idx(e) >= offset + d);
|
2014-03-01 00:57:25 +00:00
|
|
|
return some_expr(mk_var(var_idx(e) - d));
|
2013-12-18 02:31:59 +00:00
|
|
|
} else {
|
2014-03-01 00:57:25 +00:00
|
|
|
return none_expr();
|
2013-12-18 02:31:59 +00:00
|
|
|
}
|
|
|
|
});
|
2013-07-23 18:31:31 +00:00
|
|
|
}
|
2013-12-13 01:47:11 +00:00
|
|
|
expr lower_free_vars(expr const & e, unsigned d) { return lower_free_vars(e, d, d); }
|
2013-07-23 18:31:31 +00:00
|
|
|
|
2014-02-16 21:36:46 +00:00
|
|
|
expr lift_free_vars(expr const & e, unsigned s, unsigned d) {
|
2014-01-18 10:47:11 +00:00
|
|
|
if (d == 0 || closed(e))
|
2013-07-30 08:39:29 +00:00
|
|
|
return e;
|
2014-03-01 00:57:25 +00:00
|
|
|
return replace(e, [=](expr const & e, unsigned offset) -> optional<expr> {
|
2013-12-18 02:31:59 +00:00
|
|
|
if (is_var(e) && var_idx(e) >= s + offset) {
|
2014-03-01 00:57:25 +00:00
|
|
|
return some_expr(mk_var(var_idx(e) + d));
|
2013-12-18 02:31:59 +00:00
|
|
|
} else {
|
2014-03-01 00:57:25 +00:00
|
|
|
return none_expr();
|
2013-12-18 02:31:59 +00:00
|
|
|
}
|
|
|
|
});
|
2013-07-30 08:39:29 +00:00
|
|
|
}
|
2013-12-13 01:47:11 +00:00
|
|
|
expr lift_free_vars(expr const & e, unsigned d) { return lift_free_vars(e, 0, d); }
|
2013-07-23 18:31:31 +00:00
|
|
|
}
|