Routine that chooses an integrator by pointing to one of the available ones.
subroutine choose_integrator ( )
!! Routine that chooses an integrator by pointing to one of the
!! available ones.
use parameters, only : mol_integrator
implicit none
select case ( mol_integrator )
case ( 'rk4' )
mol_int => rk4_int
case ( 'rk5' )
mol_int => rk5_int
case ( 'abmv5' )
mol_int => abmv5_int
case default
print*,'Invalid integrator requested'
stop
end select
end subroutine choose_integrator