1
- libdsfmt = dlopen (" libdSFMT" )
1
+ libmt = dlopen (" libMT" )
2
+
3
+ randomize () = ccall (dlsym (libmt, : randomize), Void, ())
4
+
5
+ function mt_init ()
6
+ randomize()
7
+ dsfmt_init()
8
+ end
2
9
3
10
DSFMT_MEXP = int32(19937)
4
11
DSFMT_STATE = Array(Int32, 1000)
@@ -7,12 +14,12 @@ DSFMT_POOL_SIZE = 4096
7
14
DSFMT_POOL = Array(Float64, DSFMT_POOL_SIZE)
8
15
DSFMT_POOL_PTR = DSFMT_POOL_SIZE
9
16
10
- dsfmt_init () = ccall (dlsym (libdsfmt , : dsfmt_chk_init_gen_rand),
17
+ dsfmt_init() = ccall(dlsym(libmt , :dsfmt_chk_init_gen_rand),
11
18
Void, (Ptr{Void}, Uint32, Int32),
12
19
DSFMT_STATE , uint32 (0 ), DSFMT_MEXP )
13
20
14
21
dsfmt_fill_array_open_open (A :: Array {Float64}, n:: Size) =
15
- ccall (dlsym (libdsfmt , : dsfmt_fill_array_open_open),
22
+ ccall (dlsym (libmt , : dsfmt_fill_array_open_open),
16
23
Void, (Ptr{Void}, Ptr{Float64}, Int32),
17
24
DSFMT_STATE , A , n)
18
25
63
70
randint(n::Int) = randint(one(n), n)
64
71
65
72
# Floating point random numbers
66
- rand() = ccall(:rand_double, Float64, ())
67
- randf() = ccall(:rand_float, Float32, ())
68
- randui32() = ccall(:genrand_int32, Uint32, ())
69
- randn() = ccall(:randn, Float64, ())
70
- srand(s::Union(Int32,Uint32)) = ccall(:randomseed32, Void, (Uint32,), uint32(s))
71
- srand(s::Union(Int64,Uint64)) = ccall(:randomseed64, Void, (Uint64,), uint64(s))
73
+ rand() = ccall(dlsym(libmt, :rand_double) , Float64, ())
74
+ randf() = ccall(dlsym(libmt, :rand_float) , Float32, ())
75
+ randui32() = ccall(dlsym(libmt, :genrand_int32) , Uint32, ())
76
+ randn() = ccall(dlsym(libmt, :randn) , Float64, ())
77
+ srand(s::Union(Int32,Uint32)) = ccall(dlsym(libmt, :randomseed32) , Void, (Uint32,), uint32(s))
78
+ srand(s::Union(Int64,Uint64)) = ccall(dlsym(libmt, :randomseed64) , Void, (Uint64,), uint64(s))
72
79
73
80
# Arrays of random numbers
74
81
macro rand_matrix_builder(t, f)
0 commit comments