Skip to content

Commit 28d5b79

Browse files
committed
fix bound
1 parent 5075ce9 commit 28d5b79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/factorization.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ function init_cacheval(alg::UMFPACKFactorization, A, b, u, Pl, Pr, maxiters::Int
274274
verbose::Bool, assumptions::OperatorAssumptions)
275275
A = convert(AbstractMatrix, A)
276276
zerobased = SparseArrays.getcolptr(A)[1] == 0
277-
@static if VERSION < v"1.9"
277+
@static if VERSION < v"1.9.0-DEV.1622"
278278
return SuiteSparse.UMFPACK.UmfpackLU(C_NULL, C_NULL, size(A, 1), size(A, 2),
279279
zerobased ? copy(SparseArrays.getcolptr(A)) :
280280
SuiteSparse.decrement(SparseArrays.getcolptr(A)),

0 commit comments

Comments
 (0)