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
{{ message }}
This repository was archived by the owner on May 12, 2026. It is now read-only.
I'm not sure if this is intended or not, but it appears that the existing DEDataArray factorization overloads cause type ambiguity errors for stiff solvers, e.g:
causes a type ambiguity error with the the LU factorization methods in LinearAlgebra because DEDataArray is more specific than AbstractArray but Factorization is less specific than LU.
This forces the user to define their own more specific method to resolve the ambiguity, which kind of seems to nullify the point of providing this method in the first place...?
Shouldn't these functions "just work" without these ambiguous overloads since DEDataArray is already an AbstractArray?
I'm not sure if this is intended or not, but it appears that the existing
DEDataArrayfactorization overloads cause type ambiguity errors for stiff solvers, e.g:causes a type ambiguity error with the the
LUfactorization methods inLinearAlgebrabecauseDEDataArrayis more specific thanAbstractArraybutFactorizationis less specific thanLU.This forces the user to define their own more specific method to resolve the ambiguity, which kind of seems to nullify the point of providing this method in the first place...?
Shouldn't these functions "just work" without these ambiguous overloads since
DEDataArrayis already anAbstractArray?