Skip to content

Commit

Permalink
Merge PR coq#19129: Deprecate the gintuition tactic.
Browse files Browse the repository at this point in the history
Reviewed-by: SkySkimmer
Co-authored-by: SkySkimmer <[email protected]>
  • Loading branch information
coqbot-app[bot] and SkySkimmer authored Jun 3, 2024
2 parents 4248ee4 + abeaa79 commit 2e621ae
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions doc/changelog/04-tactics/19129-deprecate-gintuition.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- **Deprecated:**
the :tacn:`gintuition` tactic, which used to be undocumented
until Coq 8.16
(`#19129 <https://github.com/coq/coq/pull/19129>`_,
by Pierre-Marie Pédrot).
2 changes: 2 additions & 0 deletions doc/sphinx/proofs/automatic-tactics/logic.rst
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ Solvers for logic and equality

.. tacn:: gintuition {? @ltac_expr }

.. deprecated:: 8.20

An extension of :tacn:`intuition` to first-order reasoning
(similar to how :tacn:`firstorder` extends :tacn:`tauto`).

Expand Down
2 changes: 1 addition & 1 deletion plugins/firstorder/g_ground.mlg
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ TACTIC EXTEND firstorder
{ gen_ground_tac true (Option.map (tactic_of_value ist) t) l l' }
END

TACTIC EXTEND gintuition
TACTIC EXTEND gintuition DEPRECATED { Deprecation.make ~since:"8.20" () }
| [ "gintuition" tactic_opt(t) ] ->
{ gen_ground_tac false (Option.map (tactic_of_value ist) t) [] [] }
END

0 comments on commit 2e621ae

Please sign in to comment.