Skip to content

Commit 7623866

Browse files
committed
Docstring
1 parent 531d84c commit 7623866

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Init/MetaTypes.lean

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,13 @@ structure Config where
250250
-/
251251
catchRuntime : Bool := true
252252
/--
253-
When `true` (default: `false`), simp will try to detect some forms of looping rewrite rules.
253+
When `true` (default: `true`), simp will try to detect rewrite rules that are likely to loop.
254254
255255
Before applying a simp theorem, it simplifies the theorem's uninstantiated right-hand side.
256-
If while doing that the same theorem could be applied again, the theorem is considered to be
256+
If during that process, the theorem can be applied again, the theorem is considered to be
257257
looping and (with a warning) ignored.
258+
259+
Local hypotheses and permutating theorems not considered during this process.
258260
-/
259261
loopProtection : Bool := true
260262
deriving Inhabited, BEq

0 commit comments

Comments
 (0)