-
https://github.com/leanprover/fp-lean/blob/7eefe73cba60f23ab60cd1ad194c08d254e5ce42/functional-programming-lean/src/tactics-induction-proofs.md?plain=1#L283
The exercise states:
* Rewrite the pr…
-
If we run this program as esbmc file.c --k-induction, our inductive step reports "VERIFICATION SUCCESSFUL".
````C
int main()
{
int y = __VERIFIER_nondet_int();
__ESBMC_assume(y >= 0 && y …
-
### Dafny version
4.6.0
### Code to produce this issue
```dafny
ghost function Pick(s: set): T
requires |s| > 0
{
var x :| x in s;
x
}
ghost function cal(s: set): real
r…
-
Also there is something very confusing.
As far as I understand:
```
Require Import Program.
From Equations Require Import Equations.
```
will use `dependent induction` of `Program`.
But
```
…
-
#### Description of the problem
The `dependent induction` family of tactics provided by `Coq.Program.Equality` support quite a few variant similar to those of `induction` but no variant allowin…
-
I'm interested in understand some of `goto-instrument`s loop transformation options:
```
Loop transformations:
--k-induction check loops with k-induction
--step-case …
-
CBMC version: **5.6 and 5.12 (cbmc-5.12-206-g873daa903)**
Operating system: **Ubuntu 18.04.4 LTS (64bits)**, gcc 7.5.0
Exact command line resulting in the issue:
```
goto-cc test.c -o binary.g…
-
The following program:
```c
float a;
main() {
for (;;) {
memset(&a, 0, sizeof(a));
reach_error();
for (;;)
;
}
}
```
Gives an incorrect veredict when using k-indu…
-
Course code, if applicable: CSCI3393.01 and MATH4311.01 (cross-listed)
University hosting the course: Boston College
Contact person: Carl McTague, carl.mctague@bc.edu
Concepts taught: Automated Rea…
-
I'm using ESBMC for a case study and am getting a false positive with the k-induction feature. With plain BMC without k-induction ESBMC manages to find the counterexample. I broke down the program to …