Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | k | |||
real(kind=wp), | intent(in) | :: | rr | |||
real(kind=wp), | intent(in) | :: | tol | |||
character(len=*), | intent(in) | :: | nm |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module.
subroutine solverProgress(k,rr,tol,nm)
integer,intent(in)::k
real(wp),intent(in)::rr
real(wp),intent(in)::tol
character(*),intent(in)::nm
real(wp)::progress
select case(SO_TYPE)
case(SO_QUIET)
case(SO_SIMPLE)
write(*,*) k,rr
case(SO_FANCY)
progress = log( rr )/log(tol)
call showProgress(nm,progress)
end select
end subroutine solverProgress