Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert a Variables to two Admitted statements #54

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@

Lemma isweq_negb : isweq negb.
Proof.
use gradth.

Check warning on line 172 in 2017-12-Birmingham/Part5_Set_Level_Mathematics/set_level_mathematics_exercises.v

View workflow job for this annotation

GitHub Actions / Build Schools on Linux (Coq latest)

Notation gradth is deprecated. Use isweq_iso instead.

Check warning on line 172 in 2017-12-Birmingham/Part5_Set_Level_Mathematics/set_level_mathematics_exercises.v

View workflow job for this annotation

GitHub Actions / Build Schools on Linux (Coq latest)

Notation gradth is deprecated. Use isweq_iso instead.
- exact negb.
- intro x. induction x; apply idpath.
- intro x; induction x; apply idpath.
Expand Down Expand Up @@ -214,7 +214,11 @@
(* 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
Loading