Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
RalfJung opened this issue Dec 5, 2024 · 0 comments
Open

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

RalfJung opened this issue Dec 5, 2024 · 0 comments

Comments

@RalfJung
Copy link

RalfJung commented Dec 5, 2024

This is a re-filing of #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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant