Kunjian Song
Kunjian Song
./esbmc cbmc/Templates6/main.cpp ``` State 1 file main.cpp line 34 function main thread 0 ---------------------------------------------------- Violated property: file main.cpp line 34 function main assertion g==20 g == 20 VERIFICATION FAILED ```...
Evaluted the CBMC, ESBMC-v2.1 and our *current* Clang AST to figure out whether they are able to identify the correct execution order of constructors and destructors in some (fairly) complicated...
We should delete all .h from our model and make all the c header simply include the standard c headers. Evaluation: Just use the existing benchmarks. Expect a similar or...
ESBMC gave incorrect verification result for the following example: ```cpp #include class A { public: A() {} A(int x) : m_x(x) {}; int getX() { return m_x; } protected: int...