File tree 2 files changed +0
-9
lines changed
2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -261,14 +261,9 @@ abbrev Three := Fin 3
261
261
262
262
/- ### 問2.1 半順序集合であること -/
263
263
264
- -- この二つの定理は使用して良い
265
- theorem min_def (a b : Nat) : min a b = if a ≤ b then a else b := by aesop
266
- theorem max_def (a b : Nat) : max a b = if a ≤ b then b else a := by aesop
267
-
268
264
-- ここに `local add_aesop_rules` コマンドを追加して証明が通るようにしてください。
269
265
-- いくつルールを追加しても構いません。
270
266
--##--
271
- local add_aesop_rules norm [simp [min_def, max_def]]
272
267
local add_aesop_rules safe [cases Fin]
273
268
local add_aesop_rules norm [simp Fin.le_def]
274
269
local add_aesop_rules safe [tactic (by omega)]
Original file line number Diff line number Diff line change @@ -258,10 +258,6 @@ abbrev Three := Fin 3
258
258
259
259
/- ### 問2.1 半順序集合であること -/
260
260
261
- -- この二つの定理は使用して良い
262
- theorem min_def (a b : Nat) : min a b = if a ≤ b then a else b := by aesop
263
- theorem max_def (a b : Nat) : max a b = if a ≤ b then b else a := by aesop
264
-
265
261
-- ここに `local add_aesop_rules` コマンドを追加して証明が通るようにしてください。
266
262
-- いくつルールを追加しても構いません。
267
263
You can’t perform that action at this time.
0 commit comments