so-un-bot/Data/Questions/ingsw/0324_46/wrong2.txt

17 lines
No EOL
248 B
Text

<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;
</pre>