property = WhenRising(condition=..., check=...).y;
At the time instants where condition has a rising edge, property is set to "BooleanToProperty(check)" (so either Satisfied or Violated) and keeps this value until the next rising edge. Before the first rising edge, property = Undecided. If condition = true during initialization, property = toProperty(check) at initialization.
Violated, Undecided, and Satisfied are elements of enumeration Property.
The property is demonstrated with the following example:
results in
simulation result |