mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-05-07 00:39:38 +02:00
move legacy code to separate branch
This commit is contained in:
parent
68a30c8ee6
commit
11b4c48c3a
3528 changed files with 14477 additions and 53258 deletions
54
Data/Questions/ingsw/0321_8/wrong 1.txt
Normal file
54
Data/Questions/ingsw/0321_8/wrong 1.txt
Normal file
|
@ -0,0 +1,54 @@
|
|||
<pre>
|
||||
connector InputInteger = input Integer;
|
||||
|
||||
connector OutputInteger = output Integer;
|
||||
|
||||
block C1
|
||||
|
||||
InputInteger u;
|
||||
|
||||
OutputInteger x;
|
||||
|
||||
...
|
||||
|
||||
end C1;
|
||||
|
||||
block C2
|
||||
|
||||
InputInteger u;
|
||||
|
||||
OutputInteger x;
|
||||
|
||||
...
|
||||
|
||||
end C2;
|
||||
|
||||
block C3
|
||||
|
||||
InputInteger u;
|
||||
|
||||
OutputInteger x;
|
||||
|
||||
...
|
||||
|
||||
end C3;
|
||||
|
||||
class System
|
||||
|
||||
C1 k1;
|
||||
|
||||
C2 k2;
|
||||
|
||||
C3 k3;
|
||||
|
||||
equation
|
||||
|
||||
connect(k1.x, k1.u);
|
||||
|
||||
connect(k2.x, k2.u);
|
||||
|
||||
connect(k3.x, k3.u);
|
||||
|
||||
end System;
|
||||
|
||||
</pre>
|
Loading…
Add table
Add a link
Reference in a new issue