LinearSolve.jl icon indicating copy to clipboard operation
LinearSolve.jl copied to clipboard

Better initialization for most factorizations

Open ChrisRackauckas opened this issue 2 years ago • 0 comments

LU factorizations use lu_instance, but the other factorizations do not init a cache. This means that blank A, such as a just initialized Jacobian, can call the factorization which costs an extra factorization and can be singular due to having blank values.

The fix might be https://github.com/SciML/LinearSolve.jl/issues/61

ChrisRackauckas avatar Dec 17 '21 21:12 ChrisRackauckas