move legacy code to separate branch

This commit is contained in:
Marco Realacci 2025-01-17 21:06:51 +01:00
parent 68a30c8ee6
commit 11b4c48c3a
3528 changed files with 14477 additions and 53258 deletions

View file

@ -0,0 +1 @@
Ad ogni istante di tempo della forma 1 + 4*k (k = 0, 1, 2, 3, ...), x vale "true".

View file

@ -0,0 +1,13 @@
Si consideri il seguente modello Modelica.
<html>
class System
Boolean x;
initial equation
x = false;
equation
when sample(0, 2) then
x = not (pre(x));
end when;
end System;
</html>
Quale delle seguenti affermazioni vale per la variabile booleana x ?

View file

@ -0,0 +1 @@
At time instants of form 1 + 4*k (with k = 0, 1, 2, 3, ...) x takes value "false".

View file

@ -0,0 +1 @@
Ad ogni istante di tempo della forma 3 + 4*k (k = 0, 1, 2, 3, ...), x vale "true".