2014-05-24 17:45:00 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#include <utility>
|
|
|
|
#include <string>
|
|
|
|
#include "util/rb_map.h"
|
|
|
|
#include "util/sstream.h"
|
|
|
|
#include "kernel/instantiate.h"
|
|
|
|
#include "library/coercion.h"
|
|
|
|
#include "library/module.h"
|
|
|
|
#include "library/kernel_serializer.h"
|
2014-05-25 13:05:31 +00:00
|
|
|
#include "library/kernel_bindings.h"
|
2014-06-13 02:33:02 +00:00
|
|
|
#include "library/scoped_ext.h"
|
2014-05-24 17:45:00 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2014-09-20 16:00:10 +00:00
|
|
|
coercion_class coercion_class::mk_user(name n) { return coercion_class(coercion_class_kind::User, n); }
|
|
|
|
coercion_class coercion_class::mk_sort() { return coercion_class(coercion_class_kind::Sort); }
|
|
|
|
coercion_class coercion_class::mk_fun() { return coercion_class(coercion_class_kind::Fun); }
|
|
|
|
bool operator==(coercion_class const & c1, coercion_class const & c2) {
|
|
|
|
return c1.m_kind == c2.m_kind && c1.m_name == c2.m_name;
|
|
|
|
}
|
|
|
|
bool operator!=(coercion_class const & c1, coercion_class const & c2) {
|
|
|
|
return !(c1 == c2);
|
|
|
|
}
|
2014-05-24 17:45:00 +00:00
|
|
|
|
|
|
|
std::ostream & operator<<(std::ostream & out, coercion_class const & cls) {
|
|
|
|
switch (cls.kind()) {
|
|
|
|
case coercion_class_kind::User: out << cls.get_name(); break;
|
|
|
|
case coercion_class_kind::Sort: out << "Sort-class"; break;
|
|
|
|
case coercion_class_kind::Fun: out << "Function-class"; break;
|
|
|
|
}
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct coercion_class_cmp_fn {
|
|
|
|
int operator()(coercion_class const & c1, coercion_class const & c2) const {
|
|
|
|
if (c1.kind() != c2.kind())
|
|
|
|
return c1.kind() < c2.kind() ? -1 : 1;
|
|
|
|
else
|
|
|
|
return quick_cmp(c1.get_name(), c2.get_name());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct coercion_info {
|
|
|
|
expr m_fun;
|
|
|
|
expr m_fun_type;
|
|
|
|
level_param_names m_level_params;
|
|
|
|
unsigned m_num_args;
|
|
|
|
coercion_class m_to;
|
|
|
|
coercion_info() {}
|
|
|
|
coercion_info(expr const & f, expr const & f_type, level_param_names const & ls, unsigned num, coercion_class const & cls):
|
|
|
|
m_fun(f), m_fun_type(f_type), m_level_params(ls), m_num_args(num), m_to(cls) {}
|
|
|
|
};
|
|
|
|
|
2014-06-15 05:13:25 +00:00
|
|
|
struct coercion_state {
|
2014-09-28 17:23:11 +00:00
|
|
|
name_map<list<coercion_info>> m_coercion_info;
|
2014-05-25 16:49:26 +00:00
|
|
|
// m_from and m_to contain "direct" coercions
|
2014-09-28 17:23:11 +00:00
|
|
|
typedef std::tuple<coercion_class, expr, expr> from_data;
|
|
|
|
name_map<list<from_data>> m_from; // map user-class -> list of (class, coercion-fun)
|
|
|
|
rb_map<coercion_class, list<name>, coercion_class_cmp_fn> m_to;
|
|
|
|
name_map<pair<name, unsigned>> m_coercions; // map coercion -> (from-class, num-args)
|
2014-09-14 19:01:14 +00:00
|
|
|
|
|
|
|
template<typename F>
|
|
|
|
void for_each_info(name const & from, coercion_class const & to, F && f) {
|
2014-05-25 16:49:26 +00:00
|
|
|
auto it = m_coercion_info.find(from);
|
|
|
|
lean_assert(it);
|
|
|
|
for (coercion_info info : *it) {
|
2014-09-14 19:01:14 +00:00
|
|
|
if (info.m_to == to) {
|
|
|
|
f(info);
|
|
|
|
}
|
2014-05-25 16:49:26 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-14 19:01:14 +00:00
|
|
|
|
|
|
|
void update_from_to(type_checker & tc, name const & C, coercion_class const & D,
|
|
|
|
expr const & f, expr const & f_type, io_state const & ios) {
|
2014-05-25 16:49:26 +00:00
|
|
|
auto it1 = m_from.find(C);
|
2014-08-02 04:45:37 +00:00
|
|
|
if (!it1) {
|
2014-09-14 19:01:14 +00:00
|
|
|
m_from.insert(C, to_list(from_data(D, f, f_type)));
|
2014-08-02 04:45:37 +00:00
|
|
|
} else {
|
2014-09-14 19:01:14 +00:00
|
|
|
coercion_class D_it; expr f_it, f_type_it;
|
2014-08-02 04:45:37 +00:00
|
|
|
auto it = it1->begin();
|
|
|
|
auto end = it1->end();
|
2014-09-14 19:01:14 +00:00
|
|
|
for (; it != end; ++it) {
|
|
|
|
std::tie(D_it, f_it, f_type_it) = *it;
|
|
|
|
if (D_it == D && tc.is_def_eq(f_type_it, f_type).first)
|
2014-08-02 04:45:37 +00:00
|
|
|
break;
|
2014-09-14 19:01:14 +00:00
|
|
|
}
|
2014-08-02 04:45:37 +00:00
|
|
|
if (it == end)
|
2014-09-14 19:01:14 +00:00
|
|
|
m_from.insert(C, cons(from_data(D, f, f_type), *it1));
|
|
|
|
else if (std::get<1>(*it) != f)
|
2014-08-02 04:45:37 +00:00
|
|
|
ios.get_diagnostic_channel() << "replacing the coercion from '" << C << "' to '" << D << "'\n";
|
|
|
|
}
|
2014-05-25 16:49:26 +00:00
|
|
|
auto it2 = m_to.find(D);
|
|
|
|
if (!it2)
|
2014-08-03 20:50:48 +00:00
|
|
|
m_to.insert(D, to_list(C));
|
2014-05-25 16:49:26 +00:00
|
|
|
else if (std::find(it2->begin(), it2->end(), C) == it2->end())
|
2014-08-03 20:50:48 +00:00
|
|
|
m_to.insert(D, cons(C, *it2));
|
2014-05-25 16:49:26 +00:00
|
|
|
}
|
2014-05-24 17:45:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void check_pi(name const & f, expr const & t) {
|
|
|
|
if (!is_pi(t))
|
|
|
|
throw exception(sstream() << "invalid coercion, '" << f << "' is not function");
|
|
|
|
}
|
|
|
|
|
2014-08-17 13:59:52 +00:00
|
|
|
// similar to check_pi, but produces a more informative message
|
|
|
|
static void check_valid_coercion(name const & f, expr const & t) {
|
|
|
|
if (!is_pi(t)) {
|
2014-09-14 15:52:46 +00:00
|
|
|
throw exception(sstream() << "invalid coercion, type of '" << f
|
|
|
|
<< "' does not match any of the allowed expected types for coercions\n"
|
2014-08-17 13:59:52 +00:00
|
|
|
<< " Pi (x_1 : A_1) ... (x_n : A_n) (y: C x_1 ... x_n), D t_1 ... t_m\n"
|
|
|
|
<< " Pi (x_1 : A_1) ... (x_n : A_n) (y: C x_1 ... x_n), Type\n"
|
2014-09-12 20:08:47 +00:00
|
|
|
<< " Pi (x_1 : A_1) ... (x_n : A_n) (y: C x_1 ... x_n), A -> B");
|
2014-08-17 13:59:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-24 17:45:00 +00:00
|
|
|
/** \brief Return true iff args contains Var(0), Var(1), ..., Var(args.size() - 1) */
|
|
|
|
static bool check_var_args(buffer<expr> const & args) {
|
|
|
|
for (unsigned i = 0; i < args.size(); i++) {
|
|
|
|
if (!is_var(args[i]) || var_idx(args[i]) != i)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Return true iff param_id(levels[i]) == level_params[i] */
|
|
|
|
static bool check_levels(levels ls, level_param_names ps) {
|
|
|
|
while (!is_nil(ls) && !is_nil(ps)) {
|
|
|
|
if (!is_param(head(ls)))
|
|
|
|
return false;
|
|
|
|
if (param_id(head(ls)) != head(ps))
|
|
|
|
return false;
|
|
|
|
ls = tail(ls);
|
|
|
|
ps = tail(ps);
|
|
|
|
}
|
|
|
|
return is_nil(ls) && is_nil(ps);
|
|
|
|
}
|
|
|
|
|
|
|
|
optional<coercion_class> type_to_coercion_class(expr const & t) {
|
|
|
|
if (is_sort(t)) {
|
|
|
|
return optional<coercion_class>(coercion_class::mk_sort());
|
|
|
|
} else if (is_pi(t)) {
|
|
|
|
return optional<coercion_class>(coercion_class::mk_fun());
|
|
|
|
} else {
|
|
|
|
expr const & C = get_app_fn(t);
|
|
|
|
if (is_constant(C))
|
|
|
|
return optional<coercion_class>(coercion_class::mk_user(const_name(C)));
|
|
|
|
else
|
|
|
|
return optional<coercion_class>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-14 19:01:14 +00:00
|
|
|
typedef std::tuple<name, coercion_class, expr> arrow;
|
|
|
|
typedef list<arrow> arrows;
|
|
|
|
static bool contains(type_checker & tc, arrows const & as, name const & C, coercion_class const & D, expr const & f_type) {
|
|
|
|
name C_it; coercion_class D_it; expr f_type_it;
|
|
|
|
for (arrow const & a : as) {
|
|
|
|
std::tie(C_it, D_it, f_type_it) = a;
|
|
|
|
if (C == C_it && D == D_it && tc.is_def_eq(f_type_it, f_type).first)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2014-05-25 18:08:49 +00:00
|
|
|
}
|
2014-09-14 19:01:14 +00:00
|
|
|
static arrows insert(arrows const & a, name const & C, coercion_class const & D, expr const & f_type) {
|
|
|
|
return arrows(arrow(C, D, f_type), a);
|
2014-05-25 18:08:49 +00:00
|
|
|
}
|
2014-05-24 17:45:00 +00:00
|
|
|
|
2014-05-25 18:08:49 +00:00
|
|
|
struct add_coercion_fn {
|
2014-09-14 19:01:14 +00:00
|
|
|
type_checker m_tc;
|
|
|
|
coercion_state m_state;
|
|
|
|
arrows m_visited;
|
|
|
|
io_state const & m_ios;
|
2014-05-25 18:08:49 +00:00
|
|
|
|
|
|
|
void add_coercion_trans(name const & C,
|
|
|
|
level_param_names const & f_level_params, expr const & f, expr const & f_type, unsigned f_num_args,
|
|
|
|
level_param_names const & g_level_params, expr g, expr const & g_type, unsigned g_num_args,
|
|
|
|
coercion_class const & g_class) {
|
|
|
|
expr t = f_type;
|
|
|
|
buffer<expr> args;
|
|
|
|
for (unsigned i = 0; i <= f_num_args; i++)
|
|
|
|
args.push_back(mk_var(i));
|
|
|
|
expr f_app = apply_beta(f, args.size(), args.data());
|
|
|
|
buffer<name> f_arg_names;
|
|
|
|
buffer<expr> f_arg_types;
|
|
|
|
while (is_pi(t)) {
|
|
|
|
f_arg_names.push_back(binding_name(t));
|
|
|
|
f_arg_types.push_back(binding_domain(t));
|
|
|
|
t = binding_body(t);
|
|
|
|
}
|
|
|
|
expr D_app = t;
|
|
|
|
buffer<expr> gf_args;
|
|
|
|
gf_args.push_back(f_app);
|
|
|
|
expr D_cnst = get_app_rev_args(D_app, gf_args);
|
|
|
|
if (gf_args.size() != g_num_args + 1)
|
|
|
|
return;
|
|
|
|
if (length(const_levels(D_cnst)) != length(g_level_params))
|
|
|
|
return;
|
|
|
|
// C >-> D >-> E
|
2014-06-29 19:09:55 +00:00
|
|
|
g = instantiate_univ_params(g, g_level_params, const_levels(D_cnst));
|
2014-05-25 18:08:49 +00:00
|
|
|
expr gf = apply_beta(g, gf_args.size(), gf_args.data());
|
|
|
|
expr gf_type = g_type;
|
|
|
|
while (is_pi(gf_type))
|
|
|
|
gf_type = binding_body(gf_type);
|
2014-09-14 15:52:46 +00:00
|
|
|
gf_type = instantiate(instantiate_univ_params(gf_type, g_level_params,
|
|
|
|
const_levels(D_cnst)), gf_args.size(), gf_args.data());
|
2014-05-25 18:08:49 +00:00
|
|
|
unsigned i = f_arg_types.size();
|
|
|
|
while (i > 0) {
|
|
|
|
--i;
|
|
|
|
gf = mk_lambda(f_arg_names[i], f_arg_types[i], gf);
|
|
|
|
gf_type = mk_pi(f_arg_names[i], f_arg_types[i], gf_type);
|
|
|
|
}
|
|
|
|
add_coercion(C, gf, gf_type, f_level_params, f_num_args, g_class);
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
2014-05-25 18:08:49 +00:00
|
|
|
|
|
|
|
void add_coercion_trans_to(name const & C, expr const & f, expr const & f_type,
|
|
|
|
level_param_names const & ls, unsigned num_args, coercion_class const & cls) {
|
|
|
|
// apply transitivity using ext.m_to
|
|
|
|
coercion_class C_cls = coercion_class::mk_user(C);
|
2014-06-13 02:33:02 +00:00
|
|
|
auto it1 = m_state.m_to.find(C_cls);
|
2014-05-25 18:08:49 +00:00
|
|
|
if (!it1)
|
|
|
|
return;
|
|
|
|
for (name const & B : *it1) {
|
2014-09-14 19:01:14 +00:00
|
|
|
m_state.for_each_info(B, C_cls, [&](coercion_info const & info) {
|
|
|
|
// B >-> C >-> D
|
|
|
|
add_coercion_trans(B, info.m_level_params, info.m_fun, info.m_fun_type, info.m_num_args,
|
|
|
|
ls, f, f_type, num_args, cls);
|
|
|
|
});
|
2014-05-25 18:08:49 +00:00
|
|
|
}
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2014-05-25 18:08:49 +00:00
|
|
|
void add_coercion_trans_from(name const & C, expr const & f, expr const & f_type,
|
|
|
|
level_param_names const & ls, unsigned num_args, coercion_class const & cls) {
|
|
|
|
// apply transitivity using ext.m_from
|
|
|
|
if (cls.kind() != coercion_class_kind::User)
|
|
|
|
return; // nothing to do Sort and Fun classes are terminal
|
|
|
|
name const & D = cls.get_name();
|
2014-06-13 02:33:02 +00:00
|
|
|
auto it = m_state.m_from.find(D);
|
2014-05-25 18:08:49 +00:00
|
|
|
if (!it)
|
|
|
|
return;
|
2014-08-02 04:45:37 +00:00
|
|
|
for (auto const & p : *it) {
|
2014-09-14 19:01:14 +00:00
|
|
|
coercion_class E = std::get<0>(p);
|
|
|
|
m_state.for_each_info(D, E, [&](coercion_info const & info) {
|
|
|
|
// C >-> D >-> E
|
|
|
|
add_coercion_trans(C, ls, f, f_type, num_args,
|
|
|
|
info.m_level_params, info.m_fun, info.m_fun_type, info.m_num_args, info.m_to);
|
|
|
|
});
|
2014-05-25 18:08:49 +00:00
|
|
|
}
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2014-05-25 18:08:49 +00:00
|
|
|
void add_coercion_core(name const & C, expr const & f, expr const & f_type,
|
|
|
|
level_param_names const & ls, unsigned num_args, coercion_class const & cls) {
|
2014-06-13 02:33:02 +00:00
|
|
|
auto it = m_state.m_coercion_info.find(C);
|
2014-05-25 18:08:49 +00:00
|
|
|
if (!it) {
|
|
|
|
list<coercion_info> infos(coercion_info(f, f_type, ls, num_args, cls));
|
2014-06-13 02:33:02 +00:00
|
|
|
m_state.m_coercion_info.insert(C, infos);
|
2014-05-25 18:08:49 +00:00
|
|
|
} else {
|
|
|
|
list<coercion_info> infos = *it;
|
2014-09-14 19:01:14 +00:00
|
|
|
infos = filter(infos, [&](coercion_info const & info) {
|
|
|
|
return info.m_to != cls || !m_tc.is_def_eq(info.m_fun_type, f_type).first;
|
|
|
|
});
|
2014-08-03 20:50:48 +00:00
|
|
|
infos = cons(coercion_info(f, f_type, ls, num_args, cls), infos);
|
2014-06-13 02:33:02 +00:00
|
|
|
m_state.m_coercion_info.insert(C, infos);
|
2014-05-25 18:08:49 +00:00
|
|
|
}
|
|
|
|
if (is_constant(f))
|
2014-09-09 19:46:55 +00:00
|
|
|
m_state.m_coercions.insert(const_name(f), mk_pair(C, num_args));
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2014-05-25 18:08:49 +00:00
|
|
|
void add_coercion(name const & C, expr const & f, expr const & f_type,
|
|
|
|
level_param_names const & ls, unsigned num_args, coercion_class const & cls) {
|
2014-09-14 19:01:14 +00:00
|
|
|
if (contains(m_tc, m_visited, C, cls, f_type))
|
2014-05-25 18:08:49 +00:00
|
|
|
return;
|
|
|
|
if (cls.kind() == coercion_class_kind::User && cls.get_name() == C)
|
|
|
|
return;
|
2014-09-14 19:01:14 +00:00
|
|
|
m_visited = insert(m_visited, C, cls, f_type);
|
2014-05-25 18:08:49 +00:00
|
|
|
add_coercion_core(C, f, f_type, ls, num_args, cls);
|
|
|
|
add_coercion_trans_to(C, f, f_type, ls, num_args, cls);
|
|
|
|
add_coercion_trans_from(C, f, f_type, ls, num_args, cls);
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2014-09-14 19:01:14 +00:00
|
|
|
add_coercion_fn(environment const & env, coercion_state const & s, io_state const & ios):
|
|
|
|
m_tc(env), m_state(s), m_ios(ios) {}
|
2014-05-25 16:49:26 +00:00
|
|
|
|
2014-06-13 02:33:02 +00:00
|
|
|
coercion_state operator()(name const & C, expr const & f, expr const & f_type,
|
|
|
|
level_param_names const & ls, unsigned num_args, coercion_class const & cls) {
|
2014-05-25 18:08:49 +00:00
|
|
|
add_coercion(C, f, f_type, ls, num_args, cls);
|
2014-09-14 19:01:14 +00:00
|
|
|
m_state.update_from_to(m_tc, C, cls, f, f_type, m_ios);
|
2014-06-13 02:33:02 +00:00
|
|
|
return m_state;
|
2014-05-25 18:08:49 +00:00
|
|
|
}
|
|
|
|
};
|
2014-05-24 17:45:00 +00:00
|
|
|
|
2014-09-14 15:52:46 +00:00
|
|
|
coercion_state add_coercion(environment const & env, io_state const & ios, coercion_state const & st,
|
|
|
|
name const & f, name const & C) {
|
2014-05-24 17:45:00 +00:00
|
|
|
declaration d = env.get(f);
|
|
|
|
unsigned num = 0;
|
|
|
|
buffer<expr> args;
|
|
|
|
expr t = d.get_type();
|
|
|
|
check_pi(f, t);
|
|
|
|
while (true) {
|
|
|
|
args.clear();
|
|
|
|
expr const & C_fn = get_app_rev_args(binding_domain(t), args);
|
|
|
|
if (is_constant(C_fn) &&
|
|
|
|
const_name(C_fn) == C &&
|
|
|
|
num == args.size() &&
|
|
|
|
check_var_args(args) &&
|
2014-06-02 23:20:34 +00:00
|
|
|
check_levels(const_levels(C_fn), d.get_univ_params())) {
|
2014-05-24 17:45:00 +00:00
|
|
|
expr fn = mk_constant(f, const_levels(C_fn));
|
|
|
|
optional<coercion_class> cls = type_to_coercion_class(binding_body(t));
|
|
|
|
if (!cls)
|
2014-05-25 17:01:04 +00:00
|
|
|
throw exception(sstream() << "invalid coercion, '" << f << "' cannot be used as a coercion from '" << C << "'");
|
2014-05-24 17:45:00 +00:00
|
|
|
else if (cls->kind() == coercion_class_kind::User && cls->get_name() == C)
|
2014-05-25 17:01:04 +00:00
|
|
|
throw exception(sstream() << "invalid coercion, '" << f << "' is a coercion from '" << C << "' to itself");
|
2014-09-14 19:01:14 +00:00
|
|
|
return add_coercion_fn(env, st, ios)(C, fn, d.get_type(), d.get_univ_params(), num, *cls);
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
t = binding_body(t);
|
|
|
|
num++;
|
2014-08-17 13:59:52 +00:00
|
|
|
check_valid_coercion(f, t);
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-23 00:30:29 +00:00
|
|
|
static name * g_class_name = nullptr;
|
|
|
|
static std::string * g_key = nullptr;
|
|
|
|
|
2014-08-19 23:28:58 +00:00
|
|
|
typedef pair<name, name> coercion_entry;
|
2014-06-13 02:33:02 +00:00
|
|
|
struct coercion_config {
|
|
|
|
typedef coercion_state state;
|
|
|
|
typedef coercion_entry entry;
|
|
|
|
static void add_entry(environment const & env, io_state const & ios, state & s, entry const & e) {
|
|
|
|
s = add_coercion(env, ios, s, e.first, e.second);
|
|
|
|
}
|
|
|
|
static name const & get_class_name() {
|
2014-09-23 00:30:29 +00:00
|
|
|
return *g_class_name;
|
2014-06-13 02:33:02 +00:00
|
|
|
}
|
|
|
|
static std::string const & get_serialization_key() {
|
2014-09-23 00:30:29 +00:00
|
|
|
return *g_key;
|
2014-06-13 02:33:02 +00:00
|
|
|
}
|
|
|
|
static void write_entry(serializer & s, entry const & e) {
|
|
|
|
s << e.first << e.second;
|
|
|
|
}
|
|
|
|
static entry read_entry(deserializer & d) {
|
|
|
|
entry e;
|
|
|
|
d >> e.first >> e.second;
|
|
|
|
return e;
|
|
|
|
}
|
2014-09-30 01:26:53 +00:00
|
|
|
static optional<unsigned> get_fingerprint(entry const & e) {
|
|
|
|
return some(hash(e.first.hash(), e.second.hash()));
|
|
|
|
}
|
2014-06-13 02:33:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template class scoped_ext<coercion_config>;
|
|
|
|
typedef scoped_ext<coercion_config> coercion_ext;
|
|
|
|
|
2014-09-23 00:30:29 +00:00
|
|
|
void initialize_coercion() {
|
|
|
|
g_class_name = new name("coercions");
|
|
|
|
g_key = new std::string("coerce");
|
|
|
|
coercion_ext::initialize();
|
|
|
|
}
|
|
|
|
|
|
|
|
void finalize_coercion() {
|
|
|
|
coercion_ext::finalize();
|
|
|
|
delete g_key;
|
|
|
|
delete g_class_name;
|
|
|
|
}
|
|
|
|
|
2014-09-19 19:30:36 +00:00
|
|
|
environment add_coercion(environment const & env, name const & f, name const & C, io_state const & ios, bool persistent) {
|
|
|
|
return coercion_ext::add_entry(env, ios, coercion_entry(f, C), persistent);
|
2014-06-13 02:33:02 +00:00
|
|
|
}
|
|
|
|
|
2014-09-19 19:30:36 +00:00
|
|
|
environment add_coercion(environment const & env, name const & f, io_state const & ios, bool persistent) {
|
2014-05-24 17:45:00 +00:00
|
|
|
declaration d = env.get(f);
|
|
|
|
expr t = d.get_type();
|
|
|
|
check_pi(f, t);
|
2014-09-12 20:17:20 +00:00
|
|
|
buffer<name> Cs; // possible Cs
|
2014-09-09 21:35:48 +00:00
|
|
|
while (is_pi(t)) {
|
|
|
|
expr d = get_app_fn(binding_domain(t));
|
|
|
|
if (is_constant(d))
|
2014-09-12 20:17:20 +00:00
|
|
|
Cs.push_back(const_name(d));
|
2014-05-24 17:45:00 +00:00
|
|
|
t = binding_body(t);
|
2014-09-09 21:35:48 +00:00
|
|
|
}
|
2014-09-12 20:17:20 +00:00
|
|
|
if (Cs.empty())
|
2014-05-25 17:01:04 +00:00
|
|
|
throw exception(sstream() << "invalid coercion, '" << f << "' cannot be used as a coercion");
|
2014-09-12 20:17:20 +00:00
|
|
|
unsigned i = Cs.size();
|
|
|
|
while (i > 0) {
|
|
|
|
--i;
|
|
|
|
if (i == 0) {
|
|
|
|
// last alternative
|
2014-09-19 19:30:36 +00:00
|
|
|
return add_coercion(env, f, Cs[i], ios, persistent);
|
2014-09-12 20:17:20 +00:00
|
|
|
} else {
|
|
|
|
try {
|
2014-09-19 19:30:36 +00:00
|
|
|
return add_coercion(env, f, Cs[i], ios, persistent);
|
2014-09-12 20:17:20 +00:00
|
|
|
} catch (exception &) {
|
|
|
|
// failed, keep trying...
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lean_unreachable(); // LCOV_EXCL_LINE
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2014-09-09 19:46:55 +00:00
|
|
|
optional<pair<name, unsigned>> is_coercion(environment const & env, name const & f) {
|
2014-06-13 02:33:02 +00:00
|
|
|
coercion_state const & ext = coercion_ext::get_state(env);
|
2014-09-09 19:46:55 +00:00
|
|
|
if (auto it = ext.m_coercions.find(f))
|
|
|
|
return optional<pair<name, unsigned>>(*it);
|
|
|
|
else
|
|
|
|
return optional<pair<name, unsigned>>();
|
2014-05-25 15:38:50 +00:00
|
|
|
}
|
|
|
|
|
2014-09-09 19:46:55 +00:00
|
|
|
optional<pair<name, unsigned>> is_coercion(environment const & env, expr const & f) {
|
|
|
|
if (!is_constant(f))
|
|
|
|
return optional<pair<name, unsigned>>();
|
|
|
|
return is_coercion(env, const_name(f));
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2014-06-27 01:38:27 +00:00
|
|
|
bool has_coercions_to(environment const & env, name const & D) {
|
|
|
|
coercion_state const & ext = coercion_ext::get_state(env);
|
|
|
|
auto it = ext.m_to.find(coercion_class::mk_user(D));
|
|
|
|
return it && !is_nil(*it);
|
|
|
|
}
|
|
|
|
|
2014-09-20 16:00:10 +00:00
|
|
|
bool has_coercions_to_sort(environment const & env) {
|
|
|
|
coercion_state const & ext = coercion_ext::get_state(env);
|
|
|
|
auto it = ext.m_to.find(coercion_class::mk_sort());
|
|
|
|
return it && !is_nil(*it);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool has_coercions_to_fun(environment const & env) {
|
|
|
|
coercion_state const & ext = coercion_ext::get_state(env);
|
|
|
|
auto it = ext.m_to.find(coercion_class::mk_fun());
|
|
|
|
return it && !is_nil(*it);
|
|
|
|
}
|
|
|
|
|
2014-05-24 17:45:00 +00:00
|
|
|
bool has_coercions_from(environment const & env, name const & C) {
|
2014-06-13 02:33:02 +00:00
|
|
|
coercion_state const & ext = coercion_ext::get_state(env);
|
2014-05-25 16:49:26 +00:00
|
|
|
return ext.m_coercion_info.contains(C);
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool has_coercions_from(environment const & env, expr const & C) {
|
|
|
|
expr const & C_fn = get_app_fn(C);
|
|
|
|
if (!is_constant(C_fn))
|
|
|
|
return false;
|
2014-06-13 02:33:02 +00:00
|
|
|
coercion_state const & ext = coercion_ext::get_state(env);
|
2014-05-25 16:49:26 +00:00
|
|
|
auto it = ext.m_coercion_info.find(const_name(C_fn));
|
2014-05-24 17:45:00 +00:00
|
|
|
if (!it)
|
|
|
|
return false;
|
|
|
|
list<coercion_info> const & cs = *it;
|
|
|
|
return
|
|
|
|
head(cs).m_num_args == get_app_num_args(C) &&
|
|
|
|
length(head(cs).m_level_params) == length(const_levels(C_fn));
|
|
|
|
}
|
|
|
|
|
2014-09-14 19:01:14 +00:00
|
|
|
list<expr> get_coercions(environment const & env, expr const & C, coercion_class const & D) {
|
2014-05-24 17:45:00 +00:00
|
|
|
buffer<expr> args;
|
|
|
|
expr const & C_fn = get_app_rev_args(C, args);
|
|
|
|
if (!is_constant(C_fn))
|
2014-09-14 19:01:14 +00:00
|
|
|
return list<expr>();
|
2014-06-13 02:33:02 +00:00
|
|
|
coercion_state const & ext = coercion_ext::get_state(env);
|
2014-05-25 16:49:26 +00:00
|
|
|
auto it = ext.m_coercion_info.find(const_name(C_fn));
|
2014-05-24 17:45:00 +00:00
|
|
|
if (!it)
|
2014-09-14 19:01:14 +00:00
|
|
|
return list<expr>();
|
|
|
|
buffer<expr> r;
|
2014-05-24 17:45:00 +00:00
|
|
|
for (coercion_info const & info : *it) {
|
|
|
|
if (info.m_to == D && info.m_num_args == args.size() && length(info.m_level_params) == length(const_levels(C_fn))) {
|
2014-06-29 19:09:55 +00:00
|
|
|
expr f = instantiate_univ_params(info.m_fun, info.m_level_params, const_levels(C_fn));
|
2014-09-14 19:01:14 +00:00
|
|
|
r.push_back(apply_beta(f, args.size(), args.data()));
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-14 19:01:14 +00:00
|
|
|
return to_list(r.begin(), r.end());
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2014-09-14 19:01:14 +00:00
|
|
|
list<expr> get_coercions(environment const & env, expr const & C, name const & D) {
|
|
|
|
return get_coercions(env, C, coercion_class::mk_user(D));
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2014-09-14 19:01:14 +00:00
|
|
|
list<expr> get_coercions_to_sort(environment const & env, expr const & C) {
|
|
|
|
return get_coercions(env, C, coercion_class::mk_sort());
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2014-09-14 19:01:14 +00:00
|
|
|
list<expr> get_coercions_to_fun(environment const & env, expr const & C) {
|
|
|
|
return get_coercions(env, C, coercion_class::mk_fun());
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|
|
|
|
|
2014-09-20 16:00:10 +00:00
|
|
|
bool get_coercions_from(environment const & env, expr const & C, buffer<std::tuple<coercion_class, expr, expr>> & result) {
|
2014-05-24 17:45:00 +00:00
|
|
|
buffer<expr> args;
|
|
|
|
expr const & C_fn = get_app_rev_args(C, args);
|
|
|
|
if (!is_constant(C_fn))
|
|
|
|
return false;
|
2014-06-13 02:33:02 +00:00
|
|
|
coercion_state const & ext = coercion_ext::get_state(env);
|
2014-05-25 16:49:26 +00:00
|
|
|
auto it = ext.m_coercion_info.find(const_name(C_fn));
|
2014-05-24 17:45:00 +00:00
|
|
|
if (!it)
|
|
|
|
return false;
|
|
|
|
bool r = false;
|
|
|
|
for (coercion_info const & info : *it) {
|
2014-09-20 16:00:10 +00:00
|
|
|
if (info.m_num_args == args.size() &&
|
2014-05-24 17:45:00 +00:00
|
|
|
length(info.m_level_params) == length(const_levels(C_fn))) {
|
2014-06-29 19:09:55 +00:00
|
|
|
expr f = instantiate_univ_params(info.m_fun, info.m_level_params, const_levels(C_fn));
|
2014-05-24 17:45:00 +00:00
|
|
|
expr c = apply_beta(f, args.size(), args.data());
|
2014-06-29 19:09:55 +00:00
|
|
|
expr t = instantiate_univ_params(info.m_fun_type, info.m_level_params, const_levels(C_fn));
|
2014-05-25 18:35:47 +00:00
|
|
|
for (unsigned i = 0; i < args.size(); i++) t = binding_body(t);
|
|
|
|
t = instantiate(t, args.size(), args.data());
|
2014-09-20 16:00:10 +00:00
|
|
|
result.emplace_back(info.m_to, c, t);
|
2014-05-24 17:45:00 +00:00
|
|
|
r = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
2014-05-25 13:05:31 +00:00
|
|
|
|
2014-05-25 14:24:58 +00:00
|
|
|
template<typename F>
|
|
|
|
void for_each_coercion(environment const & env, F && f) {
|
2014-06-13 02:33:02 +00:00
|
|
|
coercion_state const & ext = coercion_ext::get_state(env);
|
2014-05-25 16:49:26 +00:00
|
|
|
ext.m_coercion_info.for_each([&](name const & C, list<coercion_info> const & infos) {
|
2014-05-25 14:24:58 +00:00
|
|
|
for (auto const & info : infos) {
|
|
|
|
f(C, info);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-09-14 15:52:46 +00:00
|
|
|
void for_each_coercion_user(environment const & env, coercion_user_fn const & f) {
|
2014-05-25 14:24:58 +00:00
|
|
|
for_each_coercion(env, [&](name const & C, coercion_info const & info) {
|
2014-09-14 15:52:46 +00:00
|
|
|
if (info.m_to.kind() == coercion_class_kind::User)
|
|
|
|
f(C, info.m_to.get_name(), info.m_fun, info.m_level_params, info.m_num_args);
|
2014-05-25 14:24:58 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-09-14 15:52:46 +00:00
|
|
|
void for_each_coercion_sort(environment const & env, coercion_sort_fn const & f) {
|
2014-05-25 14:24:58 +00:00
|
|
|
for_each_coercion(env, [&](name const & C, coercion_info const & info) {
|
2014-09-14 15:52:46 +00:00
|
|
|
if (info.m_to.kind() == coercion_class_kind::Sort)
|
|
|
|
f(C, info.m_fun, info.m_level_params, info.m_num_args);
|
2014-05-25 14:24:58 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2014-09-14 15:52:46 +00:00
|
|
|
void for_each_coercion_fun(environment const & env, coercion_fun_fn const & f) {
|
2014-05-25 14:24:58 +00:00
|
|
|
for_each_coercion(env, [&](name const & C, coercion_info const & info) {
|
2014-09-14 15:52:46 +00:00
|
|
|
if (info.m_to.kind() == coercion_class_kind::Fun)
|
|
|
|
f(C, info.m_fun, info.m_level_params, info.m_num_args);
|
2014-05-25 14:24:58 +00:00
|
|
|
});
|
|
|
|
}
|
2014-05-24 17:45:00 +00:00
|
|
|
}
|