forked from leanprover/lean4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit_module.cpp
More file actions
42 lines (39 loc) · 1010 Bytes
/
init_module.cpp
File metadata and controls
42 lines (39 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#include "kernel/init_module.h"
#include "kernel/environment.h"
#include "kernel/type_checker.h"
#include "kernel/expr.h"
#include "kernel/level.h"
#include "kernel/declaration.h"
#include "kernel/local_ctx.h"
#include "kernel/inductive.h"
#include "kernel/quot.h"
#include "kernel/trace.h"
namespace lean {
void initialize_kernel_module() {
initialize_level();
initialize_expr();
initialize_declaration();
initialize_type_checker();
initialize_environment();
initialize_local_ctx();
initialize_inductive();
initialize_quot();
initialize_trace();
}
void finalize_kernel_module() {
finalize_trace();
finalize_quot();
finalize_inductive();
finalize_local_ctx();
finalize_environment();
finalize_type_checker();
finalize_declaration();
finalize_expr();
finalize_level();
}
}