Skip to content

Commit

Permalink
Merge pull request #54 from arnoudvanderleer/fix-variables
Browse files Browse the repository at this point in the history
Convert a Variables to two Admitted statements
  • Loading branch information
benediktahrens authored Sep 10, 2024
2 parents 56a8a9d + 363cd9c commit 752abd3
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,11 @@ Definition isrefl {X : UU} (R : hrel X) : UU
(* FILL IN THE DEFINITIONS OF istrans AND issymm *)
(* Definition istrans {X : UU} (R : hrel X) : UU := *)
(* Definition issymm {X : UU} (R : hrel X) : UU := *)
Variables istrans issymm: forall {X: UU}, hrel X -> UU. (* to be deleted *)

Definition istrans {X : UU} (R : hrel X) : UU.
Admitted.
Definition issymm {X : UU} (R : hrel X) : UU.
Admitted.

Definition ispreorder {X : UU} (R : hrel X) : UU := istrans R × isrefl R.

Expand Down

0 comments on commit 752abd3

Please sign in to comment.