@@ -59,7 +59,7 @@ parameter_index(indp, sym) = parameter_index(symbolic_container(indp), sym)
5959Check whether the given `sym` is a timeseries parameter in `indp`.
6060"""
6161function is_timeseries_parameter (indp, sym)
62- if hasmethod (symbolic_container, Tuple{typeof (indp)}) && (sc = symbolic_container (indp)) != = indp
62+ if hasmethod (symbolic_container, Tuple{typeof (indp)}) && (sc = symbolic_container (indp)) != indp
6363 is_timeseries_parameter (sc, sym)
6464 else
6565 return false
@@ -91,7 +91,7 @@ parameter in `indp`. Defaults to returning `nothing`. Respects the
9191[`symbolic_container`](@ref) fallback for `indp` if present.
9292"""
9393function timeseries_parameter_index (indp, sym)
94- if hasmethod (symbolic_container, Tuple{typeof (indp)}) && (sc = symbolic_container (indp)) != = indp
94+ if hasmethod (symbolic_container, Tuple{typeof (indp)}) && (sc = symbolic_container (indp)) != indp
9595 timeseries_parameter_index (symbolic_container (indp), sym)
9696 else
9797 return nothing
@@ -111,7 +111,7 @@ By default, this function returns `nothing`, indicating that the index provider
111111support generating parameter observed functions.
112112"""
113113function parameter_observed (indp, sym)
114- if hasmethod (symbolic_container, Tuple{typeof (indp)}) && (sc = symbolic_container (indp)) != = indp
114+ if hasmethod (symbolic_container, Tuple{typeof (indp)}) && (sc = symbolic_container (indp)) != indp
115115 return parameter_observed (symbolic_container (indp), sym)
116116 else
117117 return nothing
@@ -143,7 +143,7 @@ variable.
143143By default, this function returns `Set([ContinuousTimeseries()])`.
144144"""
145145function get_all_timeseries_indexes (indp, sym)
146- if hasmethod (symbolic_container, Tuple{typeof (indp)}) && (sc = symbolic_container (indp)) != = indp
146+ if hasmethod (symbolic_container, Tuple{typeof (indp)}) && (sc = symbolic_container (indp)) != indp
147147 return get_all_timeseries_indexes (symbolic_container (indp), sym)
148148 else
149149 return Set ([ContinuousTimeseries ()])
@@ -240,7 +240,7 @@ Return a dictionary mapping symbols in the index provider to their default value
240240This includes parameter symbols. The dictionary must be mutable.
241241"""
242242function default_values (indp)
243- if hasmethod (symbolic_container, Tuple{typeof (indp)}) && (sc = symbolic_container (indp)) != = indp
243+ if hasmethod (symbolic_container, Tuple{typeof (indp)}) && (sc = symbolic_container (indp)) != indp
244244 default_values (symbolic_container (indp))
245245 else
246246 Dict ()
0 commit comments