We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24821e0 commit 219637aCopy full SHA for 219637a
example/linalg/example_solve_custom.f90
@@ -53,7 +53,7 @@ subroutine solve_pcg_custom(A,b,x,di,tol,maxiter,restart,workspace)
53
!-------------------------
54
! Jacobi preconditioner factorization
55
call diag(A,diagonal)
56
- where(abs(diagonal)>epsilon(0.d0)) diagonal = 1._dp/diagonal
+ where(abs(diagonal)>epsilon(0._dp)) diagonal = 1._dp/diagonal
57
58
! main call to the solver
59
call solve_pcg_kernel(op,M,b,x,tol_,maxiter_,workspace_)
0 commit comments