From 3f547530fb488391f863e895c8d867bd3b7b16ab Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Tue, 6 Jun 2023 04:06:54 +0200 Subject: [PATCH] fix precompilation --- Project.toml | 2 +- src/factorization.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index a57b76f79..f23034e31 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "LinearSolve" uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae" authors = ["SciML"] -version = "2.1.10" +version = "2.1.11" [deps] ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9" diff --git a/src/factorization.jl b/src/factorization.jl index 1b4ffd6c6..11e69b24c 100644 --- a/src/factorization.jl +++ b/src/factorization.jl @@ -844,7 +844,7 @@ function init_cacheval(alg::CHOLMODFactorization, nothing end -function init_cacheval(alg::CHOLMODFactorization, A, b, u, +function init_cacheval(alg::CHOLMODFactorization, A::SparseMatrixCSC{Float64, Int}, b, u, Pl, Pr, maxiters::Int, abstol, reltol, verbose::Bool, assumptions::OperatorAssumptions)