Skip to content

Commit 97e9a45

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

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
@@ -12,7 +12,7 @@ subroutine solve_pcg_custom(A,b,x,di,tol,maxiter,restart,workspace)
1212
real(dp), intent(in) :: b(:)
1313
real(dp), intent(inout) :: x(:)
1414
real(dp), intent(in), optional :: tol
15-
logical(1), intent(in), optional, target :: di(:)
15+
logical(int8), intent(in), optional, target :: di(:)
1616
integer, intent(in), optional :: maxiter
1717
logical, intent(in), optional :: restart
1818
type(solver_workspace_dp_type), optional, intent(inout), target :: workspace

0 commit comments

Comments
 (0)