2014-10-24 05:40:15 +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 "library/tactic/elaborate.h"
|
|
|
|
|
|
|
|
namespace lean {
|
2015-04-30 18:57:40 +00:00
|
|
|
expr mk_generalize_tactic_expr(expr const & e, name const & id);
|
2015-05-31 04:57:28 +00:00
|
|
|
optional<proof_state> generalize_core(environment const & env, io_state const & ios, elaborate_fn const & elab,
|
|
|
|
expr const & e, name const & x, proof_state const & s, name const & tac_name,
|
|
|
|
bool intro);
|
2014-10-24 05:40:15 +00:00
|
|
|
void initialize_generalize_tactic();
|
|
|
|
void finalize_generalize_tactic();
|
|
|
|
}
|