-
#### Version
Coq 8.7.0
#### Description of the problem
```
Inductive Foo1 (P : Type) := foo1 : let x := 0 in P -> Foo1 P.
Inductive Foo2 (P : Type) := foo2 : P -> let x := 0 in Foo2 P.
Induc…
-
This is my dream..
This is how to do it..
Have this App notify an @ sign of the URL of the radio they are sharing and populate that @ signs wavi page with the Url QED!
-
Chances are this is not really an issue. It's just an alternative proof for the `stamps` lemma:
```coq
Lemma addnBAC m n p : n n (m - n) + p = m + (p - n).
Proof. by move=> le_nm le_np; rewrite a…
-
```
Windows STD_INT > vc 6
http://www.azillionmonkeys.com/qed/pstdint.h
```
Original issue reported on code.google.com by `0xcafef...@gmail.com` on 1 Jun 2011 at 12:24
-
```
Windows STD_INT > vc 6
http://www.azillionmonkeys.com/qed/pstdint.h
```
Original issue reported on code.google.com by `0xcafef...@gmail.com` on 1 Jun 2011 at 12:24
-
@aeriforme just started a list of missing WarpX PICMI features we need for a couple of cases:
- [ ] reduced diagnostics
- [x] #3697
- [x] #3475
- [ ] #3179
- [ ] self_fields_required_precis…
-
fVDI documentation states:
> If you have NVDI too, you can make NVDI use fVDI for the actual screen output **by making sure that NVDI runs last**. This will be slower, but you'll be able to use NVD…
-
In Coq, I can write something like:
```Coq
Lemma lastP s : last_spec s.
Proof. case: s => [|x s]; [left | rewrite lastI; right]. Qed.
```
Is there something similar in Ssrlean?
Currently I d…
-
#### Description of the problem
In the following code:
```coq
Ltac introsuntil h := intros until h.
Goal forall t : nat, t = t.
Proof.
introsuntil t.
reflexivity.
Qed.
Require Imp…
-
#### Description of the problem
```
From Coq Require Import ssreflect.
Lemma insub {T} {P : T -> bool} (x : T) : option {x : T | P x = true}.
Proof.
case e: (P x); [apply: Some|apply:…