Built with Alectryon, running Coq+SerAPI v8.10.0+0.7.0. Coq sources are in this panel; goals and messages will appear in the other. Bubbles () indicate interactive fragments: hover for details, tap to reveal contents. Use Ctrl+↑ Ctrl+↓ to navigate, Ctrl+🖱️ to focus.
(************************************************************************)
(*         *   The Coq Proof Assistant / The Coq Development Team       *)
(*  v      *   INRIA, CNRS and contributors - Copyright 1999-2018       *)
(* <O___,, *       (see CREDITS file for the list of authors)           *)
(*   \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)         *)
(************************************************************************)
Author: Bruno Barras
Require Import Relation_Definitions.

Section WfInclusion.
  Variable A : Type.
  Variables R1 R2 : A -> A -> Prop.

  
A:Type
R1, R2:A -> A -> Prop

inclusion A R1 R2 -> forall z : A, Acc R2 z -> Acc R1 z
A:Type
R1, R2:A -> A -> Prop

inclusion A R1 R2 -> forall z : A, Acc R2 z -> Acc R1 z
A:Type
R1, R2:A -> A -> Prop
H:inclusion A R1 R2
x:A
H0:forall y : A, R2 y x -> Acc R2 y
H1:forall y : A, R2 y x -> Acc R1 y

Acc R1 x
apply Acc_intro; auto with sets. Qed. Hint Resolve Acc_incl : core.
A:Type
R1, R2:A -> A -> Prop

inclusion A R1 R2 -> well_founded R2 -> well_founded R1
A:Type
R1, R2:A -> A -> Prop

inclusion A R1 R2 -> well_founded R2 -> well_founded R1
unfold well_founded; auto with sets. Qed. End WfInclusion.