carray 1.4.0 → 1.5.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +32 -0
  3. data/LICENSE +22 -0
  4. data/NEWS.md +83 -0
  5. data/README.md +38 -18
  6. data/Rakefile +2 -2
  7. data/TODO.md +17 -0
  8. data/carray.gemspec +13 -18
  9. data/{ca_iter_block.c → ext/ca_iter_block.c} +16 -18
  10. data/{ca_iter_dimension.c → ext/ca_iter_dimension.c} +20 -21
  11. data/{ca_iter_window.c → ext/ca_iter_window.c} +12 -14
  12. data/{ca_obj_array.c → ext/ca_obj_array.c} +451 -176
  13. data/{ca_obj_bitarray.c → ext/ca_obj_bitarray.c} +18 -23
  14. data/{ca_obj_bitfield.c → ext/ca_obj_bitfield.c} +12 -16
  15. data/{ca_obj_block.c → ext/ca_obj_block.c} +47 -54
  16. data/{ca_obj_fake.c → ext/ca_obj_fake.c} +10 -12
  17. data/{ca_obj_farray.c → ext/ca_obj_farray.c} +21 -23
  18. data/{ca_obj_field.c → ext/ca_obj_field.c} +30 -32
  19. data/{ca_obj_grid.c → ext/ca_obj_grid.c} +32 -33
  20. data/{ca_obj_mapping.c → ext/ca_obj_mapping.c} +11 -13
  21. data/{ca_obj_object.c → ext/ca_obj_object.c} +40 -42
  22. data/{ca_obj_reduce.c → ext/ca_obj_reduce.c} +3 -5
  23. data/{ca_obj_refer.c → ext/ca_obj_refer.c} +44 -48
  24. data/{ca_obj_repeat.c → ext/ca_obj_repeat.c} +45 -47
  25. data/{ca_obj_select.c → ext/ca_obj_select.c} +4 -6
  26. data/{ca_obj_shift.c → ext/ca_obj_shift.c} +26 -28
  27. data/{ca_obj_transpose.c → ext/ca_obj_transpose.c} +26 -28
  28. data/{ca_obj_unbound_repeat.c → ext/ca_obj_unbound_repeat.c} +106 -160
  29. data/{ca_obj_window.c → ext/ca_obj_window.c} +33 -35
  30. data/{carray.h → ext/carray.h} +86 -59
  31. data/{carray_access.c → ext/carray_access.c} +194 -101
  32. data/{carray_attribute.c → ext/carray_attribute.c} +161 -207
  33. data/{carray_call_cfunc.c → ext/carray_call_cfunc.c} +1 -3
  34. data/{carray_cast.c → ext/carray_cast.c} +351 -150
  35. data/{carray_cast_func.rb → ext/carray_cast_func.rb} +1 -2
  36. data/{carray_class.c → ext/carray_class.c} +28 -36
  37. data/{carray_conversion.c → ext/carray_conversion.c} +63 -68
  38. data/{carray_copy.c → ext/carray_copy.c} +34 -50
  39. data/{carray_core.c → ext/carray_core.c} +75 -62
  40. data/ext/carray_data_type.c +66 -0
  41. data/{carray_element.c → ext/carray_element.c} +34 -53
  42. data/{carray_generate.c → ext/carray_generate.c} +71 -50
  43. data/{carray_iterator.c → ext/carray_iterator.c} +53 -53
  44. data/{carray_loop.c → ext/carray_loop.c} +77 -106
  45. data/{carray_mask.c → ext/carray_mask.c} +105 -114
  46. data/{carray_math.rb → ext/carray_math.rb} +29 -13
  47. data/ext/{mathfunc/carray_mathfunc.c → carray_mathfunc.c} +1 -3
  48. data/{carray_numeric.c → ext/carray_numeric.c} +43 -46
  49. data/{carray_operator.c → ext/carray_operator.c} +49 -36
  50. data/{carray_order.c → ext/carray_order.c} +232 -217
  51. data/{carray_sort_addr.c → ext/carray_sort_addr.c} +14 -21
  52. data/{carray_stat.c → ext/carray_stat.c} +6 -8
  53. data/{carray_stat_proc.rb → ext/carray_stat_proc.rb} +25 -27
  54. data/{carray_test.c → ext/carray_test.c} +63 -51
  55. data/{carray_undef.c → ext/carray_undef.c} +1 -11
  56. data/{carray_utils.c → ext/carray_utils.c} +12 -4
  57. data/{extconf.rb → ext/extconf.rb} +10 -7
  58. data/{mkmath.rb → ext/mkmath.rb} +2 -2
  59. data/{ruby_carray.c → ext/ruby_carray.c} +20 -8
  60. data/{ruby_ccomplex.c → ext/ruby_ccomplex.c} +2 -4
  61. data/{ruby_float_func.c → ext/ruby_float_func.c} +1 -3
  62. data/ext/version.h +16 -0
  63. data/{version.rb → ext/version.rb} +0 -0
  64. data/lib/carray.rb +51 -40
  65. data/lib/carray/{base/autoload.rb → autoload.rb} +1 -3
  66. data/lib/carray/autoload/autoload_base.rb +1 -1
  67. data/lib/carray/autoload/autoload_gem_numo_narray.rb +7 -6
  68. data/lib/carray/autoload/autoload_gem_random.rb +8 -0
  69. data/lib/carray/basic.rb +191 -0
  70. data/lib/carray/broadcast.rb +101 -0
  71. data/lib/carray/compose.rb +315 -0
  72. data/lib/carray/construct.rb +484 -0
  73. data/lib/carray/convert.rb +115 -0
  74. data/lib/carray/info.rb +1 -3
  75. data/lib/carray/{base/inspect.rb → inspect.rb} +9 -11
  76. data/lib/carray/io/imagemagick.rb +2 -4
  77. data/lib/carray/{base/iterator.rb → iterator.rb} +6 -6
  78. data/lib/carray/mask.rb +102 -0
  79. data/lib/carray/{base/math.rb → math.rb} +20 -52
  80. data/lib/carray/math/histogram.rb +8 -10
  81. data/lib/carray/math/recurrence.rb +1 -3
  82. data/lib/carray/mkmf.rb +9 -3
  83. data/lib/carray/object/ca_obj_iterator.rb +1 -3
  84. data/lib/carray/object/ca_obj_link.rb +1 -3
  85. data/lib/carray/object/ca_obj_pack.rb +9 -11
  86. data/lib/carray/obsolete.rb +256 -0
  87. data/lib/carray/ordering.rb +181 -0
  88. data/lib/carray/{base/serialize.rb → serialize.rb} +60 -76
  89. data/lib/carray/{base/string.rb → string.rb} +10 -64
  90. data/lib/carray/{base/struct.rb → struct.rb} +19 -21
  91. data/lib/carray/{io/table.rb → table.rb} +1 -10
  92. data/lib/carray/testing.rb +51 -0
  93. data/lib/carray/time.rb +76 -0
  94. data/lib/carray/transform.rb +109 -0
  95. data/misc/Methods.ja.md +182 -0
  96. data/{NOTE → misc/NOTE} +16 -38
  97. data/spec/Classes/CABitfield_spec.rb +58 -0
  98. data/spec/Classes/CABlockIterator_spec.rb +114 -0
  99. data/spec/Classes/CABlock_spec.rb +205 -0
  100. data/spec/Classes/CAField_spec.rb +39 -0
  101. data/spec/Classes/CAGrid_spec.rb +75 -0
  102. data/spec/Classes/CAMap_spec.rb +0 -0
  103. data/{test/test_CAMapping.rb → spec/Classes/CAMapping_spec.rb} +35 -36
  104. data/spec/Classes/CAObject_attribute_spec.rb +33 -0
  105. data/spec/Classes/CAObject_spec.rb +33 -0
  106. data/spec/Classes/CARefer_spec.rb +93 -0
  107. data/spec/Classes/CARepeat_spec.rb +65 -0
  108. data/spec/Classes/CASelect_spec.rb +22 -0
  109. data/spec/Classes/CAShift_spec.rb +16 -0
  110. data/spec/Classes/CAStruct_spec.rb +71 -0
  111. data/{test/test_CATranspose.rb → spec/Classes/CATranspose_spec.rb} +20 -21
  112. data/spec/Classes/CAUnboudRepeat_spec.rb +102 -0
  113. data/spec/Classes/CAWindow_spec.rb +54 -0
  114. data/spec/Classes/CAWrap_spec.rb +8 -0
  115. data/{test/test_CArray.rb → spec/Classes/CArray_spec.rb} +48 -92
  116. data/spec/Classes/CScalar_spec.rb +55 -0
  117. data/spec/Features/feature_130_spec.rb +19 -0
  118. data/spec/Features/feature_attributes_spec.rb +280 -0
  119. data/spec/Features/feature_boolean_spec.rb +98 -0
  120. data/spec/Features/feature_broadcast.rb +116 -0
  121. data/spec/Features/feature_cast_function.rb +19 -0
  122. data/spec/Features/feature_cast_spec.rb +33 -0
  123. data/spec/Features/feature_class_spec.rb +84 -0
  124. data/spec/Features/feature_complex_spec.rb +42 -0
  125. data/{test/test_composite.rb → spec/Features/feature_composite_spec.rb} +17 -18
  126. data/spec/Features/feature_convert_spec.rb +46 -0
  127. data/spec/Features/feature_copy_spec.rb +123 -0
  128. data/spec/Features/feature_creation_spec.rb +84 -0
  129. data/spec/Features/feature_element_spec.rb +144 -0
  130. data/spec/Features/feature_extream_spec.rb +54 -0
  131. data/spec/Features/feature_generate_spec.rb +74 -0
  132. data/spec/Features/feature_index_spec.rb +69 -0
  133. data/spec/Features/feature_mask_spec.rb +580 -0
  134. data/spec/Features/feature_math_spec.rb +97 -0
  135. data/spec/Features/feature_order_spec.rb +146 -0
  136. data/spec/Features/feature_ref_store_spec.rb +209 -0
  137. data/spec/Features/feature_serialization_spec.rb +125 -0
  138. data/spec/Features/feature_stat_spec.rb +397 -0
  139. data/spec/Features/feature_virtual_spec.rb +48 -0
  140. data/spec/Features/method_eq_spec.rb +81 -0
  141. data/spec/Features/method_is_nan_spec.rb +12 -0
  142. data/spec/Features/method_map_spec.rb +54 -0
  143. data/spec/Features/method_max_with.rb +20 -0
  144. data/spec/Features/method_min_with.rb +19 -0
  145. data/spec/Features/method_ne_spec.rb +18 -0
  146. data/spec/Features/method_project_spec.rb +188 -0
  147. data/spec/Features/method_ref_spec.rb +27 -0
  148. data/spec/Features/method_round_spec.rb +11 -0
  149. data/spec/Features/method_s_linspace_spec.rb +48 -0
  150. data/spec/Features/method_s_span_spec.rb +14 -0
  151. data/spec/Features/method_seq_spec.rb +47 -0
  152. data/spec/Features/method_sort_with.rb +43 -0
  153. data/spec/Features/method_sorted_with.rb +29 -0
  154. data/spec/Features/method_span_spec.rb +42 -0
  155. data/spec/Features/method_wrap_readonly_spec.rb +43 -0
  156. data/{test → spec/UnitTest}/test_CAVirtual.rb +0 -0
  157. data/spec/spec_all.rb +0 -1
  158. data/utils/convert_test.rb +73 -0
  159. data/utils/{extract_rdoc.rb → extract_yard.rb} +7 -12
  160. data/{devel → utils}/guess_shape.rb +0 -0
  161. data/utils/{diff_method.rb → monkey_patch_methods.rb} +17 -7
  162. metadata +159 -206
  163. data/COPYING +0 -56
  164. data/GPL +0 -340
  165. data/LEGAL +0 -50
  166. data/TODO +0 -5
  167. data/carray_random.c +0 -531
  168. data/devel/im2col.rb +0 -17
  169. data/ext/calculus/carray_calculus.c +0 -931
  170. data/ext/calculus/carray_interp.c +0 -358
  171. data/ext/calculus/extconf.rb +0 -12
  172. data/ext/calculus/lib/math/calculus.rb +0 -119
  173. data/ext/calculus/lib/math/interp/adapter_interp1d.rb +0 -31
  174. data/ext/mathfunc/extconf.rb +0 -18
  175. data/ext/mathfunc/test/test_hypot.rb +0 -5
  176. data/ext/mathfunc/test/test_j0.rb +0 -22
  177. data/ext/mathfunc/test/test_jn.rb +0 -8
  178. data/ext/mathfunc/test/test_sph.rb +0 -9
  179. data/lib/carray/autoload/autoload_io_table.rb +0 -1
  180. data/lib/carray/autoload/autoload_math_interp.rb +0 -4
  181. data/lib/carray/base/basic.rb +0 -1146
  182. data/lib/carray/base/obsolete.rb +0 -131
  183. data/lib/carray/math/interp.rb +0 -57
  184. data/lib/carray/math/interp/adapter_gsl_spline.rb +0 -47
  185. data/mt19937ar.c +0 -182
  186. data/mt19937ar.h +0 -86
  187. data/rdoc_main.rb +0 -27
  188. data/rdoc_math.rb +0 -5
  189. data/rdoc_stat.rb +0 -31
  190. data/spec/CABlockIterator/CABlockIterator_spec.rb +0 -113
  191. data/spec/CArray/bug/store_spec.rb +0 -27
  192. data/spec/CArray/index/repeat_spec.rb +0 -10
  193. data/spec/CArray/method/eq_spec.rb +0 -80
  194. data/spec/CArray/method/is_nan_spec.rb +0 -12
  195. data/spec/CArray/method/ne_spec.rb +0 -18
  196. data/spec/CArray/method/round_spec.rb +0 -11
  197. data/spec/CArray/object/_attribute_spec.rb +0 -32
  198. data/spec/CArray/object/s_new_spec.rb +0 -31
  199. data/spec/CArray/serialize/Serialization_spec.rb +0 -89
  200. data/test/test_130.rb +0 -23
  201. data/test/test_ALL.rb +0 -51
  202. data/test/test_CABitfield.rb +0 -59
  203. data/test/test_CABlock.rb +0 -208
  204. data/test/test_CAField.rb +0 -40
  205. data/test/test_CAGrid.rb +0 -76
  206. data/test/test_CAMmap.rb +0 -11
  207. data/test/test_CARefer.rb +0 -94
  208. data/test/test_CARepeat.rb +0 -66
  209. data/test/test_CASelect.rb +0 -23
  210. data/test/test_CAShift.rb +0 -17
  211. data/test/test_CAWindow.rb +0 -55
  212. data/test/test_CAWrap.rb +0 -9
  213. data/test/test_CComplex.rb +0 -83
  214. data/test/test_CScalar.rb +0 -91
  215. data/test/test_attribute.rb +0 -281
  216. data/test/test_block_iterator.rb +0 -17
  217. data/test/test_boolean.rb +0 -99
  218. data/test/test_cast.rb +0 -33
  219. data/test/test_class.rb +0 -85
  220. data/test/test_complex.rb +0 -43
  221. data/test/test_convert.rb +0 -79
  222. data/test/test_copy.rb +0 -141
  223. data/test/test_creation.rb +0 -85
  224. data/test/test_element.rb +0 -146
  225. data/test/test_extream.rb +0 -55
  226. data/test/test_generate.rb +0 -75
  227. data/test/test_index.rb +0 -71
  228. data/test/test_mask.rb +0 -578
  229. data/test/test_math.rb +0 -98
  230. data/test/test_narray.rb +0 -64
  231. data/test/test_order.rb +0 -147
  232. data/test/test_random.rb +0 -15
  233. data/test/test_ref_store.rb +0 -211
  234. data/test/test_stat.rb +0 -414
  235. data/test/test_struct.rb +0 -72
  236. data/test/test_virtual.rb +0 -49
  237. data/utils/create_rdoc.sh +0 -9
  238. data/utils/make_tgz.sh +0 -3
  239. data/version.h +0 -18
@@ -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
-
data/mt19937ar.c DELETED
@@ -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 */
data/mt19937ar.h DELETED
@@ -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);