Skip to content
Open
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
6 changes: 6 additions & 0 deletions HB/structures.v
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
(* Support constants, to be kept in sync with shim/structures.v *)
From Corelib Require Import ssreflect ssrfun.

Add Search Blacklist "Builders_".
Add Search Blacklist "__canonical__".
Add Search Blacklist "__to__".
Add Search Blacklist "_between_".
Add Search Blacklist "_mixin".

Variant error_msg := NoMsg | IsNotCanonicallyA (x : Type).
Definition unify T1 T2 (t1 : T1) (t2 : T2) (s : error_msg) :=
phantom T1 t1 -> phantom T2 t2.
Expand All @@ -21,18 +27,18 @@
Register id_phant_disabled as hb.id_disabled.
Register ignore as hb.ignore.
Register ignore_disabled as hb.ignore_disabled.
Register Coq.Init.Datatypes.None as hb.none.

Check warning on line 30 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.0)

Coq.Init.Datatypes.None has been replaced by

Check warning on line 30 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.1)

Coq.Init.Datatypes.None has been replaced by
Register nomsg as hb.nomsg.
Register is_not_canonically_a as hb.not_a_msg.
Register Coq.Init.Datatypes.Some as hb.some.

Check warning on line 33 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.0)

Coq.Init.Datatypes.Some has been replaced by

Check warning on line 33 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.1)

Coq.Init.Datatypes.Some has been replaced by
Register Coq.Init.Datatypes.pair as hb.pair.

Check warning on line 34 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.0)

Coq.Init.Datatypes.pair has been replaced by

Check warning on line 34 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.1)

Coq.Init.Datatypes.pair has been replaced by
Register Coq.Init.Datatypes.prod as hb.prod.

Check warning on line 35 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.0)

Coq.Init.Datatypes.prod has been replaced by

Check warning on line 35 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.1)

Coq.Init.Datatypes.prod has been replaced by
Register Coq.Init.Specif.sigT as hb.sigT.

Check warning on line 36 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.0)

Coq.Init.Specif.sigT has been replaced by Corelib.Init.Specif.sigT.

Check warning on line 36 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.1)

Coq.Init.Specif.sigT has been replaced by Corelib.Init.Specif.sigT.
Register Coq.ssr.ssreflect.phant as hb.phant.

Check warning on line 37 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.0)

Coq.ssr.ssreflect.phant has been replaced by

Check warning on line 37 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.1)

Coq.ssr.ssreflect.phant has been replaced by
Register Coq.ssr.ssreflect.Phant as hb.Phant.

Check warning on line 38 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.0)

Coq.ssr.ssreflect.Phant has been replaced by

Check warning on line 38 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.1)

Coq.ssr.ssreflect.Phant has been replaced by
Register Coq.ssr.ssreflect.phantom as hb.phantom.

Check warning on line 39 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.0)

Coq.ssr.ssreflect.phantom has been replaced by

Check warning on line 39 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.1)

Coq.ssr.ssreflect.phantom has been replaced by
Register Coq.ssr.ssreflect.Phantom as hb.Phantom.

Check warning on line 40 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.0)

Coq.ssr.ssreflect.Phantom has been replaced by

Check warning on line 40 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.1)

Coq.ssr.ssreflect.Phantom has been replaced by
Register Coq.Init.Logic.eq as hb.eq.

Check warning on line 41 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.0)

Coq.Init.Logic.eq has been replaced by Corelib.Init.Logic.eq.

Check warning on line 41 in HB/structures.v

View workflow job for this annotation

GitHub Actions / opam (9.1)

Coq.Init.Logic.eq has been replaced by Corelib.Init.Logic.eq.
Register Coq.Init.Logic.eq_refl as hb.erefl.
Register new as hb.new.
Register eta as hb.eta.
Expand Down
Loading