2014-01-13 01:45:24 +00:00
|
|
|
/*
|
2014-08-03 23:03:58 +00:00
|
|
|
Copyright (c) 2013-2014 Microsoft Corporation. All rights reserved.
|
2014-01-13 01:45:24 +00:00
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#pragma once
|
2014-08-03 23:03:58 +00:00
|
|
|
#include <functional>
|
2014-01-13 01:45:24 +00:00
|
|
|
#include "util/lua.h"
|
2014-08-03 23:03:58 +00:00
|
|
|
#include "util/optional.h"
|
|
|
|
#include "util/buffer.h"
|
|
|
|
#include "util/name_map.h"
|
2014-01-13 01:45:24 +00:00
|
|
|
#include "kernel/expr.h"
|
2014-01-19 18:32:06 +00:00
|
|
|
#include "kernel/environment.h"
|
2014-01-13 01:45:24 +00:00
|
|
|
|
|
|
|
namespace lean {
|
2014-08-03 23:03:58 +00:00
|
|
|
/** \brief Callback for extending the higher-order pattern matching procedure.
|
|
|
|
It is invoked before the matcher fails.
|
|
|
|
|
|
|
|
plugin(p, t, s) must return true iff for updated substitution s', s'(p) is definitionally equal to t.
|
|
|
|
*/
|
|
|
|
typedef std::function<bool(expr const &, expr const &, buffer<optional<expr>> &, name_generator const &)> hop_matcher_plugin; // NOLINT
|
|
|
|
|
2014-01-14 02:06:23 +00:00
|
|
|
/**
|
|
|
|
\brief Matching for higher-order patterns. Return true iff \c t matches the higher-order pattern \c p.
|
2014-08-03 23:03:58 +00:00
|
|
|
The substitution is stored in \c subst. Note that, this procedure treats free-variables as placholders
|
|
|
|
instead of meta-variables.
|
2014-01-14 02:06:23 +00:00
|
|
|
|
|
|
|
\c subst is an assignment for the free variables occurring in \c p.
|
|
|
|
|
2014-08-03 23:03:58 +00:00
|
|
|
\pre \c t must not contain free variables. If it does, they must be replaced with local constants
|
|
|
|
before invoking this functions.
|
2014-01-14 02:06:23 +00:00
|
|
|
|
|
|
|
\c p is a higher-order pattern when in all applications in \c p
|
2014-01-25 18:08:53 +00:00
|
|
|
1- A free variable is not the function OR
|
2014-08-03 23:03:58 +00:00
|
|
|
2- A free variable is the function, but all other arguments are distinct local constants.
|
2014-01-14 02:06:23 +00:00
|
|
|
|
|
|
|
\pre \c subst must be big enough to store all free variables occurring in subst
|
2014-01-19 18:32:06 +00:00
|
|
|
|
2014-08-03 23:03:58 +00:00
|
|
|
If prefix is provided, then it is used for creating unique names.
|
2014-01-29 04:30:47 +00:00
|
|
|
|
2014-01-28 08:50:27 +00:00
|
|
|
If name_subst is different from nullptr, then the procedure stores in name_subst
|
|
|
|
a mapping for binder names. It maps the binder names used in the pattern \c p into
|
|
|
|
the binder names used in \c t.
|
2014-08-03 23:03:58 +00:00
|
|
|
|
|
|
|
If the plugin is provided, then it is invoked before a failure.
|
2014-01-14 02:06:23 +00:00
|
|
|
*/
|
2014-08-03 23:03:58 +00:00
|
|
|
bool hop_match(expr const & p, expr const & t, buffer<optional<expr>> & subst, name const * prefix = nullptr,
|
|
|
|
name_map<name> * name_subst = nullptr, hop_matcher_plugin const * plugin = nullptr);
|
2014-01-13 01:45:24 +00:00
|
|
|
void open_hop_match(lua_State * L);
|
|
|
|
}
|