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

sorry の舞台裏を説明する #1048

Merged
merged 1 commit into from
Nov 4, 2024
Merged
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
15 changes: 15 additions & 0 deletions LeanByExample/Reference/Tactic/Sorry.lean
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/- # sorry

証明の細部を埋める前にコンパイルが通るようにしたいとき、証明で埋めるべき箇所に `sorry` と書くとコンパイルが通るようになります。ただし、`sorry` を使用しているという旨の警告が出ます。 -/
import Lean --#

-- Fermat の最終定理
def FermatLastTheorem :=
Expand All @@ -9,3 +10,17 @@ def FermatLastTheorem :=
#guard_msgs (drop warning) in --#
theorem flt : FermatLastTheorem :=
sorry

/- ## 舞台裏
`Lean.Elab.admitGoal` を使用することで `sorry` と同様のタクティクを作ることができます。
-/

open Lean Elab Tactic

elab "my_sorry" : tactic => withMainContext do
let goal ← getMainGoal
admitGoal goal

#guard_msgs (drop warning) in --#
theorem flt' : FermatLastTheorem := by
my_sorry