You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
256 B
Fortran
15 lines
256 B
Fortran
19 years ago
|
subroutine psb_setifield(val,field,info,isize,ierr)
|
||
|
integer :: val,field,isize,ierr
|
||
|
integer :: info(*)
|
||
|
|
||
|
ierr = 0
|
||
|
|
||
|
if ((field < 1).or.(field > isize)) then
|
||
|
ierr = -1
|
||
|
return
|
||
|
endif
|
||
|
|
||
|
info(field) = val
|
||
|
return
|
||
|
end subroutine psb_setifield
|