initial commit

This commit is contained in:
Dibyashanu Pati 2025-04-02 04:06:06 +05:30
commit 12b397590b
7 changed files with 38 additions and 0 deletions

14
.github/workflows/lean_action_ci.yml vendored Normal file
View 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
View file

@ -0,0 +1 @@
/.lake

View 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

View file

@ -0,0 +1 @@
def hello := "world"

3
README.md Normal file
View 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
View 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
View file

@ -0,0 +1 @@
leanprover/lean4:v4.18.0