2014-06-21 20:37:44 +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 <utility>
|
|
|
|
#include <functional>
|
|
|
|
#include "util/lua.h"
|
|
|
|
#include "util/lazy_list.h"
|
|
|
|
#include "util/name_generator.h"
|
2014-06-23 19:38:57 +00:00
|
|
|
#include "util/sexpr/options.h"
|
2014-06-21 20:37:44 +00:00
|
|
|
#include "kernel/constraint.h"
|
|
|
|
#include "kernel/environment.h"
|
|
|
|
#include "kernel/metavar.h"
|
|
|
|
|
|
|
|
namespace lean {
|
2014-06-25 15:30:09 +00:00
|
|
|
unsigned get_unifier_max_steps(options const & opts);
|
2014-08-21 00:30:08 +00:00
|
|
|
bool get_unifier_computation(options const & opts);
|
2014-06-25 15:30:09 +00:00
|
|
|
|
2014-06-30 01:26:07 +00:00
|
|
|
bool is_simple_meta(expr const & e);
|
2014-07-05 17:59:53 +00:00
|
|
|
expr mk_aux_metavar_for(name_generator & ngen, expr const & t);
|
2014-06-30 01:26:07 +00:00
|
|
|
|
2014-06-21 20:37:44 +00:00
|
|
|
enum class unify_status { Solved, Failed, Unsupported };
|
|
|
|
/**
|
|
|
|
\brief Handle the easy-cases: first-order unification, higher-order patterns, identical terms, and terms without metavariables.
|
|
|
|
|
|
|
|
This function assumes that all assigned metavariables have been substituted.
|
|
|
|
*/
|
2014-07-23 15:51:24 +00:00
|
|
|
unify_status unify_simple(substitution & s, expr const & lhs, expr const & rhs, justification const & j);
|
|
|
|
unify_status unify_simple(substitution & s, level const & lhs, level const & rhs, justification const & j);
|
|
|
|
unify_status unify_simple(substitution & s, constraint const & c);
|
2014-06-21 20:37:44 +00:00
|
|
|
|
2014-08-21 00:30:08 +00:00
|
|
|
struct unifier_config {
|
|
|
|
bool m_use_exceptions;
|
|
|
|
unsigned m_max_steps;
|
|
|
|
bool m_computation;
|
|
|
|
bool m_expensive_classes;
|
|
|
|
unifier_config(bool use_exceptions = false);
|
|
|
|
explicit unifier_config(options const & o, bool use_exceptions = false);
|
|
|
|
};
|
|
|
|
|
2014-06-21 20:37:44 +00:00
|
|
|
lazy_list<substitution> unify(environment const & env, unsigned num_cs, constraint const * cs, name_generator const & ngen,
|
2014-08-21 00:30:08 +00:00
|
|
|
unifier_config const & c = unifier_config());
|
2014-07-27 19:01:06 +00:00
|
|
|
lazy_list<substitution> unify(environment const & env, expr const & lhs, expr const & rhs, name_generator const & ngen, bool relax_main_opaque,
|
2014-08-21 00:30:08 +00:00
|
|
|
substitution const & s = substitution(), unifier_config const & c = unifier_config());
|
2014-06-23 19:38:57 +00:00
|
|
|
|
2014-07-07 19:40:00 +00:00
|
|
|
/**
|
2014-08-16 20:50:59 +00:00
|
|
|
The unifier divides the constraints in 8 groups: Simple, Basic, FlexRigid, PluginDelayed, DelayedChoice, ClassInstance, FlexFlex, MaxDelayed
|
2014-07-07 19:40:00 +00:00
|
|
|
|
|
|
|
1) Simple: constraints that never create case-splits. Example: pattern matching constraints (?M l_1 ... l_n) =?= t.
|
|
|
|
The are not even inserted in the constraint priority queue.
|
|
|
|
|
|
|
|
2) Basic: contains user choice constraints used to model coercions and overloaded constraints, and constraints
|
|
|
|
that cannot be solved, and the unification plugin must be invoked.
|
|
|
|
|
|
|
|
3) FlexRigid constraints (?M t_1 ... t_n) =?= t, where t_n is not an introduction application
|
|
|
|
|
|
|
|
4) PluginDelayed: contraints delayed by the unifier_plugin. Examples: (elim ... (?m ...)) and (?m ... (intro ...)),
|
|
|
|
where elim is an eliminator/recursor and intro is an introduction/constructor.
|
|
|
|
This constraints are delayed because after ?m is assigned we may be able to reduce them.
|
|
|
|
|
2014-08-16 20:50:59 +00:00
|
|
|
5) DelayedChoice: for delayed choice constraints (we use this group for the maximally delayed coercions constraints).
|
2014-07-07 19:40:00 +00:00
|
|
|
|
2014-08-16 20:50:59 +00:00
|
|
|
6) ClassInstance: for delayed choice constraints (we use this group for class-instance).
|
2014-08-04 20:30:28 +00:00
|
|
|
|
|
|
|
7) FlexFlex: (?m1 ...) =?= (?m2 ...) we don't try to solve this constraint, we delay them and hope the other
|
2014-07-07 19:40:00 +00:00
|
|
|
ones instantiate ?m1 or ?m2. If this kind of constraint is the next to be processed in the queue, then
|
|
|
|
we simply discard it.
|
|
|
|
|
2014-08-04 20:30:28 +00:00
|
|
|
8) MaxDelayed: maximally delayed constraint group
|
2014-07-07 19:40:00 +00:00
|
|
|
*/
|
2014-08-16 20:50:59 +00:00
|
|
|
enum class cnstr_group { Basic = 0, FlexRigid, PluginDelayed, DelayedChoice, ClassInstance, FlexFlex, MaxDelayed };
|
2014-07-07 19:40:00 +00:00
|
|
|
inline unsigned to_delay_factor(cnstr_group g) { return static_cast<unsigned>(g); }
|
|
|
|
|
2014-06-23 19:38:57 +00:00
|
|
|
class unifier_exception : public exception {
|
|
|
|
justification m_jst;
|
2014-06-25 16:41:25 +00:00
|
|
|
substitution m_subst;
|
2014-06-23 19:38:57 +00:00
|
|
|
public:
|
2014-06-25 16:41:25 +00:00
|
|
|
unifier_exception(justification const & j, substitution const & s):exception("unifier exception"), m_jst(j), m_subst(s) {}
|
|
|
|
virtual exception * clone() const { return new unifier_exception(m_jst, m_subst); }
|
2014-06-23 19:38:57 +00:00
|
|
|
virtual void rethrow() const { throw *this; }
|
|
|
|
justification const & get_justification() const { return m_jst; }
|
2014-06-25 16:41:25 +00:00
|
|
|
substitution const & get_substitution() const { return m_subst; }
|
2014-06-23 19:38:57 +00:00
|
|
|
};
|
2014-06-21 20:37:44 +00:00
|
|
|
|
|
|
|
void open_unifier(lua_State * L);
|
|
|
|
}
|