Skip to content

Commit 28f1781

Browse files
committed
__issquare fix in LinearSolveHYPRE
1 parent 16b76e9 commit 28f1781

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/LinearSolveHYPRE.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ using HYPRE.LibHYPRE: HYPRE_Complex
44
using HYPRE: HYPRE, HYPREMatrix, HYPRESolver, HYPREVector
55
using IterativeSolvers: Identity
66
using LinearSolve: HYPREAlgorithm, LinearCache, LinearProblem, LinearSolve,
7-
OperatorAssumptions, default_tol, init_cacheval, issquare, set_cacheval
7+
OperatorAssumptions, default_tol, init_cacheval, __issquare, set_cacheval
88
using SciMLBase: LinearProblem, SciMLBase
99
using UnPack: @unpack
1010
using Setfield: @set!
@@ -82,7 +82,7 @@ function SciMLBase.init(prob::LinearProblem, alg::HYPREAlgorithm,
8282

8383
cache = LinearCache{
8484
typeof(A), typeof(b), typeof(u0), typeof(p), typeof(alg), Tc,
85-
typeof(Pl), typeof(Pr), typeof(reltol), issquare(assumptions)
85+
typeof(Pl), typeof(Pr), typeof(reltol), __issquare(assumptions)
8686
}(A, b, u0, p, alg, cacheval, isfresh, Pl, Pr, abstol, reltol,
8787
maxiters,
8888
verbose, assumptions)

0 commit comments

Comments
 (0)