Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WordGen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Benoit Barbot
WordGen
Merge requests
!2
Breach stuff
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Breach stuff
breach_stuff
into
master
Overview
0
Commits
13
Pipelines
1
Changes
7
Merged
Benoit Barbot
requested to merge
breach_stuff
into
master
5 years ago
Overview
0
Commits
13
Pipelines
1
Changes
7
Expand
Merge
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
32a04654
13 commits,
5 years ago
7 files
+
207
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
example/deadlock_corners.prism
0 → 100644
+
26
−
0
Options
pta
module controller
s : [0..6] init 0;
x: clock;
x1 : clock;
x2 : clock;
x3 : clock;
x4 : clock;
invariant
(x<=4) & (x1<=12) & (x2<=12) & (x3<=12) & (x4<=12)
endinvariant
[b] (s=0) -> (s'=1) & (x'=0) & (x1'=0) ;
[c] (s=1) -> (s'=2) & (x'=0) & (x2'=0) ;
[d] (s=2) -> (s'=3) & (x'=0) & (x3'=0) ;
[a] (s=3) & (x4>=8) -> (s'=4) & (x'=0) & (x4'=0) ;
[b] (s=4) & (x1>=8) -> (s'=5) & (x'=0) & (x1'=0) ;
[c] (s=5) & (x2>=8) -> (s'=6) & (x'=0) & (x2'=0) ;
[d] (s=6) & (x3>=8) -> (s'=3) & (x'=0) & (x3'=0) ;
endmodule
Loading