forked from kim-em/lean-training-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlakefile.lean
More file actions
35 lines (25 loc) · 734 Bytes
/
Copy pathlakefile.lean
File metadata and controls
35 lines (25 loc) · 734 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
import Lake
open Lake DSL
package «lean-training-data» {
-- add any package configuration options here
}
require mathlib from git
"https://github.com/AG161/mathlib4.git" @ "master"
@[default_target]
lean_lib TrainingData where
lean_lib Examples where
lean_exe tactic_benchmark where
root := `scripts.tactic_benchmark
supportInterpreter := true
lean_exe export_infotree where
root := `scripts.export_infotree
supportInterpreter := true
lean_exe training_data where
root := `scripts.training_data
supportInterpreter := true
lean_exe premises where
root := `scripts.premises
lean_exe declaration_types where
root := `scripts.declaration_types
lean_exe goal_comments where
root := `scripts.goal_comments