We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For the record, I found an issue with the forcing translation of Props:
Prop
From Forcing Require Import Forcing. Axiom Obj : Type. Axiom Hom : Obj -> Obj -> Type. Notation "P ≤ Q" := (forall R, Hom Q R -> Hom P R) (at level 70). Forcing Translate and using Obj Hom. Forcing Translate iff using Obj Hom. (* error: ... has type "forall p : Obj, (forall p0 : Obj, p ≤ p0 -> forall p1 : Obj, p0 ≤ p1 -> Prop) -> (forall p0 : Obj, p ≤ p0 -> forall p1 : Obj, p0 ≤ p1 -> Prop) -> forall p0 : Obj, p ≤ p0 -> Type" while it is expected to have type "forall p : Obj, (forall p0 : Obj, p ≤ p0 -> forall p1 : Obj, p0 ≤ p1 -> Prop) -> (forall p0 : Obj, p ≤ p0 -> forall p1 : Obj, p0 ≤ p1 -> Prop) -> forall p0 : Obj, p ≤ p0 -> Prop". *)
Apparently due to andᶠ declared in Type instead of Prop.
andᶠ
Type
The text was updated successfully, but these errors were encountered:
Fixing issue CoqHott#6: forcing of singleton Prop.
609d11e
No branches or pull requests
For the record, I found an issue with the forcing translation of
Prop
s:Apparently due to
andᶠ
declared inType
instead ofProp
.The text was updated successfully, but these errors were encountered: