You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to fix #8, MARCO should be able to handle models such as this one:
model Mrecord RReal x;
Real y;
end R;
R r(x(start =1), y(start =2));
R[2] rv(x(start =fill(1,2)), y(start =fill(2,2)));
equation
r = R(0,0);
for i in 1:2loop
rv[i] = R(0,0);
end for;
end M;
The text was updated successfully, but these errors were encountered:
In order to fix #8, MARCO should be able to handle models such as this one:
The text was updated successfully, but these errors were encountered: