We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef18c1d commit 0b0c82bCopy full SHA for 0b0c82b
theories/Core/Decision.v
@@ -1,6 +1,6 @@
1
Require Import Coq.Classes.DecidableClass.
2
3
-Definition decideP (P : Prop) (D : Decidable P) : {P} + {~P} :=
+Definition decideP (P : Prop) {D : Decidable P} : {P} + {~P} :=
4
match @Decidable_witness P D as X return (X = true -> P) -> (X = false -> ~P) -> {P} + {~P} with
5
| true => fun pf _ => left (pf eq_refl)
6
| false => fun _ pf => right (pf eq_refl)
0 commit comments