StructTact icon indicating copy to clipboard operation
StructTact copied to clipboard

Use tactic notations

Open Kethku opened this issue 10 years ago • 1 comments

I dont know what this means, but it was suggested and everybody nodded, so I assume its good.

Kethku avatar Apr 20 '16 00:04 Kethku

I believe one of the concrete suggestions was something like

Require Import StructTact.StructTactics.

Tactic Notation "find_rewrite" "<-" := find_reverse_rewrite.

Goal forall x y z : nat, x = y -> y = z -> x = z.
Proof.
  intros.
  find_rewrite <-.
  assumption.
Qed.

To make the syntax more similar to rewrite.

wilcoxjay avatar Apr 20 '16 01:04 wilcoxjay