Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sync ワークフローの修正とテスト実行 #710

Merged
merged 4 commits into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}

- name: Install elan
run: |
Expand Down Expand Up @@ -63,4 +65,4 @@ jobs:
git config user.email "[email protected]"
git add Examples/Exercise
git commit -m "generated by GitHub Action"
git push
git push origin HEAD:${{ github.event.pull_request.head.ref }}
4 changes: 3 additions & 1 deletion Examples/Exercise/CantorTheorem.lean
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ Cantor の定理とは、次のような定理です。
ということを意味しています。
```

この定理はもちろん Mathlib には既に存在しますが、ここでは Lean を用いて数学理論を形式化するとはどういうことかお見せするために、Mathlib を一切使わずに形式化していきます。
「濃度」とは、集合の「要素の個数」という概念を無限集合にも拡張したものであり、おおむね「一対一で漏れのない対応がつけられるならば、要素数が等しいと言ってよいだろう」というアイデアに基づくものです。

この Cantor の定理はよく知られたものであり、Mathlib には既に存在しますが、ここでは Lean を用いて数学理論を形式化するとはどういうことかお見せするために、Mathlib を一切使わずに形式化していきます。
-/

/- ## 集合論の形式化
Expand Down
4 changes: 3 additions & 1 deletion Examples/Solution/CantorTheorem.lean
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ Cantor の定理とは、次のような定理です。
ということを意味しています。
```

この定理はもちろん Mathlib には既に存在しますが、ここでは Lean を用いて数学理論を形式化するとはどういうことかお見せするために、Mathlib を一切使わずに形式化していきます。
「濃度」とは、集合の「要素の個数」という概念を無限集合にも拡張したものであり、おおむね「一対一で漏れのない対応がつけられるならば、要素数が等しいと言ってよいだろう」というアイデアに基づくものです。

この Cantor の定理はよく知られたものであり、Mathlib には既に存在しますが、ここでは Lean を用いて数学理論を形式化するとはどういうことかお見せするために、Mathlib を一切使わずに形式化していきます。
-/

/- ## 集合論の形式化
Expand Down