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
@@ -3,10 +3,8 @@
3
3
  carray_undef.c
4
4
 
5
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
6
 
9
- Copyright (C) 2005 Hiroki Motoyoshi
7
+ Copyright (C) 2005-2020 Hiroki Motoyoshi
10
8
 
11
9
  ---------------------------------------------------------------------------- */
12
10
 
@@ -43,12 +41,6 @@ static VALUE rb_ud_equal (VALUE self, VALUE other)
43
41
  return ( self == other ) ? Qtrue : Qfalse;
44
42
  }
45
43
 
46
-
47
- static VALUE rb_obj_is_undef (VALUE self)
48
- {
49
- return ( self == CA_UNDEF ) ? Qtrue : Qfalse;
50
- }
51
-
52
44
  void
53
45
  Init_carray_undef ()
54
46
  {
@@ -63,7 +55,5 @@ Init_carray_undef ()
63
55
  CA_UNDEF = rb_funcall(rb_cUNDEF, rb_intern("new"), 0);
64
56
  rb_undef_method(CLASS_OF(rb_cUNDEF), "new");
65
57
  rb_const_set(rb_cObject, rb_intern("UNDEF"), CA_UNDEF);
66
-
67
- rb_define_method(rb_cObject, "undef?", rb_obj_is_undef, 0);
68
58
  }
69
59
 
@@ -3,10 +3,8 @@
3
3
  carray_utils.c
4
4
 
5
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
6
 
9
- Copyright (C) 2005 Hiroki Motoyoshi
7
+ Copyright (C) 2005-2020 Hiroki Motoyoshi
10
8
 
11
9
  ---------------------------------------------------------------------------- */
12
10
 
@@ -422,6 +420,11 @@ ca_bounds_normalize_index (int8_t bounds, ca_size_t size0, ca_size_t k)
422
420
  }
423
421
  }
424
422
 
423
+ /* @private
424
+ @overload scan_float (str, fill_value=nil)
425
+
426
+ */
427
+
425
428
  static VALUE
426
429
  rb_ca_s_scan_float (int argc, VALUE *argv, VALUE self)
427
430
  {
@@ -447,6 +450,11 @@ rb_ca_s_scan_float (int argc, VALUE *argv, VALUE self)
447
450
  }
448
451
  }
449
452
 
453
+ /* @private
454
+ @overload scan_int (str, fill_value=nil)
455
+
456
+ */
457
+
450
458
  static VALUE
451
459
  rb_ca_s_scan_int (int argc, VALUE *argv, VALUE self)
452
460
  {
@@ -564,7 +572,7 @@ rb_ca_guess_type_and_bytes (VALUE rtype, VALUE rbytes,
564
572
  }
565
573
  }
566
574
 
567
- /* rdoc:
575
+ /* @private
568
576
  def CArray.guess_type_and_bytes (type, bytes=0)
569
577
  end
570
578
  */
@@ -135,11 +135,19 @@ end
135
135
  # --- check tgmath.h
136
136
 
137
137
  have_header("tgmath.h")
138
+ have_func("atan2", "math.h")
139
+ have_func("hypot", "math.h")
140
+ have_func("lgamma", "math.h")
141
+ have_func("expm1", "math.h")
138
142
 
139
143
  # --- check mergesort routine
140
144
 
141
145
  have_func("mergesort", "stdlib.h")
142
146
 
147
+ # --- check mergesort routine
148
+
149
+ have_func("strptime", "time.h")
150
+
143
151
  # --- setup install files
144
152
 
145
153
  $INSTALLFILES = []
@@ -153,7 +161,7 @@ $INSTALLFILES << ['carray_config.h', '$(archdir)']
153
161
  #
154
162
 
155
163
  if /cygwin|mingw/ =~ RUBY_PLATFORM
156
- sitearchdir = Config::CONFIG["sitearchdir"]
164
+ sitearchdir = RbConfig::CONFIG["sitearchdir"]
157
165
  $DLDFLAGS << " -L#{sitearchdir} -Wl,--out-implib=libcarray.a "
158
166
  unless File.exist? "libcarray.a"
159
167
  $TOUCHED_LIBCARRAY_A = true
@@ -189,11 +197,6 @@ if ( not File.exist?("carray_stat_proc.c") ) or
189
197
  system("ruby carray_stat_proc.rb > carray_stat_proc.c")
190
198
  end
191
199
 
192
- puts "creating rdoc_ext.rb"
193
- system %{
194
- ruby utils/extract_rdoc.rb > rdoc_ext.rb
195
- }
196
-
197
200
  # --- create Makefile
198
201
 
199
202
  create_makefile("carray_ext")
@@ -224,7 +227,7 @@ carray_stat_proc.c: carray_stat_proc.rb
224
227
  carray_math.c: carray_math.rb
225
228
  ${RUBY} carray_math.rb
226
229
 
227
- rdoc:
230
+ yard:
228
231
  sh utils/create_rdoc.sh
229
232
 
230
233
  clean-generated:
@@ -305,7 +305,7 @@ static VALUE rb_ca_#{name}_bang (VALUE self, VALUE other)
305
305
  }
306
306
  end
307
307
  METHODS << %{
308
- rb_define_method(rb_cCArray, "#{op}!", rb_ca_#{name}_bang, 1);
308
+ rb_define_method(rb_cCArray, "#{name}!", rb_ca_#{name}_bang, 1);
309
309
  }
310
310
 
311
311
  end
@@ -385,7 +385,7 @@ ca_moncmp_#{name}_#{type} (ca_size_t n, boolean8_t *m, char *ptr1, ca_size_t i1,
385
385
  io.puts "};"
386
386
  io.puts
387
387
  io.print %{
388
- static VALUE rb_ca_#{name} (VALUE self, VALUE other)
388
+ static VALUE rb_ca_#{name} (VALUE self)
389
389
  { return rb_ca_call_moncmp(self, ca_moncmp_#{name}); }
390
390
  }
391
391
  DEFINITIONS << io.string
@@ -3,10 +3,8 @@
3
3
  ruby_carray.c
4
4
 
5
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
6
 
9
- Copyright (C) 2005 Hiroki Motoyoshi
7
+ Copyright (C) 2005-2020 Hiroki Motoyoshi
10
8
 
11
9
  ---------------------------------------------------------------------------- */
12
10
 
@@ -24,6 +22,7 @@ void Init_numeric_float_function ();
24
22
  void Init_carray_core ();
25
23
  void Init_carray_undef ();
26
24
  void Init_carray_class ();
25
+ void Init_carray_data_type ();
27
26
  void Init_carray_test ();
28
27
  void Init_carray_attribute ();
29
28
  void Init_carray_loop ();
@@ -34,7 +33,6 @@ void Init_carray_iterator ();
34
33
  void Init_carray_operator ();
35
34
  void Init_carray_numeric ();
36
35
  void Init_carray_math ();
37
- void Init_carray_random ();
38
36
  void Init_carray_utils ();
39
37
  void Init_carray_order ();
40
38
  void Init_carray_sort_addr ();
@@ -70,6 +68,9 @@ void Init_ca_iter_dimension ();
70
68
  void Init_ca_iter_block ();
71
69
  void Init_ca_iter_window ();
72
70
 
71
+ void Init_carray_mathfunc ();
72
+
73
+
73
74
  void
74
75
  Init_carray_ext ()
75
76
  {
@@ -94,7 +95,7 @@ Init_carray_ext ()
94
95
  rb_eCADataTypeError =
95
96
  rb_define_class_under(rb_cCArray, "DataTypeError", rb_eStandardError);
96
97
 
97
- /* rdoc:
98
+ /* yard:
98
99
  class CArray::DataTypeError # :nodoc:
99
100
  end
100
101
  */
@@ -108,7 +109,7 @@ Init_carray_ext ()
108
109
 
109
110
  /* -- version -- */
110
111
 
111
- /* rdoc:
112
+ /* yard:
112
113
  class CArray
113
114
  VERSION = nil # :nodoc:
114
115
  VERSION_CODE = nil # :nodoc:
@@ -119,11 +120,17 @@ Init_carray_ext ()
119
120
  end
120
121
  */
121
122
 
123
+ /* @private */
122
124
  rb_define_const(rb_cCArray, "VERSION", rb_str_new2(CA_VERSION));
125
+ /* @private */
123
126
  rb_define_const(rb_cCArray, "VERSION_CODE", INT2NUM(CA_VERSION_CODE));
127
+ /* @private */
124
128
  rb_define_const(rb_cCArray, "VERSION_MAJOR", INT2NUM(CA_VERSION_MAJOR));
129
+ /* @private */
125
130
  rb_define_const(rb_cCArray, "VERSION_MINOR", INT2NUM(CA_VERSION_MINOR));
131
+ /* @private */
126
132
  rb_define_const(rb_cCArray, "VERSION_TEENY", INT2NUM(CA_VERSION_TEENY));
133
+ /* @private */
127
134
  rb_define_const(rb_cCArray, "VERSION_DATE", rb_str_new2(CA_VERSION_DATE));
128
135
 
129
136
  /* -- system -- */
@@ -132,8 +139,10 @@ Init_carray_ext ()
132
139
  rb_define_const(rb_cObject, "CA_NIL", CA_NIL);
133
140
 
134
141
  #ifdef HAVE_COMPLEX_H
142
+ /* @private */
135
143
  rb_define_const(rb_cCArray, "HAVE_COMPLEX", Qtrue);
136
144
  #else
145
+ /* @private */
137
146
  rb_define_const(rb_cCArray, "HAVE_COMPLEX", Qfalse);
138
147
  #endif
139
148
 
@@ -166,7 +175,6 @@ Init_carray_ext ()
166
175
  rb_define_const(rb_cObject, "CA_DCOMPLEX", INT2NUM(CA_DCOMPLEX));
167
176
  rb_define_const(rb_cObject, "CA_SIZE", INT2NUM(CA_SIZE));
168
177
 
169
-
170
178
  rb_define_const(rb_cObject, "CA_ALIGN_VOIDP", INT2NUM(CA_ALIGN_VOIDP));
171
179
  rb_define_const(rb_cObject, "CA_ALIGN_FIXLEN", INT2NUM(CA_ALIGN_INT8));
172
180
  rb_define_const(rb_cObject, "CA_ALIGN_BOOLEAN", INT2NUM(CA_ALIGN_INT8));
@@ -193,6 +201,7 @@ Init_carray_ext ()
193
201
  Init_numeric_float_function();
194
202
 
195
203
  Init_carray_class();
204
+ Init_carray_data_type();
196
205
  Init_carray_test();
197
206
  Init_carray_attribute();
198
207
  Init_carray_undef();
@@ -203,7 +212,6 @@ Init_carray_ext ()
203
212
  Init_carray_operator();
204
213
  Init_carray_math(); /* order of math, numeric should not be changed */
205
214
  Init_carray_numeric(); /* order of math, numeric should not be changed */
206
- Init_carray_random();
207
215
  Init_carray_order();
208
216
  Init_carray_sort_addr();
209
217
  Init_carray_stat();
@@ -240,5 +248,9 @@ Init_carray_ext ()
240
248
  Init_ca_iter_dimension();
241
249
  Init_ca_iter_block();
242
250
  Init_ca_iter_window();
251
+
252
+ Init_carray_mathfunc();
253
+
254
+
243
255
  }
244
256
 
@@ -3,10 +3,8 @@
3
3
  ruby_ccomplex.c
4
4
 
5
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
6
 
9
- Copyright (C) 2005 Hiroki Motoyoshi
7
+ Copyright (C) 2005-2020 Hiroki Motoyoshi
10
8
 
11
9
  ---------------------------------------------------------------------------- */
12
10
 
@@ -462,7 +460,7 @@ Init_ccomplex ()
462
460
  rb_define_method(rb_cCComplex, "coerce", rb_cc_coerce, 1);
463
461
 
464
462
  rb_define_method(rb_cCComplex, "==", rb_cc_equal, 1);
465
- rb_define_method(rb_cCComplex, "-@", rb_cc_uminus, 1);
463
+ rb_define_method(rb_cCComplex, "-@", rb_cc_uminus, 0);
466
464
  rb_define_method(rb_cCComplex, "+", rb_cc_plus, 1);
467
465
  rb_define_method(rb_cCComplex, "-", rb_cc_minus, 1);
468
466
  rb_define_method(rb_cCComplex, "*", rb_cc_asterisk, 1);
@@ -3,10 +3,8 @@
3
3
  ruby_numeric.c
4
4
 
5
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
6
 
9
- Copyright (C) 2005 Hiroki Motoyoshi
7
+ Copyright (C) 2005-2020 Hiroki Motoyoshi
10
8
 
11
9
  ---------------------------------------------------------------------------- */
12
10
 
data/ext/version.h ADDED
@@ -0,0 +1,16 @@
1
+ /* ---------------------------------------------------------------------------
2
+
3
+ version.h
4
+
5
+ This file is part of Ruby/CArray extension library.
6
+
7
+ Copyright (C) 2005-2020 Hiroki Motoyoshi
8
+
9
+ ---------------------------------------------------------------------------- */
10
+
11
+ #define CA_VERSION "1.5.5"
12
+ #define CA_VERSION_CODE 155
13
+ #define CA_VERSION_MAJOR 1
14
+ #define CA_VERSION_MINOR 5
15
+ #define CA_VERSION_TEENY 5
16
+ #define CA_VERSION_DATE "2021/02/02"
File without changes
data/lib/carray.rb CHANGED
@@ -3,10 +3,8 @@
3
3
  # lib/carray.rb
4
4
  #
5
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
6
  #
9
- # Copyright (C) 2005 Hiroki Motoyoshi
7
+ # Copyright (C) 2005-2020 Hiroki Motoyoshi
10
8
  #
11
9
  # ----------------------------------------------------------------------------
12
10
 
@@ -14,46 +12,59 @@ major = RbConfig::CONFIG['MAJOR'].to_i
14
12
  minor = RbConfig::CONFIG['MINOR'].to_i
15
13
  teeny = RbConfig::CONFIG['TEENY'].to_i
16
14
  ruby_version_code = major * 100 + minor * 10 + teeny
15
+
17
16
  if ruby_version_code < 190
18
17
  require 'complex'
19
18
  end
20
19
 
20
+ # main
21
+
21
22
  require 'carray_ext'
22
- require 'carray/base/basic'
23
- require 'carray/base/math'
24
- require 'carray/base/iterator'
25
- require 'carray/base/struct'
26
- require 'carray/base/inspect'
27
- require 'carray/base/obsolete'
28
- require 'carray/base/string'
29
-
30
- require "carray/carray_mathfunc"
31
- require "carray/carray_calculus"
32
- require "carray/math/calculus"
33
-
34
- require 'carray/base/autoload'
35
- require 'carray/autoload/autoload_base'
36
- require 'carray/autoload/autoload_io_imagemagick'
37
- require 'carray/autoload/autoload_io_table'
38
- require 'carray/autoload/autoload_math_histogram'
39
- require 'carray/autoload/autoload_math_interp'
40
- require 'carray/autoload/autoload_math_recurrence'
41
- require 'carray/autoload/autoload_object_iterator'
42
- require 'carray/autoload/autoload_object_link'
43
- require 'carray/autoload/autoload_object_pack'
44
-
45
- require 'carray/autoload/autoload_gem_gnuplot'
46
- require 'carray/autoload/autoload_gem_narray'
47
- require 'carray/autoload/autoload_gem_numo_narray'
48
- require 'carray/autoload/autoload_gem_io_csv'
49
- require 'carray/autoload/autoload_gem_io_sqlite3'
50
- require 'carray/autoload/autoload_gem_rmagick'
51
- require 'carray/autoload/autoload_gem_cairo'
52
- require 'carray/autoload/autoload_gem_opencv'
53
- require 'carray/autoload/autoload_gem_ffi'
54
-
55
- #require 'carray/autoload/autoload_gem_io_pg'
56
- #require 'carray/autoload/autoload_gem_zimg'
57
-
58
- undef autoload_method
59
23
 
24
+ require 'carray/inspect'
25
+ require 'carray/basic'
26
+ require 'carray/construct'
27
+ require 'carray/mask'
28
+ require 'carray/compose'
29
+ require 'carray/transform'
30
+ require 'carray/convert'
31
+ require 'carray/testing'
32
+ require 'carray/ordering'
33
+ require 'carray/broadcast'
34
+
35
+ require 'carray/math'
36
+ require 'carray/iterator'
37
+ require 'carray/struct'
38
+ require 'carray/table'
39
+ require 'carray/string'
40
+
41
+ # obsolete methods
42
+
43
+ require 'carray/obsolete'
44
+
45
+ # autoload
46
+
47
+ unless $CARRAY_NO_AUTOLOAD
48
+
49
+ require 'carray/autoload'
50
+ require 'carray/autoload/autoload_base'
51
+ require 'carray/autoload/autoload_io_imagemagick'
52
+ require 'carray/autoload/autoload_math_histogram'
53
+ require 'carray/autoload/autoload_math_recurrence'
54
+ require 'carray/autoload/autoload_object_iterator'
55
+ require 'carray/autoload/autoload_object_link'
56
+ require 'carray/autoload/autoload_object_pack'
57
+
58
+ require 'carray/autoload/autoload_gem_random'
59
+ require 'carray/autoload/autoload_gem_gnuplot'
60
+ require 'carray/autoload/autoload_gem_narray'
61
+ require 'carray/autoload/autoload_gem_numo_narray'
62
+ require 'carray/autoload/autoload_gem_io_csv'
63
+ # require 'carray/autoload/autoload_gem_io_sqlite3'
64
+ require 'carray/autoload/autoload_gem_rmagick'
65
+ require 'carray/autoload/autoload_gem_cairo'
66
+ require 'carray/autoload/autoload_gem_opencv'
67
+ require 'carray/autoload/autoload_gem_ffi'
68
+
69
+ undef autoload_method
70
+ end
@@ -1,10 +1,8 @@
1
1
  # ----------------------------------------------------------------------------
2
2
  #
3
- # carray/base/autoload.rb
3
+ # carray/autoload.rb
4
4
  #
5
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
6
  #
9
7
  # Copyright (C) 2005-2010 Hiroki Motoyoshi
10
8
  #
@@ -1,5 +1,5 @@
1
1
  class CArray
2
- serialize_rb = "carray/base/serialize"
2
+ serialize_rb = "carray/serialize"
3
3
  autoload :Serializer, serialize_rb
4
4
  autoload_method "self.save", serialize_rb
5
5
  autoload_method "self.load", serialize_rb
@@ -1,14 +1,15 @@
1
- #autoload :Numo, "carray-numo-narray"
2
-
3
1
  class CArray
4
- autoload_method :to_numo, "carray-numo-narray"
5
- autoload_method :numo, "carray-numo-narray"
2
+ autoload_method :to_numo, "carray-numo-narray"
3
+ autoload_method :numo, "carray-numo-narray"
4
+ autoload_method "self.as_numo", "carray-numo-narray"
5
+ autoload_method "self.as_numo!", "carray-numo-narray"
6
+ autoload_method :as_numo, "carray-numo-narray"
7
+ autoload_method :as_numo!, "carray-numo-narray"
6
8
  end
7
9
 
8
10
  module Numo
9
11
  class NArray
10
12
  autoload_method :to_ca, "carray-numo-narray"
11
- autoload_method :ca, "carray-numo-narray"
13
+ autoload_method :ca, "carray-numo-narray"
12
14
  end
13
15
  end
14
-