-
The following is a little hard to minimize, so while I work on it, here is the somewhat long version:
```
From mathcomp Require Import seq.
From mathcomp Require Import ssreflect.
From mathcomp …
-
I'm interested in understand some of `goto-instrument`s loop transformation options:
```
Loop transformations:
--k-induction check loops with k-induction
--step-case …
-
**Is your feature request related to a problem? Please describe.**
When I am looking for an inductee's points history on the table, I usually know their name and not their email. I have to then searc…
-
When we decide to vectorize a loop all nodes in the loop can be divided into two domains: the ones that are vectorized and the ones that are not. Vectorizing a node simply means replacing its opcode w…
-
-
## Current behavior
When BMC fails, a VCD waveform is left in *_task/engines_?/trace.vcd
When Induction fails, a VCD waveform is left in *_task/engines_?/trace_induct.vcd
When viewing a VCD t…
-
Hello.
I've been very unlucky lately with my printer :(
Today, I think I killed two bltouch sensors (they work when the printer is turned off, but when starting the print, the nozzle sticks into the…
-
line 1064, as a lemma for (palindrome_converse), line 805
-
#### Description of the problem
I am new to coq, so I do not know about all its features and restrictions. Intuitively, I tried to debug an induction by adding `eqn:E` to its tactic, only to fi…
-
This was uncovered by #14471.
```coq
Inductive I : Prop := C : I -> I -> I.
Lemma a : forall n : I, n = n.
Proof.
intro n; induction n as [ n1 IHn1 n2 IHn2 ].
(* Cannot remove n. [cannot-remov…