You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
verification fails with the latest commit (0fc8a49):
$ cbmc --version
6.4.1 (cbmc-6.4.1-159-g0fc8a492c8)
$ cbmc ffl.c
CBMC version 6.4.1 (cbmc-6.4.1-159-g0fc8a492c8) 64-bit x86_64 linux
Type-checking ffl
Generating GOTO Program
Adding CPROVER library (x86_64)
Removal of functionpointers and virtual functions
Generic Property Instrumentation
Starting Bounded Model Checking
Passing problem to propositional reduction
converting SSA
Running propositional reduction
SAT checker: instance is SATISFIABLE
** Results:
ffl.c functionmain
[main.assertion.1] line 7 assertion g == -43.0: FAILURE
** 1 of 1 failed (2 iterations)
VERIFICATION FAILED
which is an incorrect.
The program correctly passes with CBMC 6.4.1:
$ cbmc --version
6.4.1 (cbmc-6.4.1)
$ cbmc ffl.c
CBMC version 6.4.1 (cbmc-6.4.1-159-g0fc8a492c8) 64-bit x86_64 linux
Type-checking ffl
Generating GOTO Program
Adding CPROVER library (x86_64)
Removal of function pointers and virtual functions
Generic Property Instrumentation
Starting Bounded Model Checking
Passing problem to propositional reduction
converting SSA
Running propositional reduction
SAT checker: instance is SATISFIABLE
** Results:
ffl.c function main
[main.assertion.1] line 7 assertion g == -43.0: FAILURE
** 1 of 1 failed (2 iterations)
VERIFICATION FAILED
The text was updated successfully, but these errors were encountered:
For the following C program:
verification fails with the latest commit (0fc8a49):
which is an incorrect.
The program correctly passes with CBMC 6.4.1:
The text was updated successfully, but these errors were encountered: