2014-06-18 20:55:48 +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
|
|
|
|
*/
|
2014-07-06 23:46:34 +00:00
|
|
|
#include <algorithm>
|
2014-06-18 20:55:48 +00:00
|
|
|
#include "util/sstream.h"
|
|
|
|
#include "util/name_map.h"
|
|
|
|
#include "kernel/replace_fn.h"
|
|
|
|
#include "kernel/type_checker.h"
|
|
|
|
#include "kernel/instantiate.h"
|
|
|
|
#include "kernel/inductive/inductive.h"
|
2014-07-14 04:41:44 +00:00
|
|
|
#include "kernel/abstract.h"
|
2014-06-28 20:57:36 +00:00
|
|
|
#include "kernel/free_vars.h"
|
2014-06-18 20:55:48 +00:00
|
|
|
#include "library/scoped_ext.h"
|
|
|
|
#include "library/locals.h"
|
2014-10-14 01:03:45 +00:00
|
|
|
#include "library/deep_copy.h"
|
2014-06-18 20:55:48 +00:00
|
|
|
#include "library/placeholder.h"
|
|
|
|
#include "library/aliases.h"
|
2014-09-04 22:03:59 +00:00
|
|
|
#include "library/protected.h"
|
2014-06-25 15:30:09 +00:00
|
|
|
#include "library/explicit.h"
|
2014-09-19 20:30:08 +00:00
|
|
|
#include "library/reducible.h"
|
2014-10-25 18:32:26 +00:00
|
|
|
#include "library/definitional/rec_on.h"
|
2014-10-25 20:36:38 +00:00
|
|
|
#include "library/definitional/induction_on.h"
|
2014-10-26 00:22:02 +00:00
|
|
|
#include "library/definitional/cases_on.h"
|
|
|
|
#include "library/definitional/unit.h"
|
2014-06-18 20:55:48 +00:00
|
|
|
#include "frontends/lean/decl_cmds.h"
|
|
|
|
#include "frontends/lean/util.h"
|
2014-09-07 23:59:53 +00:00
|
|
|
#include "frontends/lean/class.h"
|
2014-06-18 20:55:48 +00:00
|
|
|
#include "frontends/lean/parser.h"
|
2014-09-23 17:00:36 +00:00
|
|
|
#include "frontends/lean/tokens.h"
|
2014-11-03 22:14:40 +00:00
|
|
|
#include "frontends/lean/type_util.h"
|
2014-06-18 20:55:48 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
using inductive::intro_rule;
|
|
|
|
using inductive::inductive_decl;
|
|
|
|
using inductive::inductive_decl_name;
|
|
|
|
using inductive::inductive_decl_type;
|
|
|
|
using inductive::inductive_decl_intros;
|
|
|
|
using inductive::intro_rule_name;
|
|
|
|
using inductive::intro_rule_type;
|
|
|
|
|
2014-07-01 00:16:10 +00:00
|
|
|
inductive_decl update_inductive_decl(inductive_decl const & d, expr const & t) {
|
|
|
|
return inductive_decl(inductive_decl_name(d), t, inductive_decl_intros(d));
|
|
|
|
}
|
|
|
|
|
|
|
|
inductive_decl update_inductive_decl(inductive_decl const & d, buffer<intro_rule> const & irs) {
|
|
|
|
return inductive_decl(inductive_decl_name(d), inductive_decl_type(d), to_list(irs.begin(), irs.end()));
|
|
|
|
}
|
|
|
|
|
|
|
|
intro_rule update_intro_rule(intro_rule const & r, expr const & t) {
|
|
|
|
return intro_rule(intro_rule_name(r), t);
|
|
|
|
}
|
|
|
|
|
2014-10-26 00:55:44 +00:00
|
|
|
static name * g_tmp_prefix = nullptr;
|
|
|
|
static name * g_inductive = nullptr;
|
|
|
|
static name * g_definition = nullptr;
|
|
|
|
static name * g_intro = nullptr;
|
|
|
|
static name * g_recursor = nullptr;
|
2014-09-23 17:00:36 +00:00
|
|
|
|
|
|
|
void initialize_inductive_cmd() {
|
|
|
|
g_tmp_prefix = new name(name::mk_internal_unique_name());
|
|
|
|
g_inductive = new name("inductive");
|
|
|
|
g_intro = new name("intro");
|
|
|
|
g_recursor = new name("recursor");
|
2014-10-26 00:55:44 +00:00
|
|
|
g_definition = new name("definition");
|
2014-09-23 17:00:36 +00:00
|
|
|
}
|
2014-06-18 20:55:48 +00:00
|
|
|
|
2014-09-23 17:00:36 +00:00
|
|
|
void finalize_inductive_cmd() {
|
|
|
|
delete g_recursor;
|
|
|
|
delete g_intro;
|
|
|
|
delete g_inductive;
|
2014-10-26 00:55:44 +00:00
|
|
|
delete g_definition;
|
2014-09-23 17:00:36 +00:00
|
|
|
delete g_tmp_prefix;
|
|
|
|
}
|
2014-08-23 19:39:59 +00:00
|
|
|
|
2014-07-06 23:46:34 +00:00
|
|
|
struct inductive_cmd_fn {
|
|
|
|
typedef std::unique_ptr<type_checker> type_checker_ptr;
|
2014-09-29 18:10:24 +00:00
|
|
|
typedef name_map<implicit_infer_kind> implicit_infer_map;
|
2014-11-03 22:14:40 +00:00
|
|
|
typedef type_modifiers modifiers;
|
2014-09-29 18:10:24 +00:00
|
|
|
|
|
|
|
parser & m_p;
|
|
|
|
environment m_env;
|
|
|
|
type_checker_ptr m_tc;
|
|
|
|
name m_namespace; // current namespace
|
|
|
|
pos_info m_pos; // current position for reporting errors
|
|
|
|
bool m_first; // true if parsing the first inductive type in a mutually recursive inductive decl.
|
2014-10-01 17:23:05 +00:00
|
|
|
buffer<name> m_explicit_levels;
|
2014-09-29 18:10:24 +00:00
|
|
|
buffer<name> m_levels;
|
2014-10-14 01:03:45 +00:00
|
|
|
buffer<expr> m_params; // parameters
|
2014-09-29 18:10:24 +00:00
|
|
|
unsigned m_num_params; // number of parameters
|
2014-10-14 01:03:45 +00:00
|
|
|
bool m_using_explicit_levels; // true if the user is providing explicit universe levels
|
2014-10-01 17:23:05 +00:00
|
|
|
level m_u; // temporary auxiliary global universe used for inferring the result universe of
|
|
|
|
// an inductive datatype declaration.
|
2014-09-29 18:10:24 +00:00
|
|
|
bool m_infer_result_universe;
|
|
|
|
implicit_infer_map m_implicit_infer_map; // implicit argument inference mode
|
2014-09-07 23:59:53 +00:00
|
|
|
name_map<modifiers> m_modifiers;
|
2014-10-26 00:55:44 +00:00
|
|
|
name_map<pos_info> m_decl_pos_map;
|
2014-08-23 19:39:59 +00:00
|
|
|
typedef std::tuple<name, name, pos_info> decl_info;
|
|
|
|
buffer<decl_info> m_decl_info; // auxiliary buffer used to populate declaration_index
|
2014-07-06 23:46:34 +00:00
|
|
|
|
2014-09-07 23:59:53 +00:00
|
|
|
|
2014-07-06 23:46:34 +00:00
|
|
|
inductive_cmd_fn(parser & p):m_p(p) {
|
|
|
|
m_env = p.env();
|
|
|
|
m_first = true;
|
|
|
|
m_using_explicit_levels = false;
|
|
|
|
m_num_params = 0;
|
2014-09-23 17:00:36 +00:00
|
|
|
name u_name(*g_tmp_prefix, "u");
|
2014-07-06 23:46:34 +00:00
|
|
|
m_env = m_env.add_universe(u_name);
|
|
|
|
m_u = mk_global_univ(u_name);
|
|
|
|
m_infer_result_universe = false;
|
|
|
|
m_namespace = get_namespace(m_env);
|
2014-09-19 20:30:08 +00:00
|
|
|
m_tc = mk_type_checker(m_env, m_p.mk_ngen(), false);
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 23:46:34 +00:00
|
|
|
[[ noreturn ]] void throw_error(char const * error_msg) { throw parser_error(error_msg, m_pos); }
|
|
|
|
[[ noreturn ]] void throw_error(sstream const & strm) { throw parser_error(strm, m_pos); }
|
|
|
|
|
2014-09-29 18:10:24 +00:00
|
|
|
implicit_infer_kind get_implicit_infer_kind(name const & n) {
|
|
|
|
if (auto it = m_implicit_infer_map.find(n))
|
|
|
|
return *it;
|
|
|
|
else
|
|
|
|
return implicit_infer_kind::Implicit;
|
|
|
|
}
|
|
|
|
|
2014-08-16 01:02:41 +00:00
|
|
|
name mk_rec_name(name const & n) {
|
2014-10-25 17:47:12 +00:00
|
|
|
return ::lean::inductive::get_elim_name(n);
|
2014-08-16 01:02:41 +00:00
|
|
|
}
|
|
|
|
|
2014-07-06 23:46:34 +00:00
|
|
|
/** \brief Parse the name of an inductive datatype or introduction rule,
|
|
|
|
prefix the current namespace to it and return it.
|
|
|
|
*/
|
2014-09-16 16:48:51 +00:00
|
|
|
pair<name, name> parse_decl_name(optional<name> const & ind_name) {
|
2014-07-06 23:46:34 +00:00
|
|
|
m_pos = m_p.pos();
|
|
|
|
name id = m_p.check_id_next("invalid declaration, identifier expected");
|
2014-09-04 23:36:06 +00:00
|
|
|
if (ind_name) {
|
|
|
|
// for intro rules, we append the name of the inductive datatype
|
2014-09-10 00:59:40 +00:00
|
|
|
check_atomic(id);
|
2014-09-04 23:36:06 +00:00
|
|
|
name full_id = *ind_name + id;
|
2014-09-23 17:00:36 +00:00
|
|
|
m_decl_info.emplace_back(full_id, *g_intro, m_pos);
|
2014-09-16 16:48:51 +00:00
|
|
|
return mk_pair(id, full_id);
|
2014-08-23 19:39:59 +00:00
|
|
|
} else {
|
2014-09-04 23:36:06 +00:00
|
|
|
name full_id = m_namespace + id;
|
2014-09-23 17:00:36 +00:00
|
|
|
m_decl_info.emplace_back(full_id, *g_inductive, m_pos);
|
|
|
|
m_decl_info.emplace_back(mk_rec_name(full_id), *g_recursor, m_pos);
|
2014-09-16 16:48:51 +00:00
|
|
|
return mk_pair(id, full_id);
|
2014-08-23 19:39:59 +00:00
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
|
|
|
|
2014-09-16 16:48:51 +00:00
|
|
|
pair<name, name> parse_inductive_decl_name() { return parse_decl_name(optional<name>()); }
|
|
|
|
name parse_intro_decl_name(name const & ind_name) { return parse_decl_name(optional<name>(ind_name)).second; }
|
2014-08-16 01:02:41 +00:00
|
|
|
|
2014-07-06 23:46:34 +00:00
|
|
|
/** \brief Parse inductive declaration universe parameters.
|
|
|
|
If this is the first declaration in a mutually recursive block, then this method
|
2014-10-01 17:23:05 +00:00
|
|
|
stores the levels in m_explicit_levels, and set m_using_explicit_levels to true (iff they were provided).
|
2014-07-06 23:46:34 +00:00
|
|
|
|
2014-10-14 03:48:23 +00:00
|
|
|
If this is not the first declaration, then this function just checks if the user
|
|
|
|
is not providing explicit universe levels again.
|
2014-07-06 23:46:34 +00:00
|
|
|
*/
|
|
|
|
void parse_inductive_univ_params() {
|
2014-06-18 20:55:48 +00:00
|
|
|
buffer<name> curr_ls_buffer;
|
2014-07-06 23:46:34 +00:00
|
|
|
if (parse_univ_params(m_p, curr_ls_buffer)) {
|
2014-10-14 03:48:23 +00:00
|
|
|
if (!m_first) {
|
2014-07-06 23:46:34 +00:00
|
|
|
throw_error("invalid mutually recursive declaration, "
|
2014-10-14 03:48:23 +00:00
|
|
|
"explicit universe levels should only be provided to first inductive type in this declaration");
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|
2014-10-14 03:48:23 +00:00
|
|
|
m_using_explicit_levels = true;
|
|
|
|
m_explicit_levels.append(curr_ls_buffer);
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Parse the type of an inductive datatype */
|
|
|
|
expr parse_datatype_type() {
|
|
|
|
expr type;
|
2014-06-30 16:14:55 +00:00
|
|
|
buffer<expr> ps;
|
2014-07-06 23:46:34 +00:00
|
|
|
m_pos = m_p.pos();
|
2014-09-23 17:00:36 +00:00
|
|
|
if (m_p.curr_is_token(get_assign_tk())) {
|
2014-08-07 14:52:20 +00:00
|
|
|
type = mk_sort(mk_level_placeholder());
|
2014-10-14 03:48:23 +00:00
|
|
|
} else if (m_first && !m_p.curr_is_token(get_colon_tk())) {
|
|
|
|
lean_assert(m_params.empty());
|
2014-07-06 23:46:34 +00:00
|
|
|
m_p.parse_binders(ps);
|
2014-10-14 03:48:23 +00:00
|
|
|
m_num_params = ps.size();
|
2014-09-23 17:00:36 +00:00
|
|
|
if (m_p.curr_is_token(get_colon_tk())) {
|
2014-08-07 14:52:20 +00:00
|
|
|
m_p.next();
|
|
|
|
type = m_p.parse_scoped_expr(ps);
|
|
|
|
} else {
|
|
|
|
type = mk_sort(mk_level_placeholder());
|
|
|
|
}
|
2014-07-14 04:41:44 +00:00
|
|
|
type = Pi(ps, type, m_p);
|
2014-06-18 20:55:48 +00:00
|
|
|
} else {
|
2014-10-14 03:48:23 +00:00
|
|
|
m_p.check_token_next(get_colon_tk(), "invalid mutually recursive inductive declaration, "
|
|
|
|
"':' expected (remark: parameters should be provided only to first datatype)");
|
2014-07-06 23:46:34 +00:00
|
|
|
type = m_p.parse_expr();
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|
2014-10-14 03:48:23 +00:00
|
|
|
if (!m_first)
|
|
|
|
type = Pi(m_params, type, m_p);
|
2014-07-06 23:46:34 +00:00
|
|
|
return type;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Return the universe level of the given type, if it is not a sort, then raise an exception. */
|
|
|
|
level get_datatype_result_level(expr d_type) {
|
2014-08-20 05:31:26 +00:00
|
|
|
d_type = m_tc->whnf(d_type).first;
|
2014-07-06 23:46:34 +00:00
|
|
|
while (is_pi(d_type)) {
|
2014-08-20 05:31:26 +00:00
|
|
|
d_type = m_tc->whnf(binding_body(d_type)).first;
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
|
|
|
if (!is_sort(d_type))
|
|
|
|
throw_error(sstream() << "invalid inductive datatype, resultant type is not a sort");
|
|
|
|
return sort_level(d_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Create a local constant based on the given binding */
|
|
|
|
expr mk_local_for(expr const & b) {
|
2014-11-04 15:44:47 +00:00
|
|
|
return mk_local(m_p.mk_fresh_name(), binding_name(b), binding_domain(b), binding_info(b), b.get_tag());
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
/** \brief Set explicit datatype parameters as local constants in m_params */
|
2014-10-14 03:48:23 +00:00
|
|
|
void set_params(expr d_type) {
|
|
|
|
lean_assert(m_params.empty());
|
2014-07-06 23:46:34 +00:00
|
|
|
for (unsigned i = 0; i < m_num_params; i++) {
|
2014-11-04 15:44:47 +00:00
|
|
|
expr l = mk_local(binding_name(d_type), binding_name(d_type), binding_domain(d_type), binding_info(d_type),
|
|
|
|
d_type.get_tag());
|
2014-10-14 01:03:45 +00:00
|
|
|
m_params.push_back(l);
|
2014-07-06 23:46:34 +00:00
|
|
|
d_type = instantiate(binding_body(d_type), l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
/** \brief Add the parameters (in m_params) to parser local scope */
|
|
|
|
void add_params_to_local_scope() {
|
|
|
|
for (expr const & l : m_params)
|
|
|
|
m_p.add_local(l);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Parse introduction rules in the scope of m_params.
|
2014-09-29 18:10:24 +00:00
|
|
|
|
2014-07-06 23:46:34 +00:00
|
|
|
Introduction rules with the annotation '{}' are marked for relaxed (aka non-strict) implicit parameter inference.
|
2014-09-29 18:10:24 +00:00
|
|
|
Introduction rules with the annotation '()' are marked for no implicit parameter inference.
|
2014-07-06 23:46:34 +00:00
|
|
|
*/
|
2014-10-14 01:03:45 +00:00
|
|
|
list<intro_rule> parse_intro_rules(name const & ind_name) {
|
2014-06-18 20:55:48 +00:00
|
|
|
buffer<intro_rule> intros;
|
2014-08-22 22:46:10 +00:00
|
|
|
while (true) {
|
2014-09-04 23:36:06 +00:00
|
|
|
name intro_name = parse_intro_decl_name(ind_name);
|
2014-11-03 22:14:40 +00:00
|
|
|
implicit_infer_kind k = parse_implicit_infer_modifier(m_p);
|
|
|
|
m_implicit_infer_map.insert(intro_name, k);
|
2014-10-31 20:15:21 +00:00
|
|
|
if (!m_params.empty() || m_p.curr_is_token(get_colon_tk())) {
|
|
|
|
m_p.check_token_next(get_colon_tk(), "invalid introduction rule, ':' expected");
|
|
|
|
expr intro_type = m_p.parse_expr();
|
|
|
|
intros.push_back(intro_rule(intro_name, intro_type));
|
|
|
|
} else {
|
|
|
|
expr intro_type = mk_constant(ind_name);
|
|
|
|
intros.push_back(intro_rule(intro_name, intro_type));
|
|
|
|
}
|
2014-09-23 17:00:36 +00:00
|
|
|
if (!m_p.curr_is_token(get_comma_tk()))
|
2014-08-22 22:46:10 +00:00
|
|
|
break;
|
|
|
|
m_p.next();
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
|
|
|
return to_list(intros.begin(), intros.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
void parse_inductive_decls(buffer<inductive_decl> & decls) {
|
|
|
|
while (true) {
|
|
|
|
parser::local_scope l_scope(m_p);
|
2014-10-26 00:55:44 +00:00
|
|
|
auto pos = m_p.pos();
|
2014-09-16 16:48:51 +00:00
|
|
|
pair<name, name> d_names = parse_inductive_decl_name();
|
|
|
|
name d_short_name = d_names.first;
|
|
|
|
name d_name = d_names.second;
|
2014-10-26 00:55:44 +00:00
|
|
|
m_decl_pos_map.insert(d_name, pos);
|
2014-07-06 23:46:34 +00:00
|
|
|
parse_inductive_univ_params();
|
2014-10-14 03:48:23 +00:00
|
|
|
if (!m_first) {
|
|
|
|
add_params_to_local_scope();
|
|
|
|
for (name const & lvl_name : m_explicit_levels)
|
|
|
|
m_p.add_local_level(lvl_name, mk_param_univ(lvl_name));
|
|
|
|
}
|
2014-09-07 23:59:53 +00:00
|
|
|
modifiers mods;
|
|
|
|
mods.parse(m_p);
|
|
|
|
m_modifiers.insert(d_name, mods);
|
2014-07-06 23:46:34 +00:00
|
|
|
expr d_type = parse_datatype_type();
|
2014-07-25 18:24:01 +00:00
|
|
|
bool empty_type = true;
|
2014-09-23 17:00:36 +00:00
|
|
|
if (m_p.curr_is_token(get_assign_tk())) {
|
2014-07-25 18:24:01 +00:00
|
|
|
empty_type = false;
|
|
|
|
m_p.next();
|
|
|
|
}
|
2014-10-01 17:23:05 +00:00
|
|
|
if (m_first) {
|
|
|
|
m_levels.append(m_explicit_levels);
|
2014-10-14 03:48:23 +00:00
|
|
|
set_params(d_type);
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
2014-07-25 18:24:01 +00:00
|
|
|
if (empty_type) {
|
|
|
|
decls.push_back(inductive_decl(d_name, d_type, list<intro_rule>()));
|
|
|
|
} else {
|
2014-10-14 03:48:23 +00:00
|
|
|
if (m_first)
|
|
|
|
add_params_to_local_scope();
|
2014-10-01 17:23:05 +00:00
|
|
|
expr d_const = mk_constant(d_name, param_names_to_levels(to_list(m_explicit_levels.begin(),
|
|
|
|
m_explicit_levels.end())));
|
2014-09-16 16:48:51 +00:00
|
|
|
m_p.add_local_expr(d_short_name, d_const);
|
2014-10-14 01:03:45 +00:00
|
|
|
auto d_intro_rules = parse_intro_rules(d_name);
|
2014-07-25 18:24:01 +00:00
|
|
|
decls.push_back(inductive_decl(d_name, d_type, d_intro_rules));
|
|
|
|
}
|
2014-09-23 17:00:36 +00:00
|
|
|
if (!m_p.curr_is_token(get_with_tk())) {
|
2014-07-06 23:46:34 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
m_p.next();
|
|
|
|
m_first = false;
|
|
|
|
}
|
|
|
|
}
|
2014-10-11 22:33:31 +00:00
|
|
|
/** \brief Include in m_levels any local level referenced by decls. */
|
2014-10-14 01:03:45 +00:00
|
|
|
void include_local_levels(buffer<inductive_decl> const & decls, buffer<expr> const & locals) {
|
2014-10-10 03:48:20 +00:00
|
|
|
if (!m_p.has_locals())
|
2014-07-06 23:46:34 +00:00
|
|
|
return;
|
|
|
|
name_set all_lvl_params;
|
2014-10-14 01:03:45 +00:00
|
|
|
for (auto const & local : locals) {
|
|
|
|
all_lvl_params = collect_univ_params(mlocal_type(local), all_lvl_params);
|
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
for (auto const & d : decls) {
|
|
|
|
all_lvl_params = collect_univ_params(inductive_decl_type(d), all_lvl_params);
|
|
|
|
for (auto const & ir : inductive_decl_intros(d)) {
|
|
|
|
all_lvl_params = collect_univ_params(intro_rule_type(ir), all_lvl_params);
|
|
|
|
}
|
|
|
|
}
|
2014-10-11 22:33:31 +00:00
|
|
|
buffer<name> local_lvls;
|
2014-07-06 23:46:34 +00:00
|
|
|
all_lvl_params.for_each([&](name const & l) {
|
|
|
|
if (std::find(m_levels.begin(), m_levels.end(), l) == m_levels.end())
|
2014-10-11 22:33:31 +00:00
|
|
|
local_lvls.push_back(l);
|
2014-07-06 23:46:34 +00:00
|
|
|
});
|
2014-10-11 22:33:31 +00:00
|
|
|
std::sort(local_lvls.begin(), local_lvls.end(), [&](name const & n1, name const & n2) {
|
2014-07-06 23:46:34 +00:00
|
|
|
return m_p.get_local_level_index(n1) < m_p.get_local_level_index(n2);
|
|
|
|
});
|
|
|
|
buffer<name> new_levels;
|
2014-10-11 22:33:31 +00:00
|
|
|
new_levels.append(local_lvls);
|
2014-07-06 23:46:34 +00:00
|
|
|
new_levels.append(m_levels);
|
|
|
|
m_levels.clear();
|
|
|
|
m_levels.append(new_levels);
|
|
|
|
}
|
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
/** \brief Collect local constants used in the inductive decls. */
|
|
|
|
void collect_locals_core(buffer<inductive_decl> const & decls, expr_struct_set & ls) {
|
2014-10-03 14:23:24 +00:00
|
|
|
buffer<expr> include_vars;
|
|
|
|
m_p.get_include_variables(include_vars);
|
|
|
|
for (expr const & param : include_vars) {
|
2014-10-11 22:33:31 +00:00
|
|
|
::lean::collect_locals(mlocal_type(param), ls);
|
2014-10-03 14:23:24 +00:00
|
|
|
ls.insert(param);
|
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
for (auto const & d : decls) {
|
2014-10-11 22:33:31 +00:00
|
|
|
::lean::collect_locals(inductive_decl_type(d), ls);
|
2014-10-14 01:03:45 +00:00
|
|
|
for (auto const & ir : inductive_decl_intros(d)) {
|
|
|
|
expr ir_type = intro_rule_type(ir);
|
2014-11-04 15:44:47 +00:00
|
|
|
bool use_cache = false;
|
|
|
|
ir_type = Pi(m_params, ir_type, use_cache);
|
2014-10-14 01:03:45 +00:00
|
|
|
::lean::collect_locals(ir_type, ls);
|
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
/** \brief Collect local constants used in the declaration as extra parameters, and
|
|
|
|
update inductive datatype types with them. */
|
|
|
|
void collect_locals(buffer<inductive_decl> & decls, buffer<expr> & locals) {
|
2014-10-10 03:48:20 +00:00
|
|
|
if (!m_p.has_locals())
|
2014-07-06 23:46:34 +00:00
|
|
|
return;
|
2014-10-11 22:33:31 +00:00
|
|
|
expr_struct_set local_set;
|
2014-10-14 01:03:45 +00:00
|
|
|
collect_locals_core(decls, local_set);
|
2014-10-11 22:33:31 +00:00
|
|
|
if (local_set.empty())
|
2014-07-06 23:46:34 +00:00
|
|
|
return;
|
2014-10-11 22:33:31 +00:00
|
|
|
sort_locals(local_set, m_p, locals);
|
2014-10-14 01:03:45 +00:00
|
|
|
m_num_params += locals.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Update the result sort of the given type */
|
|
|
|
expr update_result_sort(expr t, level const & l) {
|
|
|
|
t = m_tc->whnf(t).first;
|
|
|
|
if (is_pi(t)) {
|
|
|
|
return update_binding(t, binding_domain(t), update_result_sort(binding_body(t), l));
|
|
|
|
} else if (is_sort(t)) {
|
|
|
|
return update_sort(t, l);
|
|
|
|
} else {
|
|
|
|
lean_unreachable();
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
2014-10-14 01:03:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** \brief Convert inductive datatype declarations into local constants, and store them into \c r and \c map.
|
|
|
|
\c map is a mapping from inductive datatype name into local constant. */
|
|
|
|
void inductive_types_to_locals(buffer<inductive_decl> const & decls, buffer<expr> & r, name_map<expr> & map) {
|
|
|
|
for (inductive_decl const & decl : decls) {
|
|
|
|
name const & n = inductive_decl_name(decl);
|
|
|
|
expr type = inductive_decl_type(decl);
|
|
|
|
for (unsigned i = 0; i < m_params.size(); i++) {
|
|
|
|
lean_assert(is_pi(type));
|
|
|
|
type = binding_body(type);
|
|
|
|
}
|
|
|
|
type = instantiate_rev(type, m_params.size(), m_params.data());
|
|
|
|
level l = get_datatype_result_level(type);
|
|
|
|
if (is_placeholder(l)) {
|
|
|
|
if (m_using_explicit_levels)
|
|
|
|
throw_error("resultant universe must be provided, when using explicit universe levels");
|
|
|
|
type = update_result_sort(type, m_u);
|
|
|
|
m_infer_result_universe = true;
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
2014-11-04 15:44:47 +00:00
|
|
|
expr local = mk_local(m_p.mk_fresh_name(), n, type, binder_info(), type.get_tag());
|
2014-10-14 01:03:45 +00:00
|
|
|
r.push_back(local);
|
|
|
|
map.insert(n, local);
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
/** \brief Replace every occurrences of the inductive datatypes (in decls) in \c type with a local constant */
|
|
|
|
expr fix_intro_rule_type(expr const & type, name_map<expr> const & ind_to_local) {
|
|
|
|
unsigned nparams = 0; // number of explicit parameters
|
|
|
|
for (expr const & param : m_params) {
|
|
|
|
if (is_explicit(local_info(param)))
|
|
|
|
nparams++;
|
|
|
|
}
|
|
|
|
return replace(type, [&](expr const & e) {
|
|
|
|
expr const & fn = get_app_fn(e);
|
|
|
|
if (!is_constant(fn))
|
|
|
|
return none_expr();
|
|
|
|
if (auto it = ind_to_local.find(const_name(fn))) {
|
|
|
|
buffer<expr> args;
|
|
|
|
get_app_args(e, args);
|
|
|
|
if (args.size() < nparams)
|
|
|
|
throw parser_error(sstream() << "invalide datatype declaration, "
|
|
|
|
<< "incorrect number of arguments to datatype '"
|
|
|
|
<< const_name(fn) << "'", m_p.pos_of(e));
|
|
|
|
pos_info pos = m_p.pos_of(e);
|
|
|
|
expr r = m_p.save_pos(copy(*it), pos);
|
|
|
|
for (unsigned i = nparams; i < args.size(); i++)
|
|
|
|
r = m_p.mk_app(r, args[i], pos);
|
|
|
|
return some_expr(r);
|
|
|
|
} else {
|
|
|
|
return none_expr();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void intro_rules_to_locals(buffer<inductive_decl> const & decls, name_map<expr> const & ind_to_local, buffer<expr> & r) {
|
|
|
|
for (inductive_decl const & decl : decls) {
|
|
|
|
for (intro_rule const & rule : inductive_decl_intros(decl)) {
|
|
|
|
expr type = fix_intro_rule_type(intro_rule_type(rule), ind_to_local);
|
|
|
|
expr local = mk_local(m_p.mk_fresh_name(), intro_rule_name(rule), type, binder_info());
|
|
|
|
r.push_back(local);
|
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
/** \brief Traverse the introduction rule type and collect the universes where arguments reside in \c r_lvls.
|
2014-07-06 23:46:34 +00:00
|
|
|
This information is used to compute the resultant universe level for the inductive datatype declaration.
|
2014-10-14 01:03:45 +00:00
|
|
|
*/
|
2014-07-06 23:46:34 +00:00
|
|
|
void accumulate_levels(expr intro_type, buffer<level> & r_lvls) {
|
|
|
|
while (is_pi(intro_type)) {
|
2014-10-14 01:03:45 +00:00
|
|
|
expr s = m_tc->ensure_type(binding_domain(intro_type)).first;
|
|
|
|
level l = sort_level(s);
|
|
|
|
if (l == m_u) {
|
|
|
|
// ignore, this is the auxiliary level
|
|
|
|
} else if (occurs(m_u, l)) {
|
|
|
|
throw exception("failed to infer inductive datatype resultant universe, "
|
|
|
|
"provide the universe levels explicitly");
|
|
|
|
} else if (std::find(r_lvls.begin(), r_lvls.end(), l) == r_lvls.end()) {
|
|
|
|
r_lvls.push_back(l);
|
2014-06-28 20:57:36 +00:00
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
intro_type = instantiate(binding_body(intro_type), mk_local_for(intro_type));
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
/** \brief Given a sequence of introduction rules (encoded as local constants), compute the resultant
|
|
|
|
universe for the inductive datatype declaration.
|
|
|
|
*/
|
|
|
|
level infer_resultant_universe(unsigned num_intro_rules, expr const * intro_rules) {
|
|
|
|
lean_assert(m_infer_result_universe);
|
|
|
|
buffer<level> r_lvls;
|
|
|
|
for (unsigned i = 0; i < num_intro_rules; i++) {
|
|
|
|
accumulate_levels(mlocal_type(intro_rules[i]), r_lvls);
|
|
|
|
}
|
|
|
|
return mk_result_level(m_env, r_lvls);
|
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
/** \brief Create a mapping from inductive datatype temporary name (used in local constants) to an
|
|
|
|
application <tt>C.{ls} locals params</tt>, where \c C is the real name of the inductive datatype,
|
|
|
|
and \c ls are the universe level parameters in \c m_levels.
|
2014-07-06 23:46:34 +00:00
|
|
|
*/
|
2014-10-14 01:03:45 +00:00
|
|
|
name_map<expr> locals_to_inductive_types(buffer<expr> const & locals, unsigned nparams, expr const * params,
|
|
|
|
unsigned num_decls, expr const * decls) {
|
|
|
|
buffer<level> buffer_ls;
|
|
|
|
for (name const & l : m_levels) {
|
|
|
|
buffer_ls.push_back(mk_param_univ(l));
|
|
|
|
}
|
|
|
|
levels ls = to_list(buffer_ls.begin(), buffer_ls.end());
|
|
|
|
name_map<expr> r;
|
|
|
|
for (unsigned i = 0; i < num_decls; i++) {
|
|
|
|
expr c = mk_constant(local_pp_name(decls[i]), ls);
|
|
|
|
c = mk_app(c, locals);
|
|
|
|
c = mk_app(c, nparams, params);
|
|
|
|
r.insert(mlocal_name(decls[i]), c);
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|
2014-10-14 01:03:45 +00:00
|
|
|
return r;
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
/** \brief Create the "final" introduction rule type. It will apply the mapping \c local_to_ind built using
|
|
|
|
locals_to_inductive_types, and abstract locals and parameters.
|
2014-07-06 23:46:34 +00:00
|
|
|
*/
|
2014-10-14 01:03:45 +00:00
|
|
|
expr mk_intro_rule_type(name const & ir_name,
|
|
|
|
buffer<expr> const & locals, unsigned nparams, expr const * params,
|
|
|
|
name_map<expr> const & local_to_ind, expr type) {
|
|
|
|
type = replace(type, [&](expr const & e) {
|
|
|
|
if (!is_local(e)) {
|
|
|
|
return none_expr();
|
|
|
|
} else if (auto it = local_to_ind.find(mlocal_name(e))) {
|
|
|
|
return some_expr(*it);
|
|
|
|
} else {
|
|
|
|
return none_expr();
|
|
|
|
}
|
|
|
|
});
|
2014-11-04 15:44:47 +00:00
|
|
|
bool use_cache = false;
|
|
|
|
type = Pi(nparams, params, type, use_cache);
|
|
|
|
type = Pi(locals, type, use_cache);
|
2014-10-14 01:03:45 +00:00
|
|
|
implicit_infer_kind k = get_implicit_infer_kind(ir_name);
|
2014-11-03 22:14:40 +00:00
|
|
|
return infer_implicit_params(type, locals.size() + nparams, k);
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
/** \brief Elaborate inductive datatypes and their introduction rules. */
|
|
|
|
void elaborate_decls(buffer<inductive_decl> & decls, buffer<expr> const & locals) {
|
|
|
|
// We create an elaboration problem of the form
|
|
|
|
// Pi (params) (inductive_types) (intro_rules), Type
|
|
|
|
buffer<expr> to_elab;
|
|
|
|
to_elab.append(m_params);
|
|
|
|
name_map<expr> ind_to_local;
|
|
|
|
inductive_types_to_locals(decls, to_elab, ind_to_local);
|
|
|
|
intro_rules_to_locals(decls, ind_to_local, to_elab);
|
|
|
|
expr aux_type = Pi(to_elab, mk_Type(), m_p);
|
|
|
|
list<expr> locals_ctx;
|
|
|
|
for (expr const & local : locals)
|
|
|
|
locals_ctx = cons(local, locals_ctx);
|
|
|
|
level_param_names new_ls;
|
|
|
|
std::tie(aux_type, new_ls) = m_p.elaborate_type(aux_type, locals_ctx);
|
|
|
|
// save new levels
|
|
|
|
for (auto l : new_ls)
|
|
|
|
m_levels.push_back(l);
|
|
|
|
// update to_elab
|
|
|
|
for (expr & l : to_elab) {
|
|
|
|
l = update_mlocal(l, binding_domain(aux_type));
|
|
|
|
aux_type = instantiate(binding_body(aux_type), l);
|
|
|
|
}
|
|
|
|
unsigned nparams = m_params.size();
|
|
|
|
unsigned num_decls = decls.size();
|
|
|
|
unsigned first_intro_idx = nparams + num_decls;
|
|
|
|
lean_assert(first_intro_idx <= to_elab.size());
|
|
|
|
// compute resultant level
|
|
|
|
level resultant_level;
|
|
|
|
if (m_infer_result_universe) {
|
|
|
|
unsigned num_intros = to_elab.size() - first_intro_idx;
|
|
|
|
resultant_level = infer_resultant_universe(num_intros, to_elab.data() + first_intro_idx);
|
|
|
|
}
|
|
|
|
// update decls
|
|
|
|
unsigned i = nparams;
|
|
|
|
for (inductive_decl & decl : decls) {
|
|
|
|
expr type = mlocal_type(to_elab[i]);
|
|
|
|
if (m_infer_result_universe)
|
|
|
|
type = update_result_sort(type, resultant_level);
|
2014-11-04 15:44:47 +00:00
|
|
|
bool use_cache = false;
|
|
|
|
type = Pi(nparams, to_elab.data(), type, use_cache);
|
|
|
|
type = Pi(locals, type, use_cache);
|
2014-10-14 01:03:45 +00:00
|
|
|
decl = update_inductive_decl(decl, type);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
// Create mapping for converting occurrences of inductive types (as local constants)
|
|
|
|
// into the real ones.
|
|
|
|
name_map<expr> local_to_ind = locals_to_inductive_types(locals,
|
|
|
|
nparams, to_elab.data(),
|
|
|
|
num_decls, to_elab.data() + nparams);
|
|
|
|
i = nparams + num_decls;
|
|
|
|
for (inductive_decl & decl : decls) {
|
|
|
|
buffer<intro_rule> new_irs;
|
|
|
|
for (intro_rule const & ir : inductive_decl_intros(decl)) {
|
|
|
|
expr type = mlocal_type(to_elab[i]);
|
|
|
|
type = mk_intro_rule_type(intro_rule_name(ir), locals, nparams, to_elab.data(), local_to_ind, type);
|
|
|
|
new_irs.push_back(update_intro_rule(ir, type));
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
decl = update_inductive_decl(decl, new_irs);
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
|
2014-11-03 23:43:58 +00:00
|
|
|
/** \brief Return true if eliminator/recursor can eliminate into any universe */
|
|
|
|
bool has_general_eliminator(environment const & env, name const & d_name) {
|
|
|
|
declaration d = env.get(d_name);
|
|
|
|
declaration r = env.get(mk_rec_name(d_name));
|
|
|
|
return length(d.get_univ_params()) != length(r.get_univ_params());
|
|
|
|
}
|
|
|
|
|
2014-07-06 23:46:34 +00:00
|
|
|
/** \brief Add aliases for the inductive datatype, introduction and elimination rules */
|
2014-10-11 22:33:31 +00:00
|
|
|
environment add_aliases(environment env, level_param_names const & ls, buffer<expr> const & locals,
|
2014-07-06 23:46:34 +00:00
|
|
|
buffer<inductive_decl> const & decls) {
|
2014-10-11 22:33:31 +00:00
|
|
|
buffer<expr> params_only(locals);
|
|
|
|
remove_local_vars(m_p, params_only);
|
2014-07-06 23:46:34 +00:00
|
|
|
// Create aliases/local refs
|
2014-11-03 23:43:58 +00:00
|
|
|
levels ctx_levels = collect_local_nonvar_levels(m_p, ls);
|
2014-07-06 23:46:34 +00:00
|
|
|
for (auto & d : decls) {
|
|
|
|
name d_name = inductive_decl_name(d);
|
|
|
|
name d_short_name(d_name.get_string());
|
2014-11-03 22:14:40 +00:00
|
|
|
env = add_alias(m_p, env, false, d_name, ctx_levels, params_only);
|
2014-09-04 22:03:59 +00:00
|
|
|
name rec_name = mk_rec_name(d_name);
|
2014-11-03 23:43:58 +00:00
|
|
|
levels rec_ctx_levels = ctx_levels;
|
|
|
|
if (ctx_levels && has_general_eliminator(env, d_name))
|
|
|
|
rec_ctx_levels = levels(mk_level_placeholder(), rec_ctx_levels);
|
|
|
|
env = add_alias(m_p, env, true, rec_name, rec_ctx_levels, params_only);
|
2014-09-04 22:03:59 +00:00
|
|
|
env = add_protected(env, rec_name);
|
2014-07-06 23:46:34 +00:00
|
|
|
for (intro_rule const & ir : inductive_decl_intros(d)) {
|
|
|
|
name ir_name = intro_rule_name(ir);
|
2014-11-03 22:14:40 +00:00
|
|
|
env = add_alias(m_p, env, true, ir_name, ctx_levels, params_only);
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
2014-10-14 01:03:45 +00:00
|
|
|
void update_declaration_index(environment const & env) {
|
|
|
|
name n, k; pos_info p;
|
|
|
|
for (auto const & info : m_decl_info) {
|
|
|
|
std::tie(n, k, p) = info;
|
|
|
|
expr type = env.get(n).get_type();
|
|
|
|
m_p.add_decl_index(n, p, k, type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
environment apply_modifiers(environment env) {
|
|
|
|
m_modifiers.for_each([&](name const & n, modifiers const & m) {
|
2014-11-03 22:14:40 +00:00
|
|
|
if (m.is_class())
|
2014-10-14 01:03:45 +00:00
|
|
|
env = add_class(env, n);
|
|
|
|
});
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
2014-10-26 00:55:44 +00:00
|
|
|
void save_def_info(name const & n, pos_info pos) {
|
|
|
|
m_decl_info.emplace_back(n, *g_definition, pos);
|
|
|
|
}
|
|
|
|
|
2014-10-25 18:32:26 +00:00
|
|
|
environment mk_aux_decls(environment env, buffer<inductive_decl> const & decls) {
|
2014-10-26 00:22:02 +00:00
|
|
|
bool has_unit = has_unit_decls(env);
|
2014-10-25 18:32:26 +00:00
|
|
|
for (inductive_decl const & d : decls) {
|
2014-10-26 00:55:44 +00:00
|
|
|
name const & n = inductive_decl_name(d);
|
|
|
|
pos_info pos = *m_decl_pos_map.find(n);
|
2014-10-25 18:32:26 +00:00
|
|
|
env = mk_rec_on(env, inductive_decl_name(d));
|
2014-10-25 20:36:38 +00:00
|
|
|
env = mk_induction_on(env, inductive_decl_name(d));
|
2014-10-26 00:55:44 +00:00
|
|
|
save_def_info(name(n, "rec_on"), pos);
|
|
|
|
save_def_info(name(n, "induction_on"), pos);
|
|
|
|
if (has_unit) {
|
2014-10-26 00:22:02 +00:00
|
|
|
env = mk_cases_on(env, inductive_decl_name(d));
|
2014-10-26 00:55:44 +00:00
|
|
|
save_def_info(name(n, "cases_on"), pos);
|
|
|
|
}
|
2014-10-25 18:32:26 +00:00
|
|
|
}
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
2014-11-02 02:15:46 +00:00
|
|
|
/** \brief Add a namespace for each inductive datatype */
|
|
|
|
environment add_namespaces(environment env, buffer<inductive_decl> const & decls) {
|
|
|
|
for (inductive_decl const & d : decls) {
|
|
|
|
env = add_namespace(env, inductive_decl_name(d));
|
|
|
|
}
|
|
|
|
return env;
|
|
|
|
}
|
|
|
|
|
2014-07-06 23:46:34 +00:00
|
|
|
/** \brief Auxiliary method used for debugging */
|
|
|
|
void display(std::ostream & out, buffer<inductive_decl> const & decls) {
|
|
|
|
if (!m_levels.empty()) {
|
|
|
|
out << "inductive level params:";
|
|
|
|
for (auto l : m_levels) out << " " << l;
|
|
|
|
out << "\n";
|
|
|
|
}
|
|
|
|
for (auto const & d : decls) {
|
|
|
|
name d_name; expr d_type; list<intro_rule> d_irules;
|
|
|
|
std::tie(d_name, d_type, d_irules) = d;
|
|
|
|
out << "inductive " << d_name << " : " << d_type << "\n";
|
|
|
|
for (auto const & ir : d_irules) {
|
|
|
|
name ir_name; expr ir_type;
|
|
|
|
std::tie(ir_name, ir_type) = ir;
|
|
|
|
out << " | " << ir_name << " : " << ir_type << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
environment operator()() {
|
2014-10-26 16:47:11 +00:00
|
|
|
parser::undef_id_to_const_scope err_scope(m_p);
|
2014-07-06 23:46:34 +00:00
|
|
|
buffer<inductive_decl> decls;
|
2014-09-16 16:48:51 +00:00
|
|
|
{
|
|
|
|
parser::local_scope scope(m_p);
|
|
|
|
parse_inductive_decls(decls);
|
|
|
|
}
|
2014-10-11 22:33:31 +00:00
|
|
|
buffer<expr> locals;
|
2014-10-14 01:03:45 +00:00
|
|
|
collect_locals(decls, locals);
|
|
|
|
include_local_levels(decls, locals);
|
|
|
|
elaborate_decls(decls, locals);
|
2014-07-06 23:46:34 +00:00
|
|
|
level_param_names ls = to_list(m_levels.begin(), m_levels.end());
|
|
|
|
environment env = module::add_inductive(m_p.env(), ls, m_num_params, to_list(decls.begin(), decls.end()));
|
2014-10-26 00:55:44 +00:00
|
|
|
env = mk_aux_decls(env, decls);
|
2014-08-23 19:39:59 +00:00
|
|
|
update_declaration_index(env);
|
2014-10-11 22:33:31 +00:00
|
|
|
env = add_aliases(env, ls, locals, decls);
|
2014-11-02 02:15:46 +00:00
|
|
|
env = add_namespaces(env, decls);
|
2014-10-26 00:55:44 +00:00
|
|
|
return apply_modifiers(env);
|
2014-07-06 23:46:34 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
environment inductive_cmd(parser & p) {
|
|
|
|
return inductive_cmd_fn(p)();
|
2014-06-18 20:55:48 +00:00
|
|
|
}
|
2014-07-06 23:46:34 +00:00
|
|
|
|
2014-06-18 20:55:48 +00:00
|
|
|
void register_inductive_cmd(cmd_table & r) {
|
|
|
|
add_cmd(r, cmd_info("inductive", "declare an inductive datatype", inductive_cmd));
|
|
|
|
}
|
|
|
|
}
|