mirror of
https://github.com/appinfosapienza/so-un-bot.git
synced 2025-05-06 21:59:36 +02:00
Refactor repo structure
This commit is contained in:
parent
36ac339086
commit
8fc89fbc03
1732 changed files with 3812 additions and 67 deletions
40
Data/Questions/ingsw/0321_16/wrong 1.txt
Normal file
40
Data/Questions/ingsw/0321_16/wrong 1.txt
Normal file
|
@ -0,0 +1,40 @@
|
|||
<pre>
|
||||
connector InputInteger = input Integer;
|
||||
|
||||
connector OutputInteger = output Integer;
|
||||
|
||||
block Controller
|
||||
|
||||
InputInteger x;
|
||||
|
||||
OutputInteger Integer w;
|
||||
|
||||
...
|
||||
|
||||
end Controller;
|
||||
|
||||
block Plant
|
||||
|
||||
InputInteger u;
|
||||
|
||||
OutputInteger y;
|
||||
|
||||
...
|
||||
|
||||
end Plant;
|
||||
|
||||
class System
|
||||
|
||||
Controller k;
|
||||
|
||||
Plant p;
|
||||
|
||||
equation
|
||||
|
||||
connect(p.y, p.u);
|
||||
|
||||
connect(k.w, k.u);
|
||||
|
||||
end System;
|
||||
|
||||
</pre>
|
Loading…
Add table
Add a link
Reference in a new issue