Skip to content

Commit

Permalink
add a failing spec - not yet integrated into test framework though, see
Browse files Browse the repository at this point in the history
  • Loading branch information
santolucito committed Dec 23, 2023
1 parent 1c3d029 commit 4cb59f9
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/regression/ModuloTheories/lia_next.tslmt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#LIA

/* should be realizable by always setting y <- 0 */
/* requires an assumption relating one time step to the next */
/* specifically, we should generate this assumption: */
/* G (((eq y int0()) && [y <- int0()]) -> X (eq y int0())); */

always guarantee {
y = 0 -> X y = 0;
[y <- 0];
}

0 comments on commit 4cb59f9

Please sign in to comment.