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
The arguments of set_inductance!(c::Circuit, v0, v1, value) and related methods have an unfortunate ordering. Consider that for arrays, the syntax A[inds...] = X is lowered to setindex!(A, X, inds...), i.e. the set value precedes the indices.
The text was updated successfully, but these errors were encountered:
The arguments of
set_inductance!(c::Circuit, v0, v1, value)
and related methods have an unfortunate ordering. Consider that for arrays, the syntaxA[inds...] = X
is lowered tosetindex!(A, X, inds...)
, i.e. the set value precedes the indices.The text was updated successfully, but these errors were encountered: