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
When measures are expanded within an InfiniteModel via expand_all_measures!, any measure inside a derivative is skipped.
model =InfiniteModel()
@infinite_parameter(m, t in [0, 1])
@infinite_parameter(m, x in [0, 1])
@variable(m, y, Infinite(t, x))
@constraint(m, ∂(∫(y, t), x) ==0)
expand_all_measures!(m)