Statistics
| Branch: | Revision:

root / synthbench / euroben-dm / mod2as / .svn / text-base / ranfil.f.svn-base @ 0:839f52ef7657

History | View | Annotate | Download (497 Bytes)

1
      Subroutine ranfil( a, n )
2
! ----------------------------------------------------------------------
3
      Use         numerics
4
      Implicit    None
5

    
6
      Integer  :: n
7
      Real(l_) :: a(n)
8

    
9
      Integer  :: i
10
      Real(l_) :: dran0
11
      External    dran0
12
! ----------------------------------------------------------------------
13
      Do i = 1, n
14
         a(i) = dran0()
15
      End Do
16
! ----------------------------------------------------------------------
17
      End Subroutine ranfil