Coq-Equations icon indicating copy to clipboard operation
Coq-Equations copied to clipboard

Importing Equations breaks std++'s 'simplify_eq' tactic

Open RalfJung opened this issue 11 months ago • 0 comments
trafficstars

This is a re-filing of https://github.com/mattam82/Coq-Equations/issues/449, which apparently has not actually been fixed yet.

The bug is demonstrated by the following proof script:

Module Import tactics.
  Tactic Notation "simplify_eq" := idtac.
End tactics.

(* Our new tactic works just fine here. *)
Goal True. Proof. simplify_eq. auto. Qed.

From Equations Require Import Equations.

(* Importing Equations has broken our tactic. *)
Goal True. Proof. simplify_eq. auto. Qed.

This is with version 1.3.1+8.20 of the opam package.

RalfJung avatar Dec 05 '24 15:12 RalfJung