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
There is a multiplier in the code, and one of its parameters is:
defparam \mult_mac .coef_a_0 = -1053;
When reading in this code, the following error occurs:
ERROR: Parameter mult_mac.coef_a_0 with non-constant value!
The direct reason for this is that the parameter's type is AST_NEG, which triggers the error. The parameter's child type is AST_CONSTANT.
How can this issue be resolved?
Thanks!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
There is a multiplier in the code, and one of its parameters is:
defparam \mult_mac .coef_a_0 = -1053;
When reading in this code, the following error occurs:
ERROR: Parameter mult_mac.coef_a_0 with non-constant value!
The direct reason for this is that the parameter's type is AST_NEG, which triggers the error. The parameter's child type is AST_CONSTANT.
How can this issue be resolved?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions