You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: revert "feat: disable "experimental" warning for mvcgen (#10638)" (#10720)
This PR re-enables the "experimental" warning for `mvcgen` by changing
its default. The official release has been postponed to justify small
breaking changes in the semantic foundations in the near future.
Copy file name to clipboardExpand all lines: src/Lean/Elab/Tactic/Do/VCGen.lean
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -448,7 +448,7 @@ where
448
448
@[builtin_tactic Lean.Parser.Tactic.mvcgen]
449
449
defelabMVCGen : Tactic := fun stx => withMainContext do
450
450
if mvcgen.warning.get (← getOptions) then
451
-
logWarningAt stx "The `mvcgen` tactic is new and its behavior may change in the future. This project has used `set_option mvcgen.warning true` to discourage its use."
451
+
logWarningAt stx "The `mvcgen` tactic is experimental and still under development. Avoid using it in production projects."
0 commit comments