2014-09-19 20:30:08 +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
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "kernel/type_checker.h"
|
2015-05-27 22:33:20 +00:00
|
|
|
#include "library/util.h"
|
2014-09-19 20:30:08 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2015-03-05 06:12:49 +00:00
|
|
|
enum class reducible_status { Reducible, Quasireducible, Semireducible, Irreducible };
|
2014-09-19 20:30:08 +00:00
|
|
|
/** \brief Mark the definition named \c n as reducible or not.
|
|
|
|
|
|
|
|
The method throws an exception if \c n is
|
|
|
|
- not a definition
|
|
|
|
- a theorem
|
|
|
|
- an opaque definition that was not defined in main module
|
|
|
|
|
|
|
|
"Reducible" definitions can be freely unfolded by automation (i.e., elaborator, simplifier, etc).
|
|
|
|
We should view it as a hint to automation.
|
|
|
|
*/
|
|
|
|
environment set_reducible(environment const & env, name const & n, reducible_status s, bool persistent = true);
|
|
|
|
|
2015-03-05 06:12:49 +00:00
|
|
|
reducible_status get_reducible_status(environment const & env, name const & n);
|
2014-09-19 20:30:08 +00:00
|
|
|
|
2015-03-05 06:12:49 +00:00
|
|
|
bool is_at_least_quasireducible(environment const & env, name const & n);
|
|
|
|
|
2015-05-29 23:47:29 +00:00
|
|
|
/* \brief Execute the given function for each declaration explicitly marked with a reducibility annotation */
|
|
|
|
void for_each_reducible(environment const & env, std::function<void(name const &, reducible_status)> const & fn);
|
|
|
|
|
2015-05-27 22:33:20 +00:00
|
|
|
/** \brief Create a predicate that returns true for all non reducible constants in \c env */
|
|
|
|
name_predicate mk_not_reducible_pred(environment const & env);
|
|
|
|
/** \brief Create a predicate that returns true for all non reducible and non quasireducible constants in \c env */
|
|
|
|
name_predicate mk_not_quasireducible_pred(environment const & env);
|
|
|
|
/** \brief Create a predicate that returns true for irreducible constants in \c env */
|
|
|
|
name_predicate mk_irreducible_pred(environment const & env);
|
2015-02-08 01:31:53 +00:00
|
|
|
|
2015-03-05 06:12:49 +00:00
|
|
|
enum reducible_behavior { UnfoldReducible, UnfoldQuasireducible, UnfoldSemireducible };
|
2015-01-09 02:47:44 +00:00
|
|
|
|
2014-09-19 20:30:08 +00:00
|
|
|
/** \brief Create a type checker that takes the "reducibility" hints into account. */
|
2015-05-27 22:33:20 +00:00
|
|
|
type_checker_ptr mk_type_checker(environment const & env, name_generator && ngen,
|
|
|
|
reducible_behavior r = UnfoldSemireducible);
|
|
|
|
type_checker_ptr mk_type_checker(environment const & env, reducible_behavior r = UnfoldSemireducible);
|
2014-09-23 00:30:29 +00:00
|
|
|
|
2014-11-24 03:03:39 +00:00
|
|
|
/** \brief Create a type checker that treats all definitions as opaque. */
|
2015-05-27 22:33:20 +00:00
|
|
|
type_checker_ptr mk_opaque_type_checker(environment const & env, name_generator && ngen);
|
2014-11-24 03:03:39 +00:00
|
|
|
|
2014-09-23 00:30:29 +00:00
|
|
|
void initialize_reducible();
|
|
|
|
void finalize_reducible();
|
2015-01-29 18:37:15 +00:00
|
|
|
void open_reducible(lua_State * L);
|
2014-09-19 20:30:08 +00:00
|
|
|
}
|