so-un-bot/Data/Questions/ingsw/1122_31/wrong 1.txt

19 lines
251 B
Text
Raw Normal View History

2022-11-06 17:27:39 +01:00
<pre>
class Monitor
InputReal x; // plant output
OutputBoolean y;
Boolean z;
initial equation
y = false;
equation
z = (time > 20) and (x >= 20) and (x <= 30) ;
algorithm
when edge(z) then
y := true;
end when;
end Monitor;
2022-11-02 09:13:43 +01:00
</pre>