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
Importing this package completely breaks LinearAlgebra.I and all code that makes use of it:
julia>using LinearAlgebra
julia>I(2)
2×2 Diagonal{Bool, Vector{Bool}}:1⋅⋅1
julia>import ReachabilityAnalysis as RA
julia>I(2)
MathematicalSystems.IdentityMultiple{Float64} of value 1.0 and order 2
Notice that the code above does not import any names from ReachabilityAnalysis, still the I was overridden. Importing this packages thus breaks all code in every package that uses LinearAlgebra.I.
Tested with ReachabilityAnalysis v0.18.7
The text was updated successfully, but these errors were encountered:
Importing this package completely breaks
LinearAlgebra.I
and all code that makes use of it:Notice that the code above does not import any names from ReachabilityAnalysis, still the
I
was overridden. Importing this packages thus breaks all code in every package that usesLinearAlgebra.I
.Tested with ReachabilityAnalysis v0.18.7
The text was updated successfully, but these errors were encountered: