1 ////////////////////////////////////////////////////////////////////////
2 //
3 // Copyright (C) 2001-2021 The Octave Project Developers
4 //
5 // See the file COPYRIGHT.md in the top-level directory of this
6 // distribution or <https://octave.org/copyright/>.
7 //
8 // This file is part of Octave.
9 //
10 // Octave is free software: you can redistribute it and/or modify it
11 // under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 3 of the License, or
13 // (at your option) any later version.
14 //
15 // Octave is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with Octave; see the file COPYING.  If not, see
22 // <https://www.gnu.org/licenses/>.
23 //
24 ////////////////////////////////////////////////////////////////////////
25 
26 #if defined (HAVE_CONFIG_H)
27 #  include "config.h"
28 #endif
29 
30 #include "errwarn.h"
31 #include "ovl.h"
32 #include "ov.h"
33 #include "ov-bool.h"
34 #include "ov-bool-mat.h"
35 #include "ov-scalar.h"
36 #include "ov-float.h"
37 #include "ov-re-mat.h"
38 #include "ov-flt-re-mat.h"
39 #include "ov-str-mat.h"
40 #include "ov-int8.h"
41 #include "ov-int16.h"
42 #include "ov-int32.h"
43 #include "ov-int64.h"
44 #include "ov-uint8.h"
45 #include "ov-uint16.h"
46 #include "ov-uint32.h"
47 #include "ov-uint64.h"
48 #include "ov-typeinfo.h"
49 #include "ops.h"
50 #include "xdiv.h"
51 #include "xpow.h"
52 
53 // bool matrix by bool ops.
54 
DEFNDBINOP_FN(el_and,bool_matrix,bool,bool_array,bool,mx_el_and)55 DEFNDBINOP_FN (el_and, bool_matrix, bool, bool_array, bool, mx_el_and)
56 DEFNDBINOP_FN (el_or, bool_matrix, bool, bool_array, bool, mx_el_or)
57 
58 DEFNDBINOP_FN (el_not_and, bool_matrix, bool, bool_array, bool, mx_el_not_and)
59 DEFNDBINOP_FN (el_not_or, bool_matrix, bool, bool_array, bool, mx_el_not_or)
60 
61 DEFNDCATOP_FN (bm_b, bool_matrix, bool, bool_array, bool_array, concat)
62 DEFNDCATOP_FN (bm_s, bool_matrix, scalar, array, array, concat)
63 DEFNDCATOP_FN (m_b, matrix, bool, array, array, concat)
64 DEFNDCATOP_FN (bm_f, bool_matrix, float_scalar, float_array, float_array,
65                concat)
66 DEFNDCATOP_FN (fm_b, float_matrix, bool, float_array, float_array, concat)
67 
68 DEFNDASSIGNOP_FN (assign, bool_matrix, bool, bool_array, assign)
69 
70 static octave_value
71 oct_assignop_conv_and_assign (octave_base_value& a1,
72                               const octave_value_list& idx,
73                               const octave_base_value& a2)
74 {
75   octave_bool_matrix& v1 = dynamic_cast<octave_bool_matrix&> (a1);
76 
77   // FIXME: perhaps add a warning for this conversion
78   //        if the values are not all 0 or 1?
79 
80   boolNDArray v2 = a2.bool_array_value (true);
81 
82   v1.assign (idx, v2);
83 
84   return octave_value ();
85 }
86 
87 void
install_bm_b_ops(octave::type_info & ti)88 install_bm_b_ops (octave::type_info& ti)
89 {
90   INSTALL_BINOP_TI (ti, op_el_and, octave_bool_matrix, octave_bool, el_and);
91   INSTALL_BINOP_TI (ti, op_el_or, octave_bool_matrix, octave_bool, el_or);
92   INSTALL_BINOP_TI (ti, op_el_not_and, octave_bool_matrix, octave_bool, el_not_and);
93   INSTALL_BINOP_TI (ti, op_el_not_or, octave_bool_matrix, octave_bool, el_not_or);
94 
95   INSTALL_CATOP_TI (ti, octave_bool_matrix, octave_bool, bm_b);
96   INSTALL_CATOP_TI (ti, octave_bool_matrix, octave_scalar, bm_s);
97   INSTALL_CATOP_TI (ti, octave_matrix, octave_bool, m_b);
98   INSTALL_CATOP_TI (ti, octave_bool_matrix, octave_float_scalar, bm_f);
99   INSTALL_CATOP_TI (ti, octave_float_matrix, octave_bool, fm_b);
100 
101   INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_bool_matrix, octave_bool, assign);
102 
103   INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_bool_matrix, octave_scalar,
104                        conv_and_assign);
105 
106   INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_bool_matrix, octave_int8_scalar,
107                        conv_and_assign);
108   INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_bool_matrix, octave_int16_scalar,
109                        conv_and_assign);
110   INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_bool_matrix, octave_int32_scalar,
111                        conv_and_assign);
112   INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_bool_matrix, octave_int64_scalar,
113                        conv_and_assign);
114 
115   INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_bool_matrix, octave_uint8_scalar,
116                        conv_and_assign);
117   INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_bool_matrix, octave_uint16_scalar,
118                        conv_and_assign);
119   INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_bool_matrix, octave_uint32_scalar,
120                        conv_and_assign);
121   INSTALL_ASSIGNOP_TI (ti, op_asn_eq, octave_bool_matrix, octave_uint64_scalar,
122                        conv_and_assign);
123 }
124