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
It would be nice to have an official API function to detect if a symbolic is an Initial(X) for some symbolic X. We need this in places to filter out such variables.
I know we can use something like the following to detect and remove them from a vector
functionremove_inits(ps)
filter(x ->!iscall(x) ||!isa(operation(x), Initial), ps)
end
but it would be nice to have an official function in case the internal representation for them changes at some point.
The text was updated successfully, but these errors were encountered:
It would be nice to have an official API function to detect if a symbolic is an
Initial(X)
for some symbolicX
. We need this in places to filter out such variables.I know we can use something like the following to detect and remove them from a vector
but it would be nice to have an official function in case the internal representation for them changes at some point.
The text was updated successfully, but these errors were encountered: