-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlakefile.lean
More file actions
32 lines (23 loc) · 932 Bytes
/
lakefile.lean
File metadata and controls
32 lines (23 loc) · 932 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
import Lake
open Lake DSL
package «HopfieldNet» where
-- Settings applied to both builds and interactive editing
leanOptions := #[
⟨`pp.unicode.fun, true⟩ -- pretty-prints `fun a ↦ b`
]
-- add any additional package configuration options here
require mathlib from git
"https://github.com/leanprover-community/mathlib4.git"
@[default_target]
lean_lib «HopfieldNet» where
-- add any library configuration options here
lean_lib MCMC where
-- Builds the `MCMC.*` modules living under the top-level `MCMC/` directory.
lean_lib «NeuralNetwork» where
-- Builds the `NeuralNetwork.*` modules living under the top-level `NeuralNetwork/` directory.
lean_lib Optlib where
lean_lib PhysLean where
require checkdecls from git "https://github.com/PatrickMassot/checkdecls.git"
meta if get_config? env = some "dev" then
require «doc-gen4» from git
"https://github.com/leanprover/doc-gen4" @ "main"