Skip to content

Commit 2829069

Browse files
committed
version 更新
1 parent 013002f commit 2829069

File tree

5 files changed

+26
-16
lines changed

5 files changed

+26
-16
lines changed

LeanByExample/Reference/Diagnostic/Help.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
他にも機能がありますが、詳細は[Mathlib のドキュメント](https://leanprover-community.github.io/mathlib4_docs/Mathlib/Tactic/HelpCmd.html)をご覧ください。
1313
-/
14-
import Mathlib.Tactic
14+
import Batteries.Tactic.HelpCmd
1515

1616
-- 以下のコマンドで全 tactic のリストが見られます
1717
#help tactic
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
/- # slim_check
1+
/- # plausible
22
3-
`slim_check` は、証明しようとしているゴールが間違っていないかチェックし、反例を見つけるとエラーで警告するタクティクです。 -/
4-
import Mathlib.Tactic.SlimCheck
3+
`plausible` は、証明しようとしているゴールが間違っていないかチェックし、反例を見つけるとエラーで警告するタクティクです。 -/
4+
import Plausible
55

6-
variable (a b : )
6+
variable (a b : Nat)
77

88
#guard_msgs (drop warning) in --#
99
example (h : 0 ≤ a + b) : 1 ≤ a := by
1010
/-
1111
Found problems! というエラーが表示される
1212
-/
13-
fail_if_success slim_check
13+
fail_if_success plausible
1414

1515
sorry
1616

@@ -22,4 +22,4 @@ example (h : 0 ≤ a + b) : 1 ≤ a := by
2222
-- Gave up ** times と表示される
2323
#guard_msgs (drop warning) in --#
2424
example (h : a = 1) : a ≤ 1 := by
25-
slim_check
25+
plausible

booksrc/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
- [show: 示すべきことを宣言](./Reference/Tactic/Show.md)
171171
- [simp_all: 仮定とゴールを全て単純化](./Reference/Tactic/SimpAll.md)
172172
- [simp: 単純化](./Reference/Tactic/Simp.md)
173-
- [slim_check: 反例を見つける](./Reference/Tactic/SlimCheck.md)
173+
- [plausible: 反例を見つける](./Reference/Tactic/Plausible.md)
174174
- [sorry: 証明したことにする](./Reference/Tactic/Sorry.md)
175175
- [split: if/match 式を分解](./Reference/Tactic/Split.md)
176176
- [suffices: 十分条件に帰着](./Reference/Tactic/Suffices.md)

lake-manifest.json

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"type": "git",
3636
"subDir": null,
3737
"scope": "leanprover-community",
38-
"rev": "eb6c831c05bc6ca6d37454ca97531a9b780dfcb5",
38+
"rev": "31a10a332858d6981dbcf55d54ee51680dd75f18",
3939
"name": "batteries",
4040
"manifestFile": "lake-manifest.json",
4141
"inputRev": "main",
@@ -45,7 +45,7 @@
4545
"type": "git",
4646
"subDir": null,
4747
"scope": "leanprover-community",
48-
"rev": "1357f4f49450abb9dfd4783e38219f4ce84f9785",
48+
"rev": "d6ae727639429892c372d613b31967b6ee51f78c",
4949
"name": "Qq",
5050
"manifestFile": "lake-manifest.json",
5151
"inputRev": "master",
@@ -55,7 +55,7 @@
5555
"type": "git",
5656
"subDir": null,
5757
"scope": "leanprover-community",
58-
"rev": "9ac12945862fa39eab7795c2f79bb9aa0c8e332c",
58+
"rev": "5f934891e11d70a1b86e302fdf9cecfc21e8de46",
5959
"name": "aesop",
6060
"manifestFile": "lake-manifest.json",
6161
"inputRev": "master",
@@ -65,17 +65,17 @@
6565
"type": "git",
6666
"subDir": null,
6767
"scope": "leanprover-community",
68-
"rev": "baa65c6339a56bd22b7292aa4511c54b3cc7a6af",
68+
"rev": "23268f52d3505955de3c26a42032702c25cfcbf8",
6969
"name": "proofwidgets",
7070
"manifestFile": "lake-manifest.json",
71-
"inputRev": "v0.0.43",
71+
"inputRev": "v0.0.44",
7272
"inherited": true,
7373
"configFile": "lakefile.lean"},
7474
{"url": "https://github.com/leanprover-community/import-graph",
7575
"type": "git",
7676
"subDir": null,
7777
"scope": "leanprover-community",
78-
"rev": "c1970bea80ac3357a6a991a6d00d12e7435c12c7",
78+
"rev": "984d7ee170b75d6b03c0903e0b750ee2c6d1e3fb",
7979
"name": "importGraph",
8080
"manifestFile": "lake-manifest.json",
8181
"inputRev": "main",
@@ -91,11 +91,21 @@
9191
"inputRev": "main",
9292
"inherited": true,
9393
"configFile": "lakefile.toml"},
94+
{"url": "https://github.com/leanprover-community/plausible",
95+
"type": "git",
96+
"subDir": null,
97+
"scope": "leanprover-community",
98+
"rev": "d212dd74414e997653cd3484921f4159c955ccca",
99+
"name": "plausible",
100+
"manifestFile": "lake-manifest.json",
101+
"inputRev": "main",
102+
"inherited": true,
103+
"configFile": "lakefile.toml"},
94104
{"url": "https://github.com/leanprover-community/mathlib4.git",
95105
"type": "git",
96106
"subDir": null,
97107
"scope": "",
98-
"rev": "4b5f1a09a2e4d4d693db48703e230c11782c3c5e",
108+
"rev": "fef6aa3e68311f7ddb82e3db00441493b0e6f39a",
99109
"name": "mathlib",
100110
"manifestFile": "lake-manifest.json",
101111
"inputRev": "master",

lean-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
leanprover/lean4:v4.13.0-rc3
1+
leanprover/lean4:v4.13.0

0 commit comments

Comments
 (0)