carray 1.3.6 → 1.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +32 -0
- data/LICENSE +22 -0
- data/NEWS.md +65 -0
- data/README.md +23 -26
- data/Rakefile +31 -0
- data/TODO.md +17 -0
- data/carray.gemspec +24 -31
- data/{ca_iter_block.c → ext/ca_iter_block.c} +16 -18
- data/{ca_iter_dimension.c → ext/ca_iter_dimension.c} +20 -21
- data/{ca_iter_window.c → ext/ca_iter_window.c} +12 -14
- data/{ca_obj_array.c → ext/ca_obj_array.c} +451 -176
- data/{ca_obj_bitarray.c → ext/ca_obj_bitarray.c} +18 -23
- data/{ca_obj_bitfield.c → ext/ca_obj_bitfield.c} +12 -16
- data/{ca_obj_block.c → ext/ca_obj_block.c} +47 -54
- data/{ca_obj_fake.c → ext/ca_obj_fake.c} +10 -12
- data/{ca_obj_farray.c → ext/ca_obj_farray.c} +21 -23
- data/{ca_obj_field.c → ext/ca_obj_field.c} +30 -32
- data/{ca_obj_grid.c → ext/ca_obj_grid.c} +32 -33
- data/{ca_obj_mapping.c → ext/ca_obj_mapping.c} +11 -13
- data/{ca_obj_object.c → ext/ca_obj_object.c} +40 -42
- data/{ca_obj_reduce.c → ext/ca_obj_reduce.c} +3 -5
- data/{ca_obj_refer.c → ext/ca_obj_refer.c} +38 -40
- data/{ca_obj_repeat.c → ext/ca_obj_repeat.c} +45 -47
- data/{ca_obj_select.c → ext/ca_obj_select.c} +4 -6
- data/{ca_obj_shift.c → ext/ca_obj_shift.c} +26 -28
- data/{ca_obj_transpose.c → ext/ca_obj_transpose.c} +26 -28
- data/{ca_obj_unbound_repeat.c → ext/ca_obj_unbound_repeat.c} +106 -160
- data/{ca_obj_window.c → ext/ca_obj_window.c} +33 -35
- data/{carray.h → ext/carray.h} +90 -59
- data/{carray_access.c → ext/carray_access.c} +244 -109
- data/{carray_attribute.c → ext/carray_attribute.c} +161 -207
- data/{carray_call_cfunc.c → ext/carray_call_cfunc.c} +1 -3
- data/{carray_cast.c → ext/carray_cast.c} +350 -149
- data/{carray_cast_func.rb → ext/carray_cast_func.rb} +1 -2
- data/{carray_class.c → ext/carray_class.c} +28 -36
- data/{carray_conversion.c → ext/carray_conversion.c} +58 -70
- data/{carray_copy.c → ext/carray_copy.c} +34 -50
- data/{carray_core.c → ext/carray_core.c} +75 -62
- data/ext/carray_data_type.c +66 -0
- data/{carray_element.c → ext/carray_element.c} +34 -53
- data/{carray_generate.c → ext/carray_generate.c} +137 -50
- data/{carray_iterator.c → ext/carray_iterator.c} +53 -53
- data/{carray_loop.c → ext/carray_loop.c} +77 -106
- data/{carray_mask.c → ext/carray_mask.c} +95 -114
- data/{carray_math.rb → ext/carray_math.rb} +47 -31
- data/ext/{mathfunc/carray_mathfunc.c → carray_mathfunc.c} +1 -3
- data/{carray_numeric.c → ext/carray_numeric.c} +43 -46
- data/{carray_operator.c → ext/carray_operator.c} +72 -36
- data/{carray_order.c → ext/carray_order.c} +73 -217
- data/{carray_sort_addr.c → ext/carray_sort_addr.c} +14 -21
- data/{carray_stat.c → ext/carray_stat.c} +6 -8
- data/{carray_stat_proc.rb → ext/carray_stat_proc.rb} +25 -27
- data/{carray_test.c → ext/carray_test.c} +59 -51
- data/{carray_undef.c → ext/carray_undef.c} +1 -11
- data/{carray_utils.c → ext/carray_utils.c} +12 -4
- data/{extconf.rb → ext/extconf.rb} +1 -6
- data/{mkmath.rb → ext/mkmath.rb} +13 -3
- data/{ruby_carray.c → ext/ruby_carray.c} +20 -8
- data/{ruby_ccomplex.c → ext/ruby_ccomplex.c} +1 -3
- data/{ruby_float_func.c → ext/ruby_float_func.c} +1 -3
- data/ext/version.h +16 -0
- data/{version.rb → ext/version.rb} +0 -0
- data/lib/carray.rb +52 -10
- data/lib/carray/{base/autoload.rb → autoload.rb} +48 -8
- data/lib/carray/autoload/autoload_base.rb +1 -5
- data/lib/carray/autoload/autoload_gem_cairo.rb +9 -0
- data/lib/carray/autoload/autoload_gem_ffi.rb +9 -0
- data/lib/carray/autoload/autoload_gem_gnuplot.rb +2 -0
- data/lib/carray/autoload/autoload_gem_io_csv.rb +14 -0
- data/lib/carray/autoload/autoload_gem_io_pg.rb +6 -0
- data/lib/carray/autoload/autoload_gem_io_sqlite3.rb +12 -0
- data/lib/carray/autoload/autoload_gem_narray.rb +10 -0
- data/lib/carray/autoload/autoload_gem_numo_narray.rb +15 -0
- data/lib/carray/autoload/autoload_gem_opencv.rb +16 -0
- data/lib/carray/autoload/autoload_gem_random.rb +8 -0
- data/lib/carray/autoload/autoload_gem_rmagick.rb +23 -0
- data/lib/carray/autoload/{autoload_graphics_zimg.rb → autoload_gem_zimg.rb} +0 -0
- data/lib/carray/basic.rb +191 -0
- data/lib/carray/broadcast.rb +82 -0
- data/lib/carray/compose.rb +315 -0
- data/lib/carray/construct.rb +460 -0
- data/lib/carray/convert.rb +115 -0
- data/lib/carray/info.rb +1 -3
- data/lib/carray/{base/inspect.rb → inspect.rb} +9 -11
- data/lib/carray/io/imagemagick.rb +2 -4
- data/lib/carray/{base/iterator.rb → iterator.rb} +6 -6
- data/lib/carray/mask.rb +102 -0
- data/lib/carray/{base/math.rb → math.rb} +21 -53
- data/lib/carray/math/histogram.rb +8 -10
- data/lib/carray/math/recurrence.rb +1 -3
- data/lib/carray/mkmf.rb +9 -3
- data/lib/carray/object/ca_obj_iterator.rb +1 -3
- data/lib/carray/object/ca_obj_link.rb +1 -3
- data/lib/carray/object/ca_obj_pack.rb +9 -11
- data/lib/carray/obsolete.rb +270 -0
- data/lib/carray/ordering.rb +181 -0
- data/lib/carray/{base/serialize.rb → serialize.rb} +50 -66
- data/lib/carray/string.rb +188 -0
- data/lib/carray/{base/struct.rb → struct.rb} +19 -21
- data/lib/carray/{io/table.rb → table.rb} +1 -9
- data/lib/carray/testing.rb +51 -0
- data/lib/carray/time.rb +76 -0
- data/lib/carray/transform.rb +98 -0
- data/misc/Methods.ja.md +182 -0
- data/{NOTE → misc/NOTE} +0 -0
- data/spec/Classes/CABitfield_spec.rb +58 -0
- data/spec/Classes/CABlockIterator_spec.rb +114 -0
- data/spec/Classes/CABlock_spec.rb +205 -0
- data/spec/Classes/CAField_spec.rb +39 -0
- data/spec/Classes/CAGrid_spec.rb +75 -0
- data/spec/Classes/CAMap_spec.rb +0 -0
- data/{test/test_CAMapping.rb → spec/Classes/CAMapping_spec.rb} +35 -36
- data/spec/Classes/CAObject_attribute_spec.rb +33 -0
- data/spec/Classes/CAObject_spec.rb +33 -0
- data/spec/Classes/CARefer_spec.rb +93 -0
- data/spec/Classes/CARepeat_spec.rb +65 -0
- data/spec/Classes/CASelect_spec.rb +22 -0
- data/spec/Classes/CAShift_spec.rb +16 -0
- data/spec/Classes/CAStruct_spec.rb +71 -0
- data/{test/test_CATranspose.rb → spec/Classes/CATranspose_spec.rb} +20 -21
- data/spec/Classes/CAUnboudRepeat_spec.rb +102 -0
- data/spec/Classes/CAWindow_spec.rb +54 -0
- data/spec/Classes/CAWrap_spec.rb +8 -0
- data/{test/test_CArray.rb → spec/Classes/CArray_spec.rb} +48 -92
- data/spec/Classes/CScalar_spec.rb +55 -0
- data/spec/Features/feature_130_spec.rb +19 -0
- data/spec/Features/feature_attributes_spec.rb +280 -0
- data/spec/Features/feature_boolean_spec.rb +98 -0
- data/spec/Features/feature_broadcast.rb +116 -0
- data/spec/Features/feature_cast_function.rb +19 -0
- data/spec/Features/feature_cast_spec.rb +33 -0
- data/spec/Features/feature_class_spec.rb +84 -0
- data/spec/Features/feature_complex_spec.rb +42 -0
- data/{test/test_composite.rb → spec/Features/feature_composite_spec.rb} +17 -18
- data/spec/Features/feature_convert_spec.rb +46 -0
- data/spec/Features/feature_copy_spec.rb +123 -0
- data/spec/Features/feature_creation_spec.rb +84 -0
- data/spec/Features/feature_element_spec.rb +144 -0
- data/spec/Features/feature_extream_spec.rb +54 -0
- data/spec/Features/feature_generate_spec.rb +74 -0
- data/spec/Features/feature_index_spec.rb +69 -0
- data/spec/Features/feature_mask_spec.rb +580 -0
- data/spec/Features/feature_math_spec.rb +97 -0
- data/spec/Features/feature_order_spec.rb +146 -0
- data/spec/Features/feature_ref_store_spec.rb +209 -0
- data/spec/Features/feature_serialization_spec.rb +125 -0
- data/spec/Features/feature_stat_spec.rb +397 -0
- data/spec/Features/feature_virtual_spec.rb +48 -0
- data/spec/Features/method_eq_spec.rb +81 -0
- data/spec/Features/method_is_nan_spec.rb +12 -0
- data/spec/Features/method_map_spec.rb +54 -0
- data/spec/Features/method_max_with.rb +20 -0
- data/spec/Features/method_min_with.rb +19 -0
- data/spec/Features/method_ne_spec.rb +18 -0
- data/spec/Features/method_project_spec.rb +188 -0
- data/spec/Features/method_ref_spec.rb +27 -0
- data/spec/Features/method_round_spec.rb +11 -0
- data/spec/Features/method_s_linspace_spec.rb +48 -0
- data/spec/Features/method_s_span_spec.rb +14 -0
- data/spec/Features/method_seq_spec.rb +47 -0
- data/spec/Features/method_sort_with.rb +43 -0
- data/spec/Features/method_sorted_with.rb +29 -0
- data/spec/Features/method_span_spec.rb +42 -0
- data/spec/Features/method_wrap_readonly_spec.rb +43 -0
- data/{test → spec/UnitTest}/test_CAVirtual.rb +0 -0
- data/spec/spec_all.rb +0 -1
- data/utils/convert_test.rb +73 -0
- data/utils/{extract_rdoc.rb → extract_yard.rb} +7 -12
- data/{devel → utils}/guess_shape.rb +0 -0
- data/utils/{diff_method.rb → monkey_patch_methods.rb} +17 -7
- metadata +173 -316
- data/COPYING +0 -56
- data/GPL +0 -340
- data/Gemfile +0 -8
- data/Gemfile.lock +0 -33
- data/LEGAL +0 -50
- data/Makefile +0 -451
- data/TODO +0 -5
- data/carray_cast_func.c +0 -8670
- data/carray_config.h +0 -26
- data/carray_math.c +0 -24805
- data/carray_random.c +0 -531
- data/carray_stat_proc.c +0 -12170
- data/ext/calculus/carray_calculus.c +0 -931
- data/ext/calculus/carray_interp.c +0 -358
- data/ext/calculus/extconf.rb +0 -12
- data/ext/calculus/lib/autoload/autoload_math_calculus.rb +0 -2
- data/ext/calculus/lib/math/calculus.rb +0 -119
- data/ext/calculus/lib/math/interp/adapter_interp1d.rb +0 -31
- data/ext/fortio/extconf.rb +0 -3
- data/ext/fortio/lib/carray/autoload/autoload_fortran_format.rb +0 -5
- data/ext/fortio/lib/carray/io/fortran_format.rb +0 -43
- data/ext/fortio/lib/fortio.rb +0 -3
- data/ext/fortio/lib/fortio/fortran_format.rb +0 -605
- data/ext/fortio/lib/fortio/fortran_format.tab.rb +0 -536
- data/ext/fortio/lib/fortio/fortran_format.y +0 -215
- data/ext/fortio/lib/fortio/fortran_namelist.rb +0 -151
- data/ext/fortio/lib/fortio/fortran_namelist.tab.rb +0 -470
- data/ext/fortio/lib/fortio/fortran_namelist.y +0 -213
- data/ext/fortio/lib/fortio/fortran_sequential.rb +0 -345
- data/ext/fortio/ruby_fortio.c +0 -182
- data/ext/fortio/test/test_H.rb +0 -5
- data/ext/fortio/test/test_T.rb +0 -7
- data/ext/fortio/test/test_fortran_format.rb +0 -86
- data/ext/fortio/test/test_namelist.rb +0 -25
- data/ext/fortio/test/test_namelist_write.rb +0 -10
- data/ext/fortio/test/test_sequential.rb +0 -13
- data/ext/fortio/test/test_sequential2.rb +0 -13
- data/ext/fortio/work/test.rb +0 -10
- data/ext/fortio/work/test_e.rb +0 -19
- data/ext/fortio/work/test_ep.rb +0 -10
- data/ext/fortio/work/test_parse.rb +0 -12
- data/ext/imagemap/carray_imagemap.c +0 -495
- data/ext/imagemap/doc/call_graph.dot +0 -28
- data/ext/imagemap/draw.c +0 -567
- data/ext/imagemap/extconf.rb +0 -13
- data/ext/imagemap/lib/autoload/autoload_graphics_imagemap.rb +0 -1
- data/ext/imagemap/lib/graphics/imagemap.rb +0 -273
- data/ext/imagemap/lib/image_map.rb +0 -4
- data/ext/imagemap/test/swath_index.rb +0 -83
- data/ext/imagemap/test/swath_warp.rb +0 -99
- data/ext/imagemap/test/test.rb +0 -23
- data/ext/imagemap/test/test_image.rb +0 -42
- data/ext/imagemap/test/test_line.rb +0 -14
- data/ext/imagemap/test/test_rotate.rb +0 -17
- data/ext/imagemap/test/test_triangle.rb +0 -20
- data/ext/imagemap/test/test_warp.rb +0 -26
- data/ext/mathfunc/extconf.rb +0 -18
- data/ext/mathfunc/lib/autoload/autoload_math_mathfunc.rb +0 -1
- data/ext/mathfunc/lib/math/mathfunc.rb +0 -15
- data/ext/mathfunc/test/test_hypot.rb +0 -5
- data/ext/mathfunc/test/test_j0.rb +0 -22
- data/ext/mathfunc/test/test_jn.rb +0 -8
- data/ext/mathfunc/test/test_sph.rb +0 -9
- data/ext/narray/README +0 -22
- data/ext/narray/ca_wrap_narray.c +0 -500
- data/ext/narray/carray_narray.c +0 -21
- data/ext/narray/extconf.rb +0 -57
- data/ext/narray/lib/autoload/autoload_math_narray.rb +0 -1
- data/ext/narray/lib/autoload/autoload_math_narray_miss.rb +0 -11
- data/ext/narray/lib/math/narray.rb +0 -17
- data/ext/narray/lib/math/narray_miss.rb +0 -45
- data/lib/carray/autoload/autoload_graphics_gnuplot.rb +0 -2
- data/lib/carray/autoload/autoload_io_csv.rb +0 -14
- data/lib/carray/autoload/autoload_io_pg.rb +0 -6
- data/lib/carray/autoload/autoload_io_sqlite3.rb +0 -12
- data/lib/carray/autoload/autoload_io_table.rb +0 -1
- data/lib/carray/autoload/autoload_math_interp.rb +0 -4
- data/lib/carray/base/basic.rb +0 -1090
- data/lib/carray/base/obsolete.rb +0 -131
- data/lib/carray/graphics/gnuplot.rb +0 -2131
- data/lib/carray/graphics/zimg.rb +0 -296
- data/lib/carray/io/csv.rb +0 -572
- data/lib/carray/io/pg.rb +0 -101
- data/lib/carray/io/sqlite3.rb +0 -215
- data/lib/carray/math/interp.rb +0 -57
- data/lib/carray/math/interp/adapter_gsl_spline.rb +0 -47
- data/mkmf.log +0 -375
- data/mt19937ar.c +0 -182
- data/mt19937ar.h +0 -86
- data/rdoc_ext.rb +0 -1115
- data/rdoc_main.rb +0 -27
- data/rdoc_math.rb +0 -5
- data/rdoc_stat.rb +0 -31
- data/spec/CABlockIterator/CABlockIterator_spec.rb +0 -113
- data/spec/CArray/bug/store_spec.rb +0 -27
- data/spec/CArray/index/repeat_spec.rb +0 -10
- data/spec/CArray/method/eq_spec.rb +0 -80
- data/spec/CArray/method/is_nan_spec.rb +0 -12
- data/spec/CArray/method/ne_spec.rb +0 -18
- data/spec/CArray/method/round_spec.rb +0 -11
- data/spec/CArray/object/_attribute_spec.rb +0 -32
- data/spec/CArray/object/s_new_spec.rb +0 -31
- data/spec/CArray/serialize/Serialization_spec.rb +0 -89
- data/test/test_130.rb +0 -23
- data/test/test_ALL.rb +0 -51
- data/test/test_CABitfield.rb +0 -59
- data/test/test_CABlock.rb +0 -208
- data/test/test_CAField.rb +0 -40
- data/test/test_CAGrid.rb +0 -76
- data/test/test_CAMmap.rb +0 -11
- data/test/test_CARefer.rb +0 -94
- data/test/test_CARepeat.rb +0 -66
- data/test/test_CASelect.rb +0 -23
- data/test/test_CAShift.rb +0 -17
- data/test/test_CAWindow.rb +0 -55
- data/test/test_CAWrap.rb +0 -9
- data/test/test_CComplex.rb +0 -83
- data/test/test_CScalar.rb +0 -91
- data/test/test_attribute.rb +0 -281
- data/test/test_block_iterator.rb +0 -17
- data/test/test_boolean.rb +0 -99
- data/test/test_cast.rb +0 -33
- data/test/test_class.rb +0 -85
- data/test/test_complex.rb +0 -43
- data/test/test_convert.rb +0 -79
- data/test/test_copy.rb +0 -141
- data/test/test_creation.rb +0 -85
- data/test/test_element.rb +0 -146
- data/test/test_extream.rb +0 -55
- data/test/test_generate.rb +0 -75
- data/test/test_index.rb +0 -71
- data/test/test_mask.rb +0 -578
- data/test/test_math.rb +0 -98
- data/test/test_narray.rb +0 -64
- data/test/test_order.rb +0 -147
- data/test/test_random.rb +0 -15
- data/test/test_ref_store.rb +0 -211
- data/test/test_stat.rb +0 -414
- data/test/test_struct.rb +0 -72
- data/test/test_virtual.rb +0 -49
- data/utils/create_rdoc.sh +0 -9
- data/utils/make_tgz.sh +0 -3
- data/version.h +0 -18
@@ -0,0 +1,97 @@
|
|
1
|
+
|
2
|
+
require 'carray'
|
3
|
+
require "rspec-power_assert"
|
4
|
+
|
5
|
+
describe "TestMath " do
|
6
|
+
|
7
|
+
example "zerodiv" do
|
8
|
+
zero = CArray.int(3,3) { 0 }
|
9
|
+
one = CArray.int(3,3) { 1 }
|
10
|
+
expect { 1/zero }.to raise_error(ZeroDivisionError)
|
11
|
+
expect { one/zero }.to raise_error(ZeroDivisionError) # div, div!
|
12
|
+
expect { one/0 }.to raise_error(ZeroDivisionError)
|
13
|
+
expect { one/zero }.to raise_error(ZeroDivisionError)
|
14
|
+
expect { one % 0 }.to raise_error(ZeroDivisionError) # mod, mod!
|
15
|
+
expect { one % zero }.to raise_error(ZeroDivisionError)
|
16
|
+
expect { zero.rcp }.to raise_error(ZeroDivisionError) # rcp!
|
17
|
+
expect { zero.rcp_mul(1) }.to raise_error(ZeroDivisionError) # rcp_mul!
|
18
|
+
expect { zero.rcp_mul(one) }.to raise_error(ZeroDivisionError)
|
19
|
+
expect { 0 ** (-one) }.to raise_error(ZeroDivisionError) # pow, pow!
|
20
|
+
expect { zero ** (-one) }.to raise_error(ZeroDivisionError)
|
21
|
+
end
|
22
|
+
|
23
|
+
example "cmp" do
|
24
|
+
a = CA_INT([0,1,2,3,4])
|
25
|
+
b = CA_INT([4,3,2,1,0])
|
26
|
+
|
27
|
+
# ---
|
28
|
+
is_asserted_by { CA_INT8([-1, -1, 0, 1, 1]) == (a <=> 2) }
|
29
|
+
is_asserted_by { CA_INT8([1, 1, 0, -1, -1]) == (2 <=> a) }
|
30
|
+
is_asserted_by { CA_INT8([-1, -1, 0, 1, 1]) == (a <=> b) }
|
31
|
+
end
|
32
|
+
|
33
|
+
example "bit_op" do
|
34
|
+
a = CArray.int(10).seq!
|
35
|
+
|
36
|
+
# ---
|
37
|
+
is_asserted_by { a.convert {|x| ~x } == (~a) }
|
38
|
+
|
39
|
+
is_asserted_by { a.convert {|x| x & 1 } == (a & 1) }
|
40
|
+
is_asserted_by { (a & 1) == (1 & a) }
|
41
|
+
|
42
|
+
is_asserted_by { a.convert { |x| x | 1 } == (a | 1) }
|
43
|
+
is_asserted_by { (a | 1) == (1 | a) }
|
44
|
+
|
45
|
+
is_asserted_by { a.convert { |x| x ^ 1 } == (a ^ 1) }
|
46
|
+
is_asserted_by { (a ^ 1) == (1 ^ a) }
|
47
|
+
|
48
|
+
# ---
|
49
|
+
is_asserted_by { a.convert { |x| x << 1 } == (a << 1) }
|
50
|
+
is_asserted_by { a.convert { |x| 1 << x } == (1 << a) }
|
51
|
+
|
52
|
+
is_asserted_by { a.convert { |x| x >> 1 } == (a >> 1) }
|
53
|
+
is_asserted_by { a.convert { |x| 1 >> x } == (1 >> a) }
|
54
|
+
end
|
55
|
+
|
56
|
+
example "max_min" do
|
57
|
+
a = CArray.int(3,3).seq!
|
58
|
+
b = a.reverse
|
59
|
+
|
60
|
+
# ---
|
61
|
+
is_asserted_by { CA_INT32([[8,7,6],
|
62
|
+
[5,4,5],
|
63
|
+
[6,7,8]]) == a.pmax(b) }
|
64
|
+
is_asserted_by { CA_INT32([[0,1,2],
|
65
|
+
[3,4,3],
|
66
|
+
[2,1,0]]) == a.pmin(b) }
|
67
|
+
# ---
|
68
|
+
is_asserted_by { CA_INT32([[0,0,0],
|
69
|
+
[0,0,0],
|
70
|
+
[0,0,0]]) == a.pmin(0) }
|
71
|
+
is_asserted_by { CA_INT32([[8,8,8],
|
72
|
+
[8,8,8],
|
73
|
+
[8,8,8]]) == a.pmax(8) }
|
74
|
+
# ---
|
75
|
+
is_asserted_by { CA_INT32([[0,0,0],
|
76
|
+
[0,0,0],
|
77
|
+
[0,0,0]]) == CA_INT32(0).pmin(a) }
|
78
|
+
is_asserted_by { CA_INT32([[8,8,8],
|
79
|
+
[8,8,8],
|
80
|
+
[8,8,8]]) == CA_INT32(8).pmax(a) }
|
81
|
+
# ---
|
82
|
+
is_asserted_by { CA_INT32([[8,7,6],
|
83
|
+
[5,4,5],
|
84
|
+
[6,7,8]]) == CAMath.max(a, b) }
|
85
|
+
is_asserted_by { CA_INT32([[0,1,2],
|
86
|
+
[3,4,3],
|
87
|
+
[2,1,0]]) == CAMath.min(a, b) }
|
88
|
+
# ---
|
89
|
+
is_asserted_by { CA_INT32([[0,0,0],
|
90
|
+
[0,0,0],
|
91
|
+
[0,0,0]]) == CAMath.min(0,a,b,8) }
|
92
|
+
is_asserted_by { CA_INT32([[8,8,8],
|
93
|
+
[8,8,8],
|
94
|
+
[8,8,8]]) == CAMath.max(0,a,b,8) }
|
95
|
+
end
|
96
|
+
|
97
|
+
end
|
@@ -0,0 +1,146 @@
|
|
1
|
+
|
2
|
+
require 'carray'
|
3
|
+
require "rspec-power_assert"
|
4
|
+
|
5
|
+
describe "TestCArrayOrder " do
|
6
|
+
|
7
|
+
example "where" do
|
8
|
+
# ---
|
9
|
+
a = CArray.int(3,3).seq!
|
10
|
+
c = (a % 2).eq(0)
|
11
|
+
is_asserted_by { a[c] == c.where.int }
|
12
|
+
end
|
13
|
+
|
14
|
+
example "index" do
|
15
|
+
# ---
|
16
|
+
a = CArray.float(3,3).seq!
|
17
|
+
is_asserted_by { CA_INT32([[0,1,2],
|
18
|
+
[3,4,5],
|
19
|
+
[6,7,8]]) == a.address }
|
20
|
+
is_asserted_by { CA_INT32([0, 1, 2]) == a.index(0) }
|
21
|
+
is_asserted_by { CA_INT32([0, 1, 2]) == a.index(1) }
|
22
|
+
end
|
23
|
+
|
24
|
+
example "indices" do
|
25
|
+
# ---
|
26
|
+
a = CArray.float(3,3).seq!
|
27
|
+
a.indices {|x, y|
|
28
|
+
is_asserted_by { CA_INT32([[0,0,0],
|
29
|
+
[1,1,1],
|
30
|
+
[2,2,2]]) == x }
|
31
|
+
is_asserted_by { CA_INT32([[0,1,2],
|
32
|
+
[0,1,2],
|
33
|
+
[0,1,2]]) == y }
|
34
|
+
}
|
35
|
+
end
|
36
|
+
|
37
|
+
example "reverse" do
|
38
|
+
a = CArray.int32(3,3).seq!
|
39
|
+
b = CArray.int32(3,3).seq!(8,-1)
|
40
|
+
|
41
|
+
# ---
|
42
|
+
is_asserted_by { b == a.reverse }
|
43
|
+
is_asserted_by { b == a.reversed }
|
44
|
+
|
45
|
+
c = a.to_ca.reverse!
|
46
|
+
is_asserted_by { b == c }
|
47
|
+
end
|
48
|
+
|
49
|
+
example "sort" do
|
50
|
+
a = CA_INT32([[5,4,3],
|
51
|
+
[0,1,2],
|
52
|
+
[8,7,6]])
|
53
|
+
s = CA_INT32([[0,1,2],
|
54
|
+
[3,4,5],
|
55
|
+
[6,7,8]])
|
56
|
+
# ---
|
57
|
+
is_asserted_by { s == a.sort }
|
58
|
+
b = a.to_ca
|
59
|
+
b.sort!
|
60
|
+
is_asserted_by { s == b }
|
61
|
+
end
|
62
|
+
|
63
|
+
example "sort_addr" do
|
64
|
+
a = CA_INT32([[5,4,3],
|
65
|
+
[0,1,2],
|
66
|
+
[8,7,6]])
|
67
|
+
# ---
|
68
|
+
is_asserted_by { CA_SIZE([[3,4,5],
|
69
|
+
[2,1,0],
|
70
|
+
[8,7,6]]) == a.sort_addr }
|
71
|
+
is_asserted_by { CA_INT32([[5,4,3],
|
72
|
+
[0,1,2],
|
73
|
+
[8,7,6]]) == a.order }
|
74
|
+
# ---
|
75
|
+
is_asserted_by { CA_SIZE([[6,7,8],
|
76
|
+
[0,1,2],
|
77
|
+
[5,4,3]]) == a.sort_addr.reverse }
|
78
|
+
is_asserted_by { CA_INT32([[3,4,5],
|
79
|
+
[8,7,6],
|
80
|
+
[0,1,2]]) == a.order(-1) }
|
81
|
+
end
|
82
|
+
|
83
|
+
# example "uniq" do
|
84
|
+
# a = CArray.int(100).random!(10)
|
85
|
+
#
|
86
|
+
# # ---
|
87
|
+
# is_asserted_by { a.to_a.uniq, a.uniq.to_a)
|
88
|
+
#
|
89
|
+
# end
|
90
|
+
|
91
|
+
example "search" do
|
92
|
+
# ---
|
93
|
+
a = CArray.int(9,9).seq!
|
94
|
+
is_asserted_by { 50 == a.bsearch(50) }
|
95
|
+
is_asserted_by { 50 == a.search(50) }
|
96
|
+
is_asserted_by { [5, 5] == a.bsearch_index(50) }
|
97
|
+
is_asserted_by { [5, 5] == a.search_index(50) }
|
98
|
+
# ---
|
99
|
+
a = CArray.int(9,9).seq!(0,2)
|
100
|
+
is_asserted_by { nil == a.bsearch(51) }
|
101
|
+
is_asserted_by { nil == a.search(51) }
|
102
|
+
is_asserted_by { nil == a.bsearch_index(51) }
|
103
|
+
is_asserted_by { nil == a.search_index(51) }
|
104
|
+
# ---
|
105
|
+
a = CArray.float(9,9).span!(0..80)
|
106
|
+
is_asserted_by { 50 == a.bsearch(50) }
|
107
|
+
is_asserted_by { 50 == a.search(50) }
|
108
|
+
is_asserted_by { [5, 5] == a.bsearch_index(50) }
|
109
|
+
is_asserted_by { [5, 5] == a.search_index(50) }
|
110
|
+
|
111
|
+
is_asserted_by { nil == a.bsearch(50.0001) }
|
112
|
+
is_asserted_by { nil == a.search(50.0001) }
|
113
|
+
is_asserted_by { nil == a.bsearch_index(50.0001) }
|
114
|
+
is_asserted_by { nil == a.search_index(50.0001) }
|
115
|
+
# ---
|
116
|
+
a = CArray.float(9,9).span!(0..80)
|
117
|
+
is_asserted_by { 50 == a.search(50.0001, 0.0001) }
|
118
|
+
is_asserted_by { [5, 5] == a.search_index(50.0001, 0.0001) }
|
119
|
+
|
120
|
+
is_asserted_by { nil == a.search(50.0001, 1.0e-05) }
|
121
|
+
is_asserted_by { nil == a.search_index(50.0001, 1.0e-05) }
|
122
|
+
end
|
123
|
+
|
124
|
+
example "search_nearest " do
|
125
|
+
# ---
|
126
|
+
a = CArray.int(9,9).seq!
|
127
|
+
is_asserted_by { 50 == a.search_nearest(50) }
|
128
|
+
is_asserted_by { [5, 5] == a.search_nearest_index(50) }
|
129
|
+
# ---
|
130
|
+
a = CArray.int(9,9).seq!(0,2)
|
131
|
+
is_asserted_by { 25 == a.search_nearest(51) }
|
132
|
+
is_asserted_by { [2, 7] == a.search_nearest_index(51) }
|
133
|
+
# ---
|
134
|
+
a = CArray.float(9,9).span!(0..80)
|
135
|
+
is_asserted_by { 50 == a.search_nearest(50) }
|
136
|
+
is_asserted_by { [5, 5] == a.search_nearest_index(50) }
|
137
|
+
|
138
|
+
is_asserted_by { 50 == a.search_nearest(50.5) }
|
139
|
+
is_asserted_by { [5, 5] == a.search_nearest_index(50.5) }
|
140
|
+
|
141
|
+
# first detected
|
142
|
+
is_asserted_by { 49 == a.search_nearest(49.5) }
|
143
|
+
is_asserted_by { [5, 4] == a.search_nearest_index(49.5) }
|
144
|
+
|
145
|
+
end
|
146
|
+
end
|
@@ -0,0 +1,209 @@
|
|
1
|
+
|
2
|
+
require 'carray'
|
3
|
+
require "rspec-power_assert"
|
4
|
+
|
5
|
+
describe "TestCArrayRefStore " do
|
6
|
+
|
7
|
+
example "access_point" do
|
8
|
+
# ---
|
9
|
+
a = CArray.int(3,3).seq!
|
10
|
+
is_asserted_by { 0 == a[0, 0] }
|
11
|
+
is_asserted_by { 4 == a[1, 1] }
|
12
|
+
is_asserted_by { 8 == a[-1, -1] }
|
13
|
+
expect { a[0,3] }.to raise_error(IndexError)
|
14
|
+
expect { a[-4,0] }.to raise_error(IndexError)
|
15
|
+
|
16
|
+
# ---
|
17
|
+
a = CArray.int(3,3).seq!
|
18
|
+
a[0,0] = -1
|
19
|
+
a[1,1] = -2
|
20
|
+
a[-1,-1] = -3
|
21
|
+
is_asserted_by { (-1) == a[0, 0] }
|
22
|
+
is_asserted_by { (-2) == a[1, 1] }
|
23
|
+
is_asserted_by { (-3) == a[-1, -1] }
|
24
|
+
expect { a[0,3] = -4 }.to raise_error(IndexError)
|
25
|
+
expect { a[-4,0] = -5 }.to raise_error(IndexError)
|
26
|
+
end
|
27
|
+
|
28
|
+
example "access_block" do
|
29
|
+
# ---
|
30
|
+
a = CArray.int(3,3).seq!
|
31
|
+
is_asserted_by { CA_INT([1, 4, 7]) == a[0..-1, 1] }
|
32
|
+
is_asserted_by { CA_INT([[1], [4], [7]]) == a[0..-1, [1]] }
|
33
|
+
is_asserted_by { CABlock == a[0..2, 0..2].class }
|
34
|
+
is_asserted_by { a == a[0..2, 0..2] }
|
35
|
+
is_asserted_by { CABlock == a[nil, nil].class }
|
36
|
+
is_asserted_by { a == a[nil, nil] }
|
37
|
+
is_asserted_by { a == a[-3..-1, -3..-1] }
|
38
|
+
is_asserted_by { CA_INT([[0, 1, 2], [3, 4, 5]]) == a[0..1, nil] }
|
39
|
+
is_asserted_by { CA_INT([[0, 2], [3, 5]]) == a[0..1, [nil, 2]] }
|
40
|
+
expect { a[0,0..3] }.to raise_error(IndexError)
|
41
|
+
expect { a[-4..-1,0] }.to raise_error(IndexError)
|
42
|
+
expect { a[0,[0,3,2]] }.to raise_error(IndexError)
|
43
|
+
expect { a[0,[0,4]] }.to raise_error(IndexError)
|
44
|
+
|
45
|
+
# ---
|
46
|
+
a = CArray.int(3,3).seq!
|
47
|
+
is_asserted_by { CA_INT([[0, 1, 2], [3, 4, 5], [6, 7, 8]]) == a }
|
48
|
+
|
49
|
+
# ---
|
50
|
+
a = CArray.int(3,3).seq!
|
51
|
+
a[0..-1, 1] = 9
|
52
|
+
is_asserted_by { CA_INT([[0, 9, 2], [3, 9, 5], [6, 9, 8]]) == a }
|
53
|
+
|
54
|
+
# ---
|
55
|
+
a = CArray.int(3,3).seq!
|
56
|
+
a[0..-1, [1]] = 9
|
57
|
+
is_asserted_by { CA_INT([[0, 9, 2], [3, 9, 5], [6, 9, 8]]) == a }
|
58
|
+
|
59
|
+
# ---
|
60
|
+
a = CArray.int(3,3).seq!
|
61
|
+
a[nil, nil] = 9
|
62
|
+
is_asserted_by { CA_INT([[9, 9, 9], [9, 9, 9], [9, 9, 9]]) == a }
|
63
|
+
|
64
|
+
# ---
|
65
|
+
a = CArray.int(3,3).seq!
|
66
|
+
a[0..1, [nil,2]] = 9
|
67
|
+
is_asserted_by { CA_INT([[9, 1, 9], [9, 4, 9], [6, 7, 8]]) == a }
|
68
|
+
|
69
|
+
# ---
|
70
|
+
a = CArray.int(3,3).seq!
|
71
|
+
expect { a[0,0..3] = -3 }.to raise_error(IndexError)
|
72
|
+
expect { a[-4..-1,0] = -4 }.to raise_error(IndexError)
|
73
|
+
expect { a[0,[0,3,2]] = -5 }.to raise_error(IndexError)
|
74
|
+
expect { a[0,[0,4]] = -6 }.to raise_error(IndexError)
|
75
|
+
end
|
76
|
+
|
77
|
+
example "access_selection" do
|
78
|
+
# ---
|
79
|
+
a = CArray.int(3,3).seq!;
|
80
|
+
is_asserted_by { CA_INT([0, 1, 2, 3, 4]) == a[a < 5] }
|
81
|
+
|
82
|
+
# ---
|
83
|
+
a = CArray.int(3,3).seq!
|
84
|
+
a[a < 5] = 1
|
85
|
+
is_asserted_by { CA_INT([[1, 1, 1], [1, 1, 5], [6, 7, 8]]) == a }
|
86
|
+
end
|
87
|
+
|
88
|
+
# example "access_mapping" do
|
89
|
+
# # ---
|
90
|
+
# a = CArray.int(3,3).seq!;
|
91
|
+
# m = a.shuffle
|
92
|
+
# is_asserted_by { 10*m, (10*a)[m])
|
93
|
+
|
94
|
+
# ---
|
95
|
+
# a = CArray.int(3,3).seq!
|
96
|
+
# b = 10*a
|
97
|
+
# m = a.shuffle
|
98
|
+
# a[m] = (10*m)
|
99
|
+
# is_asserted_by { b, a)
|
100
|
+
# end
|
101
|
+
|
102
|
+
example "access_grid" do
|
103
|
+
# ---
|
104
|
+
a = CArray.int(3,3).seq!;
|
105
|
+
is_asserted_by { CA_INT([[1, 2], [4, 5]]) == a[CA_INT([0, 1]), 1..2] }
|
106
|
+
is_asserted_by { CA_INT([[0, 2], [6, 8]]) == a[+[0, 2], +[0, 2]] }
|
107
|
+
|
108
|
+
# ---
|
109
|
+
a = CArray.int(3,3).seq!
|
110
|
+
a[+[0,2],+[0,2]] = 9
|
111
|
+
is_asserted_by { CA_INT([[9, 1, 9], [3, 4, 5], [9, 7, 9]]) == a }
|
112
|
+
end
|
113
|
+
|
114
|
+
example "access_repeat" do
|
115
|
+
# ---
|
116
|
+
# See test_CARepeat
|
117
|
+
end
|
118
|
+
|
119
|
+
example "access_method" do
|
120
|
+
# ---
|
121
|
+
a = CArray.int(3,3).seq!
|
122
|
+
is_asserted_by { CA_INT([0, 1, 2, 3, 4]) == a[:lt, 5] }
|
123
|
+
|
124
|
+
# ---
|
125
|
+
a = CArray.int(3,3).seq!
|
126
|
+
a[:lt,5] = 1
|
127
|
+
is_asserted_by { CA_INT([[1, 1, 1], [1, 1, 5], [6, 7, 8]]) == a }
|
128
|
+
end
|
129
|
+
|
130
|
+
example "access_address" do
|
131
|
+
# ---
|
132
|
+
a = CArray.int(3,3).seq!
|
133
|
+
is_asserted_by { 0 == a[0] }
|
134
|
+
is_asserted_by { 4 == a[4] }
|
135
|
+
is_asserted_by { 8 == a[-1] }
|
136
|
+
expect { a[9] }.to raise_error(IndexError)
|
137
|
+
expect { a[-10] }.to raise_error(IndexError)
|
138
|
+
|
139
|
+
# ---
|
140
|
+
a = CArray.int(3,3).seq!
|
141
|
+
a[0] = -1
|
142
|
+
a[4] = -2
|
143
|
+
a[-1] = -3
|
144
|
+
is_asserted_by { (-1) == a[0, 0] }
|
145
|
+
is_asserted_by { (-2) == a[1, 1] }
|
146
|
+
is_asserted_by { (-3) == a[-1, -1] }
|
147
|
+
expect { a[9] = -4 }.to raise_error(IndexError)
|
148
|
+
expect { a[-10] = -5 }.to raise_error(IndexError)
|
149
|
+
end
|
150
|
+
|
151
|
+
example "access_address_block" do
|
152
|
+
# ---
|
153
|
+
a = CArray.int(3,3).seq!
|
154
|
+
is_asserted_by { CA_INT([4]) == a[[4]] }
|
155
|
+
is_asserted_by { CA_INT([0, 1, 2, 3]) == a[[(0..3)]] }
|
156
|
+
is_asserted_by { CARefer == a[nil].class }
|
157
|
+
is_asserted_by { CA_INT([0, 1, 2, 3, 4, 5, 6, 7, 8]) == a[nil] }
|
158
|
+
expect { a[0..9] }.to raise_error(IndexError)
|
159
|
+
expect { a[-10..-1] }.to raise_error(IndexError)
|
160
|
+
|
161
|
+
# ---
|
162
|
+
a = CArray.int(3,3).seq!
|
163
|
+
is_asserted_by { CA_INT([[0, 1, 2], [3, 4, 5], [6, 7, 8]]) == a }
|
164
|
+
|
165
|
+
# ---
|
166
|
+
a = CArray.int(3,3).seq!
|
167
|
+
a[[1..-1,3]] = 9
|
168
|
+
is_asserted_by { CA_INT([[0, 9, 2], [3, 9, 5], [6, 9, 8]]) == a }
|
169
|
+
|
170
|
+
# ---
|
171
|
+
a = CArray.int(3,3).seq!
|
172
|
+
a[[1,3,3]] = 9
|
173
|
+
is_asserted_by { CA_INT([[0, 9, 2], [3, 9, 5], [6, 9, 8]]) == a }
|
174
|
+
|
175
|
+
# ---
|
176
|
+
a = CArray.int(3,3).seq!
|
177
|
+
a[nil] = 9
|
178
|
+
is_asserted_by { CA_INT([[9, 9, 9], [9, 9, 9], [9, 9, 9]]) == a }
|
179
|
+
|
180
|
+
# ---
|
181
|
+
a = CArray.int(3,3).seq!
|
182
|
+
expect { a[0..9] = -3 }.to raise_error(IndexError)
|
183
|
+
expect { a[-10..-1] = -4 }.to raise_error(IndexError)
|
184
|
+
end
|
185
|
+
|
186
|
+
example "access_address_selection" do
|
187
|
+
# ---
|
188
|
+
a = CArray.int(3,3).seq!;
|
189
|
+
a1 = a.flatten
|
190
|
+
is_asserted_by { CA_INT([0, 1, 2, 3, 4]) == a[a1 < 5] }
|
191
|
+
|
192
|
+
# ---
|
193
|
+
a = CArray.int(3,3).seq!
|
194
|
+
a[a1 < 5] = 1
|
195
|
+
is_asserted_by { CA_INT([[1, 1, 1], [1, 1, 5], [6, 7, 8]]) == a }
|
196
|
+
end
|
197
|
+
|
198
|
+
example "access_address_grid" do
|
199
|
+
# ---
|
200
|
+
a = CArray.int(3,3).seq!;
|
201
|
+
is_asserted_by { CA_INT([0, 2, 4, 6, 8]) == a[+[0, 2, 4, 6, 8]] }
|
202
|
+
|
203
|
+
# ---
|
204
|
+
a = CArray.int(3,3).seq!
|
205
|
+
a[+[0,2,4,6,8]] = 9
|
206
|
+
is_asserted_by { CA_INT([[9, 1, 9], [3, 9, 5], [9, 7, 9]]) == a }
|
207
|
+
end
|
208
|
+
|
209
|
+
end
|