Created
March 28, 2018 10:40
-
-
Save anton-trunov/1c82bdb3b77a3488b1cd909328631e05 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From Coq Require Import ssreflect ssrfun ssrbool. | |
From mathcomp Require Import eqtype seq tuple. | |
Set Implicit Arguments. | |
Unset Strict Implicit. | |
Unset Printing Implicit Defensive. | |
Definition trev T n (t : n.-tuple T) := [tuple of rev t]. | |
Lemma trevK T n : involutive (@trev T n). | |
Proof. by move=>t; apply: val_inj; rewrite /= revK. Qed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment