2014-12-03 04:23:53 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
2014-12-10 19:23:23 +00:00
|
|
|
#include "library/util.h"
|
2014-12-04 20:39:59 +00:00
|
|
|
#include "library/definitional/equations.h"
|
2015-07-02 17:38:58 +00:00
|
|
|
#include "library/definitional/projection.h"
|
2014-12-03 04:23:53 +00:00
|
|
|
|
|
|
|
namespace lean{
|
|
|
|
void initialize_definitional_module() {
|
2014-12-04 20:39:59 +00:00
|
|
|
initialize_equations();
|
2015-07-02 17:38:58 +00:00
|
|
|
initialize_def_projection();
|
2014-12-03 04:23:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void finalize_definitional_module() {
|
2015-07-02 17:38:58 +00:00
|
|
|
finalize_def_projection();
|
2014-12-04 20:39:59 +00:00
|
|
|
finalize_equations();
|
2014-12-03 04:23:53 +00:00
|
|
|
}
|
|
|
|
}
|