so-un-bot/legacy/Data/ingsw/1122_31/wrong 2.txt

19 lines
252 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) or ((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>