File: subroutinef.F

package info (click to toggle)
sprng 2.0a-16
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,308 kB
  • sloc: ansic: 30,353; fortran: 1,618; makefile: 575; cpp: 58; sh: 5
file content (47 lines) | stat: -rw-r--r-- 1,082 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
C
C                Demonstrates the use of sprng in subroutines                

       program sprngf
       implicit none

#include "sprng_f.h"

       integer streamnum, nstreams, seed,junk
       SPRNG_POINTER stream
C--- reading in a generator type
       integer gtype
#include "genf_types_menu.h"
       print *,'Type in a generator type (integers: 0,1,2,3,4,5):  '
       read *, gtype
C--- 
       streamnum = 0
       nstreams = 1
       seed = 985456376

C   initialize stream 
       stream = init_sprng(gtype,streamnum,nstreams,seed,SPRNG_DEFAULT)
       print *, 'Printing information about new stream'
       junk = print_sprng(stream)

       call sub1(stream)

       junk = free_sprng(stream)

       end

C --- print random numbers in  subroutine ---
      subroutine sub1(stream)
      
#include "sprng_f.h"
      SPRNG_POINTER stream
      real *8 rn

       print *, 'Printing 3 double precision numbers in [0,1): '
       do 100 i = 1, 3
          rn = sprng(stream)
          write(*, "(i6, 2H   , f19.16)") i, rn
 100   continue

       return 
       end