flexiblesusy is hosted by Hepforge, IPPP Durham
FlexibleSUSY
fortran_utils.f
Go to the documentation of this file.
1 subroutine zero_double_array(x,n)
2 integer n
3 double precision x(n)
4
5 integer i
6
7 do i = 1, n
8 x(i) = 0d0
9 end do
10 end subroutine
subroutine zero_double_array(x, n)
Definition: fortran_utils.f:2