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 the instant control stractures we can not use a-rates. So we force all the components to become k-rate. But conversion is pure and can be placed anywhere (in theory). but in practice it have to be placed before instant controls like:
if (smth happens) then
...
else
...
endif
Sometimes in the generated code a2k-rate conversions leak in the branches.
if (smth happens) then
...
kr11 = ar12
....
else
...
endif
They should be rendered before the if-statement
The text was updated successfully, but these errors were encountered:
In the instant control stractures we can not use a-rates. So we force all the components to become k-rate. But conversion is pure and can be placed anywhere (in theory). but in practice it have to be placed before instant controls like:
Sometimes in the generated code a2k-rate conversions leak in the branches.
They should be rendered before the
if
-statementThe text was updated successfully, but these errors were encountered: