2015-05-25 22:03:59 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#pragma once
|
2015-06-06 00:29:36 +00:00
|
|
|
#include "library/tactic/proof_state.h"
|
2015-05-25 22:03:59 +00:00
|
|
|
namespace lean {
|
2015-06-06 00:29:36 +00:00
|
|
|
optional<proof_state> subst(environment const & env, name const & h_name, bool symm, proof_state const & s);
|
2015-05-25 22:03:59 +00:00
|
|
|
void initialize_subst_tactic();
|
|
|
|
void finalize_subst_tactic();
|
|
|
|
}
|