Skip to content

Commit f1a73e1

Browse files
jalveszjvdp1
andauthored
Update example/linalg/example_solve_custom.f90
Co-authored-by: Jeremie Vandenplas <[email protected]>
1 parent 97e9a45 commit f1a73e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/linalg/example_solve_custom.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ subroutine solve_pcg_custom(A,b,x,di,tol,maxiter,restart,workspace)
2323
integer :: n, maxiter_
2424
real(dp) :: tol_
2525
logical :: restart_
26-
logical(1), pointer :: di_(:)
26+
logical(int8), pointer :: di_(:)
2727
real(dp), allocatable :: diagonal(:)
2828
real(dp) :: norm_sq0
2929
!-------------------------

0 commit comments

Comments
 (0)