2014-09-22 17:27:48 +00:00
|
|
|
/*
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
#include "library/tactic/proof_state.h"
|
2014-09-22 22:26:41 +00:00
|
|
|
#include "library/tactic/expr_to_tactic.h"
|
2014-09-22 17:27:48 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
void initialize_tactic_module() {
|
|
|
|
initialize_proof_state();
|
2014-09-22 22:26:41 +00:00
|
|
|
initialize_expr_to_tactic();
|
2014-09-22 17:27:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void finalize_tactic_module() {
|
2014-09-22 22:26:41 +00:00
|
|
|
finalize_expr_to_tactic();
|
2014-09-22 17:27:48 +00:00
|
|
|
finalize_proof_state();
|
|
|
|
}
|
|
|
|
}
|