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
@assertall(SymbolicIndexingInterface.is_observed.((new_container, ), basis) .| SymbolicIndexingInterface.is_variable.((new_container, ), basis)) "All basis symbols must be observed in the new system"
8
+
@assertall(b ∈names(reference) for b in reference_basis) "The reference basis must be a subset of the columns in the reference data"
9
+
if new_sol.dense
10
+
foldl(red, cmp(row[:timestamp], new_sol(row[:timestamp], idxs=basis), row[reference_basis]) for row ineachrow(reference); init=isnothing(init) ?nothing:init(basis))
11
+
else
12
+
foldl(red, cmp(row[:timestamp], new_sol[row[:timestamp], basis], row[reference_basis]) for row ineachrow(reference); init=isnothing(init) ?nothing:init(basis))
0 commit comments