File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -218,6 +218,14 @@ structure Config where
218
218
to find candidate `simp` theorems. It approximates Lean 3 `simp` behavior.
219
219
-/
220
220
index : Bool := true
221
+ /--
222
+ When `true` (default: `false`), `simp` will **not** create a proof for a rewriting rule associated
223
+ with an `rfl`-theorem.
224
+ Rewriting rules are provided by users by annotating theorems with the attribute `@[simp]`.
225
+ If the proof of the theorem is just `rfl` (reflexivity), and `implicitDefEqProofs := true`, `simp`
226
+ will **not** create a proof term which is an application of the annotated theorem.
227
+ -/
228
+ implicitDefEqProofs : Bool := false
221
229
deriving Inhabited, BEq
222
230
223
231
-- Configuration object for `simp_all`
You can’t perform that action at this time.
0 commit comments