From c466c241ce6fef0c7ee938224e78fcc62b3bc171 Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Fri, 27 Sep 2024 14:33:22 -0400 Subject: [PATCH] fix: typo --- src/internal/linear_solve.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/linear_solve.jl b/src/internal/linear_solve.jl index 3e7a191ae..a0c1ba664 100644 --- a/src/internal/linear_solve.jl +++ b/src/internal/linear_solve.jl @@ -237,7 +237,7 @@ function __set_lincache_A(lincache, new_A) end function __wrapprecs(_Pl, _Pr, u) - Pl = _Pl !== nothing ?= _Pl : IdentityOperator(length(u)) + Pl = _Pl !== nothing ? _Pl : IdentityOperator(length(u)) Pr = _Pr !== nothing ? _Pr : IdentityOperator(length(u)) return Pl, Pr end