2015-09-25 19:45:16 +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
|
|
|
|
*/
|
2015-09-25 21:43:42 +00:00
|
|
|
#include "library/blast/blast.h"
|
2015-09-25 19:45:16 +00:00
|
|
|
#include "library/blast/blast_tactic.h"
|
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
void initialize_blast_module() {
|
2015-09-25 21:43:42 +00:00
|
|
|
initialize_blast();
|
2015-09-25 19:45:16 +00:00
|
|
|
initialize_blast_tactic();
|
|
|
|
}
|
|
|
|
void finalize_blast_module() {
|
2015-09-25 21:43:42 +00:00
|
|
|
finalize_blast();
|
2015-09-25 19:45:16 +00:00
|
|
|
finalize_blast_tactic();
|
|
|
|
}
|
|
|
|
}
|