so-un-bot/Data/Questions/ingsw/0321_30/wrong 2.txt

25 lines
No EOL
206 B
Text

<pre>
class System
Real x; // MB in buffer
Real u; // input pulse
initial equation
x = 3;
u = 0;
equation
when sample(0, 1) then
u = 1 - pre(u);
end when;
der(x) = 2*u + 1.0;
end System;
</pre>