summaryrefslogtreecommitdiff
blob: 2aae4a420bac71cc38101430fad08ec1a8638a47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(tag_existing
   (
      (clock port LIKELY_A_CLOCK)
   )
   (exists wf waveform
      (and
         (is_waveform_of wf clock)
         (exists ps process
            (CTL_verifies ps
               (EF
                  (and
                     (kind "if")
                     (is_read_structure "(??)")
                     (or
                        (is_read_element "0" "rising_edge")
                        (is_read_element "0" "falling_edge")
                     )
                     (is_read_element "1" wf)
                  )
               )
            )
         )
      )
   )
)