SProp (proof irrelevant propositions)¶
Warning
The status of strict propositions is experimental.
This section describes the extension of Coq with definitionally proof irrelevant propositions (types in the sort \(\SProp\), also known as strict propositions) as described in [GCST19].
Using \(\SProp\) may be prevented by passing -disallow-sprop
to the Coq program or using Allow StrictProp
.
-
Flag
Allow StrictProp
¶ Allows using \(\SProp\) when set and forbids it when unset. The initial value depends on whether you used the command line
-disallow-sprop
and-allow-sprop
.
-
Error
SProp not allowed, you need to Set Allow StrictProp or to use the -allow-sprop command-line-flag.
¶
- Set Allow StrictProp.
Some of the definitions described in this document are available
through Coq.Logic.StrictProp
, which see.
Basic constructs¶
The purpose of \(\SProp\) is to provide types where all elements are convertible:
Since we have definitional η-expansion for functions, the property of being a type of definitionally irrelevant values is impredicative, and so is \(\SProp\):
Warning
Conversion checking through bytecode or native code compilation currently does not understand proof irrelevance.
In order to keep conversion tractable, cumulativity for \(\SProp\) is forbidden:
- Fail Check (fun (A:SProp) => A : Type).
- The command has indeed failed with message: In environment A : SProp The term "A" has type "SProp" while it is expected to have type "Type".
We can explicitly lift strict propositions into the relevant world by using a wrapping inductive type. The inductive stops definitional proof irrelevance from escaping.
- Inductive Box (A:SProp) : Prop := box : A -> Box A.
- Box is defined Box_rect is defined Box_ind is defined Box_rec is defined Box_sind is defined
- Arguments box {_} _.
- Fail Check fun (A:SProp) (x y : Box A) => eq_refl : x = y.
- The command has indeed failed with message: In environment A : SProp x : Box A y : Box A The term "eq_refl" has type "x = x" while it is expected to have type "x = y" (cannot unify "x" and "y").
- Definition box_irrelevant (A:SProp) (x y : Box A) : x = y := match x, y with box x, box y => eq_refl end.
- box_irrelevant is defined
In the other direction, we can use impredicativity to "squash" a relevant type, making an irrelevant approximation.
Or more conveniently (but equivalently)
Most inductives types defined in \(\SProp\) are squashed types, i.e. they can only be eliminated to construct proofs of other strict propositions. Empty types are the only exception.
- Inductive sEmpty : SProp := .
- sEmpty is defined sEmpty_rect is defined sEmpty_ind is defined sEmpty_rec is defined sEmpty_sind is defined
- Check sEmpty_rect.
- sEmpty_rect : forall (P : sEmpty -> Type) (s : sEmpty), P s
Note
Eliminators to strict propositions are called foo_sind
, in the
same way that eliminators to propositions are called foo_ind
.
Primitive records in \(\SProp\) are allowed when fields are strict propositions, for instance:
- Set Primitive Projections.
- Record sProd (A B : SProp) : SProp := { sfst : A; ssnd : B }.
- sProd is defined sfst is defined ssnd is defined
On the other hand, to avoid having definitionally irrelevant types in non-\(\SProp\) sorts (through record η-extensionality), primitive records in relevant sorts must have at least one relevant field.
- Set Warnings "+non-primitive-record".
- Fail Record rBox (A:SProp) : Prop := rbox { runbox : A }.
- The command has indeed failed with message: The record rBox could not be defined as a primitive record
Note that rBox
works as an emulated record, which is equivalent to
the Box inductive.
Encodings for strict propositions¶
The elimination for unit types can be encoded by a trivial function thanks to proof irrelevance:
By using empty and unit types as base values, we can encode other strict propositions. For instance:
Issues with non-cumulativity¶
During normal term elaboration, we don't always know that a type is a strict proposition early enough. For instance:
While checking the type of the constant, we only know that ?[T]
must inhabit some sort. Putting it in some floating universe u
would disallow instantiating it by sUnit : SProp
.
In order to make the system usable without having to annotate every
instance of \(\SProp\), we consider \(\SProp\) to be a subtype
of every universe during elaboration (i.e. outside the kernel). Then
once we have a fully elaborated term it is sent to the kernel which
will check that we didn't actually need cumulativity of \(\SProp\)
(in the example above, u
doesn't appear in the final term).
This means that some errors will be delayed until Qed
:
- Lemma foo : Prop.
- 1 subgoal ============================ Prop
- Proof.
- pose (fun A : SProp => A : Type); exact True.
- No more subgoals.
- Fail Qed.
- The command has indeed failed with message: In environment A : SProp The term "A" has type "SProp" while it is expected to have type "Type".
- Abort.
-
Flag
Elaboration StrictProp Cumulativity
¶ Unset this flag (it is on by default) to be strict with regard to \(\SProp\) cumulativity during elaboration.
The implementation of proof irrelevance uses inferred "relevance" marks on binders to determine which variables are irrelevant. Together with non-cumulativity this allows us to avoid retyping during conversion. However during elaboration cumulativity is allowed and so the algorithm may miss some irrelevance:
- Fail Definition late_mark := fun (A:SProp) (P:A -> Prop) x y (v:P x) => v : P y.
- The command has indeed failed with message: In environment A : SProp P : A -> Prop x : A y : A v : P x The term "v" has type "P x" while it is expected to have type "P y".
The binders for x
and y
are created before their type is known
to be A
, so they're not marked irrelevant. This can be avoided
with sufficient annotation of binders (see irrelevance
at the
beginning of this chapter) or by bypassing the conversion check in
tactics.
The kernel will re-infer the marks on the fully elaborated term, and
so correctly converts x
and y
.
-
Warning
Bad relevance
¶ This is a developer warning, disabled by default. It is emitted by the kernel when it is passed a term with incorrect relevance marks. To avoid conversion issues as in
late_mark
you may wish to use it to find when your tactics are producing incorrect marks.