blob: 2012c7648decfbf61393a62a138e4531682bc004 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
(************************************************************************)
(* * The Coq Proof Assistant / The Coq Development Team *)
(* v * Copyright INRIA, CNRS and contributors *)
(* <O___,, * (see version control and CREDITS file for authors & dates) *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(* * (see LICENSE file for the text of the license) *)
(************************************************************************)
(** #<style> .doc { font-family: monospace; white-space: pre; } </style># **)
(** Compatibility layer for [under] and [setoid_rewrite].
Note: this file does not require [ssreflect]; it is both required by
[ssrsetoid] and required by [ssrunder].
Redefine [Coq.Classes.RelationClasses.Reflexive] here, so that doing
[Require Import ssreflect] does not [Require Import RelationClasses],
and conversely. **)
Section Defs.
Context {A : Type}.
Class Reflexive (R : A -> A -> Prop) :=
reflexivity : forall x : A, R x x.
End Defs.
Register Reflexive as plugins.ssreflect.reflexive_type.
Register reflexivity as plugins.ssreflect.reflexive_proof.
Instance eq_Reflexive {A : Type} : Reflexive (@eq A) := @eq_refl A.
Instance iff_Reflexive : Reflexive iff := iff_refl.
|