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
Given this expression (konm * (h ^ - 1.0) / koffm), parsing it with the ASTNode parser will result in an error for the unary operator.
The following equivalent expression will parse correctly: (konm * (h ^ (0.0 - 1.0)) / koffm)