2015-12-08 01:07:09 +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
|
|
|
|
*/
|
|
|
|
#include "library/blast/grinder/init_module.h"
|
|
|
|
#include "library/blast/grinder/intro_elim_lemmas.h"
|
2015-12-08 02:38:36 +00:00
|
|
|
#include "library/blast/grinder/grinder_actions.h"
|
2015-12-08 01:07:09 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
namespace blast {
|
|
|
|
void initialize_grinder_module() {
|
|
|
|
initialize_intro_elim_lemmas();
|
2015-12-08 02:38:36 +00:00
|
|
|
initialize_grinder_actions();
|
2015-12-08 01:07:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void finalize_grinder_module() {
|
2015-12-08 02:38:36 +00:00
|
|
|
finalize_grinder_actions();
|
2015-12-08 01:07:09 +00:00
|
|
|
finalize_intro_elim_lemmas();
|
|
|
|
}
|
|
|
|
}}
|