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:TypeR1, R2:A -> A -> Propinclusion A R1 R2 -> forall z : A, Acc R2 z -> Acc R1 zA:TypeR1, R2:A -> A -> Propinclusion A R1 R2 -> forall z : A, Acc R2 z -> Acc R1 zapply Acc_intro; auto with sets. Qed. Hint Resolve Acc_incl : core.A:TypeR1, R2:A -> A -> PropH:inclusion A R1 R2x:AH0:forall y : A, R2 y x -> Acc R2 yH1:forall y : A, R2 y x -> Acc R1 yAcc R1 xA:TypeR1, R2:A -> A -> Propinclusion A R1 R2 -> well_founded R2 -> well_founded R1unfold well_founded; auto with sets. Qed. End WfInclusion.A:TypeR1, R2:A -> A -> Propinclusion A R1 R2 -> well_founded R2 -> well_founded R1