initial commit
This commit is contained in:
commit
12b397590b
7 changed files with 38 additions and 0 deletions
14
.github/workflows/lean_action_ci.yml
vendored
Normal file
14
.github/workflows/lean_action_ci.yml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
name: Lean Action CI
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: leanprover/lean-action@v1
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/.lake
|
3
KineticTheoryOfGasesLean.lean
Normal file
3
KineticTheoryOfGasesLean.lean
Normal file
|
@ -0,0 +1,3 @@
|
|||
-- This module serves as the root of the `KineticTheoryOfGasesLean` library.
|
||||
-- Import modules here that should be built as part of the library.
|
||||
import KineticTheoryOfGasesLean.Basic
|
1
KineticTheoryOfGasesLean/Basic.lean
Normal file
1
KineticTheoryOfGasesLean/Basic.lean
Normal file
|
@ -0,0 +1 @@
|
|||
def hello := "world"
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# Kinetic_Theory_of_Gases_Lean
|
||||
|
||||
The aim of this project is to formalize the Kinetic Theory of Gases in Lean4.
|
15
lakefile.toml
Normal file
15
lakefile.toml
Normal file
|
@ -0,0 +1,15 @@
|
|||
name = "Kinetic_Theory_of_Gases_Lean"
|
||||
version = "0.1.0"
|
||||
keywords = ["math"]
|
||||
defaultTargets = ["KineticTheoryOfGasesLean"]
|
||||
|
||||
[leanOptions]
|
||||
pp.unicode.fun = true # pretty-prints `fun a ↦ b`
|
||||
autoImplicit = false
|
||||
|
||||
[[require]]
|
||||
name = "mathlib"
|
||||
scope = "leanprover-community"
|
||||
|
||||
[[lean_lib]]
|
||||
name = "KineticTheoryOfGasesLean"
|
1
lean-toolchain
Normal file
1
lean-toolchain
Normal file
|
@ -0,0 +1 @@
|
|||
leanprover/lean4:v4.18.0
|
Loading…
Add table
Add a link
Reference in a new issue