-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #453 from diffblue/bmc-top-level-conjuction
BMC now splits up top-level conjunction
- Loading branch information
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
CORE | ||
module1.smv | ||
--bound 10 | ||
^EXIT=0$ | ||
^SIGNAL=0$ | ||
^\[main::spec1\] AG subA.flag & AG subB.flag: PROVED up to bound 10$ | ||
-- | ||
^warning: ignoring |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
MODULE main | ||
|
||
VAR subA : my-module; | ||
subB : my-module; | ||
|
||
SPEC AG subA.flag & AG subB.flag | ||
|
||
MODULE my-module | ||
|
||
VAR flag : boolean; | ||
|
||
ASSIGN init(flag) := 1; | ||
ASSIGN next(flag) := 1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters