| summaryrefslogtreecommitdiff |
diff options
| author | nsensfel <SpamShield0@noot-noot.org> | 2018-05-31 16:52:12 +0200 |
|---|---|---|
| committer | nsensfel <SpamShield0@noot-noot.org> | 2018-05-31 16:52:12 +0200 |
| commit | 9f784e5c285cdd2631b52a4299eeb193593e6c21 (patch) | |
| tree | c87e912bf03d2c4eb907cd91bca11c0297d865a7 /property/combinational_processes.pro | |
| parent | e520f8b10fbb7b39c563bf626c8d7945a0b424c0 (diff) | |
Adds Tabellion's old properties.
Diffstat (limited to 'property/combinational_processes.pro')
| -rw-r--r-- | property/combinational_processes.pro | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/property/combinational_processes.pro b/property/combinational_processes.pro new file mode 100644 index 0000000..d4068ab --- /dev/null +++ b/property/combinational_processes.pro @@ -0,0 +1,29 @@ +(seek + ( + (ps process) + ) + (forall sl1 waveform + (and + (implies + ;; If a signal is read, + (exists target waveform + (CTL_verifies ps + (EF + (is_read_element _ sl1) + ) + ) + ) + ;; Then it must be in the sensitivity list. + (is_in_sensitivity_list sl1 ps) + ) + (CTL_verifies ps + (implies + ;; If a signal is somehow assigned by this process, + (EF (expr_writes sl1)) + ;; Then it is assigned at every execution of the process. + (AF (expr_writes sl1)) + ) + ) + ) + ) +) |


