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
that filters out null values produced by getLiteralTimeValue when the STP parameter is target code.
This cannot be simply fixed by inserting the expression verbatim because the value of STP parameter is currently used in compile time to determine the max. A fix could be to move finding the max STP to runtime, but this introduces larger change to the codebase.
The text was updated successfully, but these errors were encountered:
Currently Lingua Franca syntax allows passing target variable as STP:
The above code is currently accepted by
lfc
as valid code, but the generated code isThis is because the function
findMaxSTP()
inFedASTUtils.java
has the following codethat filters out null values produced by
getLiteralTimeValue
when theSTP
parameter is target code.This cannot be simply fixed by inserting the expression verbatim because the value of
STP
parameter is currently used in compile time to determine the max. A fix could be to move finding the max STP to runtime, but this introduces larger change to the codebase.The text was updated successfully, but these errors were encountered: