source: CIVL/examples/loop_invariants/notes@ 7d77e64

main test-branch
Last change on this file since 7d77e64 was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago

Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 583 bytes
Line 
11. Side-effects in loop-condition will be a problem in transformation.
22. Loop must not have goto statements in original code.
33. The assertion failure message printed after running arrayZeroes1d-bad.cvl looks confusing.
44. Think about the last two commented-out lines of code in arrayEqualsNoReturn.cvl
55. Currently no induction heuristic handling for $exist
66. IMPORTANT: why I have to add loop condition into the pushed assumption ?
7
8 if (loop_cond)
9 while(true) {
10 $assume_push(loop_cond && invariants); // why the loop_cond has to be there ?
11 ...
12 }
Note: See TracBrowser for help on using the repository browser.