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
Right now == for generic character (aka character types) is the default Julia one, i.e. using identity ===. This may confuse some users. I think it would be better if this threw a helpful error message.
Even better would be a "proper" equality test, but this might be non-trivial. E.g. arguably these two are equal, but deciding this requires a non-identity re-mapping of the parameters
julia> x = linear_combination([2,1], [T[4],T[4]])
julia> y = linear_combination([1,2], [T[4],T[4]])