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
# Converts expressions like mm(X,v,K) to v*X/(X+K).
1415
+
expand_functions &&for eq in eqs
1416
+
eq.rhs =expand_registered_functions!(eq.rhs)
1417
+
end
1418
+
1403
1419
ifany(isbc, get_states(flatrs))
1404
1420
@info"Boundary condition species detected. As constraint equations are not currently supported when converting to SDESystems, the resulting system will be undetermined. Consider using constant species instead."
Takes an expression, and expands registered function expressions. E.g. `mm(X,v,K)` is replaced with v*X/(X+K). Currently supported functions: `mm`, `mmr`, `hill`, `hillr`, and `hill`.
0 commit comments