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
Thanks for this package. I stumbled across a corner case that should be easy to handle. If all entries in the matrix are missing, then hungarian throws an error:
julia> A
3×3 Matrix{Union{Missing, Int64}}:
missing missing missing
missing missing missing
missing missing missing
julia> hungarian(A)
ERROR: MethodError: reducing over an empty collection is not allowed; consider supplying `init` to the reducer
The text was updated successfully, but these errors were encountered:
Thanks for this package. I stumbled across a corner case that should be easy to handle. If all entries in the matrix are
missing
, thenhungarian
throws an error:The text was updated successfully, but these errors were encountered: