EVOLUTION: Replace explicit calls to get_parameter_*() with unified one.
Signed-off-by: Grzegorz Kowal <grzegorz@amuncode.org>
This commit is contained in:
parent
927642bf3e
commit
a853f0b700
@ -116,8 +116,7 @@ module evolution
|
||||
|
||||
! include external procedures
|
||||
!
|
||||
use parameters, only : get_parameter_string, get_parameter_real &
|
||||
, get_parameter_integer
|
||||
use parameters, only : get_parameter
|
||||
|
||||
! local variables are not implicit by default
|
||||
!
|
||||
@ -153,10 +152,10 @@ module evolution
|
||||
|
||||
! get the integration method and the value of the CFL coefficient
|
||||
!
|
||||
call get_parameter_string ("time_advance", integration)
|
||||
call get_parameter_integer("stages" , stages )
|
||||
call get_parameter_real ("cfl" , cfl )
|
||||
call get_parameter_real ("alpha" , alpha )
|
||||
call get_parameter("time_advance", integration)
|
||||
call get_parameter("stages" , stages )
|
||||
call get_parameter("cfl" , cfl )
|
||||
call get_parameter("alpha" , alpha )
|
||||
|
||||
! select the integration method, check the correctness of the integration
|
||||
! parameters and adjust the CFL coefficient if necessary
|
||||
|
Loading…
x
Reference in New Issue
Block a user