18 lines
358 B
C++
18 lines
358 B
C++
|
/*
|
||
|
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"
|
||
|
|
||
|
namespace lean {
|
||
|
void initialize_tactic_module() {
|
||
|
initialize_proof_state();
|
||
|
}
|
||
|
|
||
|
void finalize_tactic_module() {
|
||
|
finalize_proof_state();
|
||
|
}
|
||
|
}
|