lean4-htt/src/library/blast/grinder/init_module.cpp
2015-12-07 18:43:12 -08:00

19 lines
446 B
C++

/*
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"
namespace lean {
namespace blast {
void initialize_grinder_module() {
initialize_intro_elim_lemmas();
}
void finalize_grinder_module() {
finalize_intro_elim_lemmas();
}
}}