/* Copyright (c) 2013-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 #include #include #include #include "util/lazy_list.h" #include "library/io_state.h" #include "library/tactic/proof_state.h" namespace lean { /** \brief Throw an exception is \c v contains local constants, \c e is only used for position information. */ void check_has_no_local(expr const & v, expr const & e, char const * tac_name); class tactic_exception : public exception { expr m_expr; public: tactic_exception(expr const & e, char const * msg); tactic_exception(expr const & e, sstream const & strm); expr const & get_expr() const { return m_expr; } }; typedef lazy_list proof_state_seq; typedef std::function tactic; inline optional none_tactic() { return optional(); } inline optional some_tactic(tactic const & t) { return optional(t); } inline optional some_tactic(tactic && t) { return optional(std::forward(t)); } template inline proof_state_seq mk_proof_state_seq(F && f) { return mk_lazy_list(std::forward(f)); } tactic tactic01(std::function(environment const &, io_state const & ios, proof_state const &)> f); tactic tactic1(std::function f); /** \brief Return a "do nothing" tactic (aka skip). */ tactic id_tactic(); /** \brief Return a tactic the always fails. */ tactic fail_tactic(); /** \brief Return a tactic that fails if there are unsolved goals. */ tactic now_tactic(); /** \brief Return a tactic that solves any goal of the form ..., H : A, ... |- A. */ tactic assumption_tactic(); /** \brief Return a tactic that just returns the input state, and display the given message in the diagnostic channel. */ tactic trace_tactic(char const * msg); class sstream; tactic trace_tactic(sstream const & msg); tactic trace_tactic(std::string const & msg); /** \brief Return a tactic that just displays the input state in the diagnostic channel. */ tactic trace_state_tactic(std::string const & fname, pair const & pos); tactic trace_state_tactic(); /** \brief Create a tactic that applies \c t, but suppressing diagnostic messages. */ tactic suppress_trace(tactic const & t); /** \brief Return a tactic that performs \c t1 followed by \c t2. */ tactic then(tactic const & t1, tactic const & t2); inline tactic operator<<(tactic const & t1, tactic const & t2) { return then(t1, t2); } /** \brief Return a tactic that applies \c t1, and if \c t1 returns the empty sequence of states, then applies \c t2. */ tactic orelse(tactic const & t1, tactic const & t2); inline tactic operator||(tactic const & t1, tactic const & t2) { return orelse(t1, t2); } /** \brief Return a tactic that appies \c t, but using the additional set of options \c opts. */ tactic using_params(tactic const & t, options const & opts); /** \brief Return a tactic that tries the tactic \c t for at most \c ms milliseconds. If the tactic does not terminate in \c ms milliseconds, then the empty sequence is returned. \remark the tactic \c t is executed in a separate execution thread. \remark \c check_ms is how often the main thread checks whether the child thread finished. */ tactic try_for(tactic const & t, unsigned ms, unsigned check_ms = 1); /** \brief Execute both tactics and and combines their results. The results produced by tactic \c t1 are listed before the ones from tactic \c t2. */ tactic append(tactic const & t1, tactic const & t2); inline tactic operator+(tactic const & t1, tactic const & t2) { return append(t1, t2); } /** \brief Execute both tactics and and combines their results. The results produced by tactics \c t1 and \c t2 are interleaved to guarantee fairness. */ tactic interleave(tactic const & t1, tactic const & t2); /** \brief Return a tactic that executes \c t1 and \c t2 in parallel. This is similar to \c append and \c interleave. The order of the elements in the output sequence is not deterministic. It depends on how fast \c t1 and \c t2 produce their output. \remark \c check_ms is how often the main thread checks whether the children threads finished. */ tactic par(tactic const & t1, tactic const & t2, unsigned check_ms); inline tactic par(tactic const & t1, tactic const & t2) { return par(t1, t2, 1); } /** \brief Return a tactic that keeps applying \c t until it fails. */ tactic repeat(tactic const & t); /** \brief Similar to \c repeat, but execute \c t at most \c k times. \remark The value \c k is the depth of the recursion. For example, if tactic \c t always produce a sequence of size 2, then tactic \c t will be applied 2^k times. */ tactic repeat_at_most(tactic const & t, unsigned k); /** \brief Return a tactic that applies \c t, but takes at most \c \c k elements from the sequence produced by \c t. */ tactic take(tactic const & t, unsigned k); /** \brief Return a tactic that applies \c t, but discards the first \c k elements from the sequence produced by \c t. */ tactic discard(tactic const & t, unsigned k); typedef std::function proof_state_pred; // NOLINT /** \brief Return a tactic that applies the predicate \c p to the input state. If \c p returns true, then applies \c t1. Otherwise, applies \c t2. */ tactic cond(proof_state_pred p, tactic const & t1, tactic const & t2); /** \brief Syntax-sugar for cond(p, t, id_tactic()) */ inline tactic when(proof_state_pred p, tactic const & t) { return cond(p, t, id_tactic()); } /** \brief Return a tactic that applies \c t only to the i-th goal. The tactic fails if the input state does have at least i goals. */ tactic focus(tactic const & t, unsigned i); inline tactic focus(tactic const & t) { return focus(t, 1); } /** \brief Solve first goal iff it is definitionally equal to \c e */ tactic exact_tactic(expr const & e); /** \brief Return a tactic that unfolds the definition named \c n. */ tactic unfold_tactic(name const & n); /** \brief Return a tactic that unfolds all (non-opaque) definitions. */ tactic unfold_tactic(); /** \brief Return a tactic that applies beta-reduction. */ tactic beta_tactic(); UDATA_DEFS_CORE(proof_state_seq) UDATA_DEFS_CORE(tactic); void open_tactic(lua_State * L); }