carray 1.4.0 → 1.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSES +22 -0
  3. data/README.md +18 -14
  4. data/Rakefile +1 -1
  5. data/carray.gemspec +5 -13
  6. data/{ca_iter_block.c → ext/ca_iter_block.c} +13 -13
  7. data/{ca_iter_dimension.c → ext/ca_iter_dimension.c} +16 -16
  8. data/{ca_iter_window.c → ext/ca_iter_window.c} +10 -10
  9. data/{ca_obj_array.c → ext/ca_obj_array.c} +60 -55
  10. data/{ca_obj_bitarray.c → ext/ca_obj_bitarray.c} +12 -12
  11. data/{ca_obj_bitfield.c → ext/ca_obj_bitfield.c} +7 -7
  12. data/{ca_obj_block.c → ext/ca_obj_block.c} +42 -42
  13. data/{ca_obj_fake.c → ext/ca_obj_fake.c} +7 -7
  14. data/{ca_obj_farray.c → ext/ca_obj_farray.c} +18 -18
  15. data/{ca_obj_field.c → ext/ca_obj_field.c} +15 -15
  16. data/{ca_obj_grid.c → ext/ca_obj_grid.c} +27 -27
  17. data/{ca_obj_mapping.c → ext/ca_obj_mapping.c} +9 -9
  18. data/{ca_obj_object.c → ext/ca_obj_object.c} +37 -37
  19. data/{ca_obj_reduce.c → ext/ca_obj_reduce.c} +1 -1
  20. data/{ca_obj_refer.c → ext/ca_obj_refer.c} +33 -33
  21. data/{ca_obj_repeat.c → ext/ca_obj_repeat.c} +43 -43
  22. data/{ca_obj_select.c → ext/ca_obj_select.c} +2 -2
  23. data/{ca_obj_shift.c → ext/ca_obj_shift.c} +23 -23
  24. data/{ca_obj_transpose.c → ext/ca_obj_transpose.c} +23 -23
  25. data/{ca_obj_unbound_repeat.c → ext/ca_obj_unbound_repeat.c} +55 -55
  26. data/{ca_obj_window.c → ext/ca_obj_window.c} +26 -26
  27. data/{carray.h → ext/carray.h} +73 -51
  28. data/{carray_access.c → ext/carray_access.c} +83 -83
  29. data/{carray_attribute.c → ext/carray_attribute.c} +12 -12
  30. data/{carray_call_cfunc.c → ext/carray_call_cfunc.c} +0 -0
  31. data/{carray_cast.c → ext/carray_cast.c} +6 -6
  32. data/{carray_cast_func.rb → ext/carray_cast_func.rb} +0 -0
  33. data/{carray_class.c → ext/carray_class.c} +0 -0
  34. data/{carray_conversion.c → ext/carray_conversion.c} +8 -10
  35. data/{carray_copy.c → ext/carray_copy.c} +19 -19
  36. data/{carray_core.c → ext/carray_core.c} +2 -2
  37. data/ext/carray_data_type.c +66 -0
  38. data/{carray_element.c → ext/carray_element.c} +9 -9
  39. data/{carray_generate.c → ext/carray_generate.c} +0 -0
  40. data/{carray_iterator.c → ext/carray_iterator.c} +40 -38
  41. data/{carray_loop.c → ext/carray_loop.c} +24 -24
  42. data/{carray_mask.c → ext/carray_mask.c} +17 -6
  43. data/{carray_math.rb → ext/carray_math.rb} +3 -3
  44. data/ext/{mathfunc/carray_mathfunc.c → carray_mathfunc.c} +0 -0
  45. data/{carray_numeric.c → ext/carray_numeric.c} +1 -1
  46. data/{carray_operator.c → ext/carray_operator.c} +9 -9
  47. data/{carray_order.c → ext/carray_order.c} +2 -153
  48. data/{carray_sort_addr.c → ext/carray_sort_addr.c} +0 -0
  49. data/{carray_stat.c → ext/carray_stat.c} +5 -5
  50. data/{carray_stat_proc.rb → ext/carray_stat_proc.rb} +23 -23
  51. data/{carray_test.c → ext/carray_test.c} +22 -21
  52. data/{carray_undef.c → ext/carray_undef.c} +0 -0
  53. data/{carray_utils.c → ext/carray_utils.c} +0 -0
  54. data/{extconf.rb → ext/extconf.rb} +0 -5
  55. data/{mkmath.rb → ext/mkmath.rb} +0 -0
  56. data/{ruby_carray.c → ext/ruby_carray.c} +9 -2
  57. data/{ruby_ccomplex.c → ext/ruby_ccomplex.c} +0 -0
  58. data/{ruby_float_func.c → ext/ruby_float_func.c} +0 -0
  59. data/{version.h → ext/version.h} +5 -5
  60. data/{version.rb → ext/version.rb} +0 -0
  61. data/lib/carray.rb +48 -37
  62. data/lib/carray/{base/autoload.rb → autoload.rb} +1 -1
  63. data/lib/carray/autoload/autoload_base.rb +1 -1
  64. data/lib/carray/autoload/autoload_gem_numo_narray.rb +4 -3
  65. data/lib/carray/autoload/autoload_gem_random.rb +8 -0
  66. data/lib/carray/basic.rb +193 -0
  67. data/lib/carray/compose.rb +291 -0
  68. data/lib/carray/construct.rb +445 -0
  69. data/lib/carray/convert.rb +115 -0
  70. data/lib/carray/{base/inspect.rb → inspect.rb} +6 -6
  71. data/lib/carray/io/imagemagick.rb +1 -1
  72. data/lib/carray/{base/iterator.rb → iterator.rb} +3 -3
  73. data/lib/carray/mask.rb +91 -0
  74. data/lib/carray/{base/math.rb → math.rb} +16 -46
  75. data/lib/carray/math/histogram.rb +7 -7
  76. data/lib/carray/mkmf.rb +8 -0
  77. data/lib/carray/object/ca_obj_pack.rb +8 -8
  78. data/lib/carray/obsolete.rb +272 -0
  79. data/lib/carray/ordering.rb +157 -0
  80. data/lib/carray/{base/serialize.rb → serialize.rb} +28 -53
  81. data/lib/carray/{base/string.rb → string.rb} +12 -64
  82. data/lib/carray/{base/struct.rb → struct.rb} +16 -16
  83. data/lib/carray/{io/table.rb → table.rb} +1 -10
  84. data/lib/carray/testing.rb +56 -0
  85. data/lib/carray/time.rb +78 -0
  86. data/lib/carray/transform.rb +100 -0
  87. data/misc/Methods.ja.md +182 -0
  88. data/{NOTE → misc/NOTE} +0 -0
  89. data/test/test_ALL.rb +0 -2
  90. data/test/test_order.rb +7 -7
  91. data/test/test_ref_store.rb +13 -13
  92. data/test/test_stat.rb +7 -15
  93. data/{devel → utils}/guess_shape.rb +0 -0
  94. data/utils/{diff_method.rb → monkey_patch_methods.rb} +17 -7
  95. metadata +88 -151
  96. data/COPYING +0 -56
  97. data/GPL +0 -340
  98. data/LEGAL +0 -50
  99. data/TODO +0 -5
  100. data/carray_random.c +0 -531
  101. data/devel/im2col.rb +0 -17
  102. data/ext/calculus/carray_calculus.c +0 -931
  103. data/ext/calculus/carray_interp.c +0 -358
  104. data/ext/calculus/extconf.rb +0 -12
  105. data/ext/calculus/lib/math/calculus.rb +0 -119
  106. data/ext/calculus/lib/math/interp/adapter_interp1d.rb +0 -31
  107. data/ext/mathfunc/extconf.rb +0 -18
  108. data/ext/mathfunc/test/test_hypot.rb +0 -5
  109. data/ext/mathfunc/test/test_j0.rb +0 -22
  110. data/ext/mathfunc/test/test_jn.rb +0 -8
  111. data/ext/mathfunc/test/test_sph.rb +0 -9
  112. data/lib/carray/autoload/autoload_io_table.rb +0 -1
  113. data/lib/carray/autoload/autoload_math_interp.rb +0 -4
  114. data/lib/carray/base/basic.rb +0 -1146
  115. data/lib/carray/base/obsolete.rb +0 -131
  116. data/lib/carray/math/interp.rb +0 -57
  117. data/lib/carray/math/interp/adapter_gsl_spline.rb +0 -47
  118. data/mt19937ar.c +0 -182
  119. data/mt19937ar.h +0 -86
  120. data/rdoc_main.rb +0 -27
  121. data/rdoc_math.rb +0 -5
  122. data/rdoc_stat.rb +0 -31
  123. data/test/test_narray.rb +0 -64
  124. data/test/test_random.rb +0 -15
  125. data/utils/create_rdoc.sh +0 -9
  126. data/utils/make_tgz.sh +0 -3
@@ -1,131 +0,0 @@
1
-
2
- class CArray
3
-
4
- def fa # :nodoc:
5
- warn "CArray#fa will be obsolete, use CArray#t"
6
- return self.t
7
- end
8
-
9
- def block_iterator (*argv) # :nodoc:
10
- warn "CArray#block_iterator will be obsolete, use CArray#blocks"
11
- return blocks(*argv)
12
- end
13
-
14
- def window_iterator (*argv) # :nodoc:
15
- warn "CArray#window_iterator will be obsolete, use CArray#windows"
16
- return windows(*argv)
17
- end
18
-
19
- def rotated (*argv) # :nodoc:
20
- warn "CArray#rotated will be obsolete, use CArray#rolled"
21
- argv.push({:roll => Array.new(rank){1} })
22
- return shifted(*argv)
23
- end
24
-
25
- def rotate! (*argv) # :nodoc:
26
- warn "CArray#rotate! will be obsolete, use CArray#roll!"
27
- self[] = self.rolled(*argv)
28
- return self
29
- end
30
-
31
- def rotate (*argv) # :nodoc:
32
- warn "CArray#rotate will be obsolete, use CArray#roll"
33
- return self.rolled(*argv).to_ca
34
- end
35
-
36
- def select (&block) # :nodoc:
37
- warn "CArray#select will be obsolete"
38
- case block.arity
39
- when 1
40
- return self[*yield(self)]
41
- when -1, 0
42
- return self[*instance_exec(&block)]
43
- else
44
- raise
45
- end
46
- end
47
-
48
- def transform (type, dim, opt = {}) # :nodoc:
49
- warn("CArray#transform will be obsolete")
50
- return refer(type, dim, opt).to_ca
51
- end
52
-
53
- def classify (klass, outlier = nil) # :nodoc:
54
- warn "CArray#classify will be obsolete"
55
- b = CArray.int32(*dim)
56
- f = CArray.boolean(*dim) { 1 }
57
- attach {
58
- (klass.elements-1).times do |i|
59
- r = f.and(self < klass[i+1])
60
- b[r] = i
61
- f[r] = 0
62
- end
63
- if outlier
64
- b[self < klass[0]] = outlier
65
- b[f] = outlier
66
- else
67
- b[self < klass[0]] = -1
68
- b[f] = klass.elements-1
69
- end
70
- }
71
- return b
72
- end
73
-
74
-
75
- =begin
76
- def histogram (klass)
77
- c = CArray.int32(klass.elements-1)
78
- f = CArray.boolean(*dim) { 1 }
79
- attach {
80
- k = 0
81
- r = f.and(self < klass[0])
82
- f[r] = 0
83
- (klass.elements-1).times do |i|
84
- r = f.and(self < klass[i+1])
85
- c[k] = r.count_true
86
- f[r] = 0
87
- k+=1
88
- end
89
- }
90
- return c
91
- end
92
- =end
93
-
94
- end
95
-
96
- class Numeric
97
-
98
- [
99
- :boolean,
100
- :int8,
101
- :uint8,
102
- :int16,
103
- :uint16,
104
- :int32,
105
- :uint32,
106
- :int64,
107
- :uint64,
108
- :float32,
109
- :float64,
110
- :float128,
111
- :cmplx64,
112
- :cmplx128,
113
- :cmplx256,
114
- :byte,
115
- :short,
116
- :int,
117
- :float,
118
- :double,
119
- :complex,
120
- :dcomplex,
121
- :object
122
- ].each do |name|
123
- class_eval %{
124
- def #{name} ()
125
- warn "Numeric##{name} will be obsolete"
126
- CScalar.new(#{name.inspect}) {self}
127
- end
128
- }
129
- end
130
-
131
- end
@@ -1,57 +0,0 @@
1
- # ----------------------------------------------------------------------------
2
- #
3
- # carray/math/interp.rb
4
- #
5
- # This file is part of Ruby/CArray extension library.
6
- # You can redistribute it and/or modify it under the terms of
7
- # the Ruby Licence.
8
- #
9
- # Copyright (C) 2005 Hiroki Motoyoshi
10
- #
11
- # ----------------------------------------------------------------------------
12
-
13
- require "carray"
14
-
15
- class CA::Interp
16
-
17
- ADAPTERS = {}
18
-
19
- def initialize (type, scales, value, options={})
20
- adapter_class = ADAPTERS[type]
21
- if adapter_class
22
- @type = type
23
- @adapter = adapter_class.new(scales, value, options)
24
- else
25
- raise RuntimeError, "unknown interp adapter <#{type}>"
26
- end
27
- end
28
-
29
- def [] (*args)
30
- return @adapter.evaluate(*args)
31
- end
32
-
33
- def method_missing (id, *args)
34
- return @adapter.send(id, *args)
35
- end
36
-
37
- end
38
-
39
- class CA::Interp::Adapter # :nodoc:
40
-
41
- def self.install_adapter (name)
42
- CA::Interp::ADAPTERS[name] = self
43
- end
44
-
45
- end
46
-
47
- def CA.interp (*argv)
48
- return CA::Interp.new(*argv)
49
- end
50
-
51
- CA.each_load_path("carray/math/interp") {
52
- Dir["adapter_*.rb"].each do |basename|
53
- if basename =~ /\A(adapter_.+)\.rb\Z/
54
- require "carray/math/interp/" + $1
55
- end
56
- end
57
- }
@@ -1,47 +0,0 @@
1
- #
2
- #
3
- #
4
-
5
- #
6
- # :type => type
7
- #
8
- # * "linear"
9
- # * "polynomial"
10
- # * "cspline"
11
- # * "cspline_periodic"
12
- # * "akima"
13
- # * "akima_periodic"
14
- #
15
-
16
- require "carray/math/interp"
17
- begin
18
- require "gsl"
19
- rescue LoadError
20
- end
21
-
22
- class CA::Interp::GSLSpline < CA::Interp::Adapter
23
-
24
- install_adapter "gsl:spline"
25
-
26
- def initialize (scales, value, options={})
27
- @y = value
28
- @x = scales
29
- type = options[:type] || "linear"
30
- CArray.attach(@x, @y) {
31
- @interp = GSL::Spline.alloc(type, @x.na, @y.na)
32
- }
33
- end
34
-
35
- def evaluate (x0)
36
- case x0
37
- when CArray
38
- return x0.attach { @interp.eval(x0.na).ca }
39
- else
40
- return @interp.eval(x0)
41
- end
42
- end
43
-
44
- alias grid evaluate
45
-
46
- end
47
-
@@ -1,182 +0,0 @@
1
- /*
2
- The names of routines in original mt19937ar.c are all prefixed with "ca_"
3
- to avoid collision with ruby's runtime library.
4
- */
5
-
6
- #include "mt19937ar.h"
7
-
8
- /*
9
- A C-program for MT19937, with initialization improved 2002/1/26.
10
- Coded by Takuji Nishimura and Makoto Matsumoto.
11
-
12
- Before using, initialize the state by using init_genrand(seed)
13
- or init_by_array(init_key, key_length).
14
-
15
- Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
16
- All rights reserved.
17
- Copyright (C) 2005, Mutsuo Saito,
18
- All rights reserved.
19
-
20
- Redistribution and use in source and binary forms, with or without
21
- modification, are permitted provided that the following conditions
22
- are met:
23
-
24
- 1. Redistributions of source code must retain the above copyright
25
- notice, this list of conditions and the following disclaimer.
26
-
27
- 2. Redistributions in binary form must reproduce the above copyright
28
- notice, this list of conditions and the following disclaimer in the
29
- documentation and/or other materials provided with the distribution.
30
-
31
- 3. The names of its contributors may not be used to endorse or promote
32
- products derived from this software without specific prior written
33
- permission.
34
-
35
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
36
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
37
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
38
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
39
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
40
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
41
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
42
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
43
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
44
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
45
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
46
-
47
-
48
- Any feedback is very welcome.
49
- http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
50
- email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space)
51
- */
52
-
53
- #include <stdio.h>
54
- #include "mt19937ar.h"
55
-
56
- /* Period parameters */
57
- #define N 624
58
- #define M 397
59
- #define MATRIX_A 0x9908b0dfUL /* constant vector a */
60
- #define UPPER_MASK 0x80000000UL /* most significant w-r bits */
61
- #define LOWER_MASK 0x7fffffffUL /* least significant r bits */
62
-
63
- static unsigned long mt[N]; /* the array for the state vector */
64
- static int mti=N+1; /* mti==N+1 means mt[N] is not initialized */
65
-
66
- /* initializes mt[N] with a seed */
67
- void init_genrand(unsigned long s)
68
- {
69
- mt[0]= s & 0xffffffffUL;
70
- for (mti=1; mti<N; mti++) {
71
- mt[mti] =
72
- (1812433253UL * (mt[mti-1] ^ (mt[mti-1] >> 30)) + mti);
73
- /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
74
- /* In the previous versions, MSBs of the seed affect */
75
- /* only MSBs of the array mt[]. */
76
- /* 2002/01/09 modified by Makoto Matsumoto */
77
- mt[mti] &= 0xffffffffUL;
78
- /* for >32 bit machines */
79
- }
80
- }
81
-
82
- /* initialize by an array with array-length */
83
- /* init_key is the array for initializing keys */
84
- /* key_length is its length */
85
- /* slight change for C++, 2004/2/26 */
86
- void init_by_array(unsigned long init_key[], int key_length)
87
- {
88
- int i, j, k;
89
- init_genrand(19650218UL);
90
- i=1; j=0;
91
- k = (N>key_length ? N : key_length);
92
- for (; k; k--) {
93
- mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1664525UL))
94
- + init_key[j] + j; /* non linear */
95
- mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */
96
- i++; j++;
97
- if (i>=N) { mt[0] = mt[N-1]; i=1; }
98
- if (j>=key_length) j=0;
99
- }
100
- for (k=N-1; k; k--) {
101
- mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1566083941UL))
102
- - i; /* non linear */
103
- mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */
104
- i++;
105
- if (i>=N) { mt[0] = mt[N-1]; i=1; }
106
- }
107
-
108
- mt[0] = 0x80000000UL; /* MSB is 1; assuring non-zero initial array */
109
- }
110
-
111
- /* generates a random number on [0,0xffffffff]-interval */
112
- unsigned long genrand_int32(void)
113
- {
114
- unsigned long y;
115
- static unsigned long mag01[2]={0x0UL, MATRIX_A};
116
- /* mag01[x] = x * MATRIX_A for x=0,1 */
117
-
118
- if (mti >= N) { /* generate N words at one time */
119
- int kk;
120
-
121
- if (mti == N+1) /* if init_genrand() has not been called, */
122
- init_genrand(5489UL); /* a default initial seed is used */
123
-
124
- for (kk=0;kk<N-M;kk++) {
125
- y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK);
126
- mt[kk] = mt[kk+M] ^ (y >> 1) ^ mag01[y & 0x1UL];
127
- }
128
- for (;kk<N-1;kk++) {
129
- y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK);
130
- mt[kk] = mt[kk+(M-N)] ^ (y >> 1) ^ mag01[y & 0x1UL];
131
- }
132
- y = (mt[N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK);
133
- mt[N-1] = mt[M-1] ^ (y >> 1) ^ mag01[y & 0x1UL];
134
-
135
- mti = 0;
136
- }
137
-
138
- y = mt[mti++];
139
-
140
- /* Tempering */
141
- y ^= (y >> 11);
142
- y ^= (y << 7) & 0x9d2c5680UL;
143
- y ^= (y << 15) & 0xefc60000UL;
144
- y ^= (y >> 18);
145
-
146
- return y;
147
- }
148
-
149
- /* generates a random number on [0,0x7fffffff]-interval */
150
- long genrand_int31(void)
151
- {
152
- return (long)(genrand_int32()>>1);
153
- }
154
-
155
- /* generates a random number on [0,1]-real-interval */
156
- double genrand_real1(void)
157
- {
158
- return genrand_int32()*(1.0/4294967295.0);
159
- /* divided by 2^32-1 */
160
- }
161
-
162
- /* generates a random number on [0,1)-real-interval */
163
- double genrand_real2(void)
164
- {
165
- return genrand_int32()*(1.0/4294967296.0);
166
- /* divided by 2^32 */
167
- }
168
-
169
- /* generates a random number on (0,1)-real-interval */
170
- double genrand_real3(void)
171
- {
172
- return (((double)genrand_int32()) + 0.5)*(1.0/4294967296.0);
173
- /* divided by 2^32 */
174
- }
175
-
176
- /* generates a random number on [0,1) with 53-bit resolution*/
177
- double genrand_res53(void)
178
- {
179
- unsigned long a=genrand_int32()>>5, b=genrand_int32()>>6;
180
- return(a*67108864.0+b)*(1.0/9007199254740992.0);
181
- }
182
- /* These real versions are due to Isaku Wada, 2002/01/09 added */
@@ -1,86 +0,0 @@
1
- /*
2
- The names of routines in original mt19937ar.c are all prefixed with "ca_"
3
- to avoid collision with ruby's runtime library.
4
- */
5
-
6
- #define init_genrand ca_init_genrand
7
- #define init_by_array ca_init_by_array
8
- #define genrand_int32 ca_genrand_int32
9
- #define genrand_int31 ca_genrand_int31
10
- #define genrand_real1 ca_genrand_real1
11
- #define genrand_real2 ca_genrand_real2
12
- #define genrand_real3 ca_genrand_real3
13
- #define genrand_res53 ca_genrand_res53
14
-
15
- /*
16
- A C-program for MT19937, with initialization improved 2002/1/26.
17
- Coded by Takuji Nishimura and Makoto Matsumoto.
18
-
19
- Before using, initialize the state by using init_genrand(seed)
20
- or init_by_array(init_key, key_length).
21
-
22
- Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
23
- All rights reserved.
24
- Copyright (C) 2005, Mutsuo Saito
25
- All rights reserved.
26
-
27
- Redistribution and use in source and binary forms, with or without
28
- modification, are permitted provided that the following conditions
29
- are met:
30
-
31
- 1. Redistributions of source code must retain the above copyright
32
- notice, this list of conditions and the following disclaimer.
33
-
34
- 2. Redistributions in binary form must reproduce the above copyright
35
- notice, this list of conditions and the following disclaimer in the
36
- documentation and/or other materials provided with the distribution.
37
-
38
- 3. The names of its contributors may not be used to endorse or promote
39
- products derived from this software without specific prior written
40
- permission.
41
-
42
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
43
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
44
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
45
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
46
- CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
47
- EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
48
- PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
49
- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
50
- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
51
- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
52
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53
-
54
-
55
- Any feedback is very welcome.
56
- http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
57
- email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space)
58
- */
59
-
60
- /* initializes mt[N] with a seed */
61
- void init_genrand(unsigned long s);
62
-
63
- /* initialize by an array with array-length */
64
- /* init_key is the array for initializing keys */
65
- /* key_length is its length */
66
- /* slight change for C++, 2004/2/26 */
67
- void init_by_array(unsigned long init_key[], int key_length);
68
-
69
- /* generates a random number on [0,0xffffffff]-interval */
70
- unsigned long genrand_int32(void);
71
-
72
- /* generates a random number on [0,0x7fffffff]-interval */
73
- long genrand_int31(void);
74
-
75
- /* These real versions are due to Isaku Wada, 2002/01/09 added */
76
- /* generates a random number on [0,1]-real-interval */
77
- double genrand_real1(void);
78
-
79
- /* generates a random number on [0,1)-real-interval */
80
- double genrand_real2(void);
81
-
82
- /* generates a random number on (0,1)-real-interval */
83
- double genrand_real3(void);
84
-
85
- /* generates a random number on [0,1) with 53-bit resolution*/
86
- double genrand_res53(void);