Skip to content

Commit

Permalink
Convert a Variables to two Admitted statements in a Birmingham 2017 e…
Browse files Browse the repository at this point in the history
…xercise set
  • Loading branch information
arnoudvanderleer committed Sep 6, 2024
1 parent 56a8a9d commit 363cd9c
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 363cd9c

Please sign in to comment.