Mercurial > hg > octave-nkf
annotate src/operators/op-b-b.cc @ 15163:886d1fc9d575 gui
GUI branch merged in, closing the GUI branch
author | Jordi Gutiérrez Hermoso <jordigh@octave.org> |
---|---|
date | Mon, 13 Aug 2012 11:01:26 -0400 |
parents | 46b19589b593 |
children |
rev | line source |
---|---|
2928 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 1996-2012 John W. Eaton |
2928 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
2928 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
2928 | 20 |
21 */ | |
22 | |
23 #ifdef HAVE_CONFIG_H | |
24 #include <config.h> | |
25 #endif | |
26 | |
27 #include "gripes.h" | |
4055 | 28 #include "oct-obj.h" |
2928 | 29 #include "ov.h" |
30 #include "ov-bool.h" | |
4964 | 31 #include "ov-bool-mat.h" |
4915 | 32 #include "ov-scalar.h" |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
33 #include "ov-float.h" |
4915 | 34 #include "ov-re-mat.h" |
2928 | 35 #include "ov-typeinfo.h" |
36 #include "ops.h" | |
37 #include "xdiv.h" | |
38 #include "xpow.h" | |
39 | |
3203 | 40 // bool unary ops. |
41 | |
42 // scalar unary ops. | |
43 | |
44 DEFUNOP_OP (not, bool, !) | |
4965 | 45 |
46 UNOPDECL (uplus, a) | |
47 { | |
48 CAST_UNOP_ARG (const octave_bool&); | |
49 return octave_value (v.double_value ()); | |
50 } | |
51 | |
52 UNOPDECL (uminus, a) | |
53 { | |
54 CAST_UNOP_ARG (const octave_bool&); | |
55 return octave_value (- v.double_value ()); | |
56 } | |
57 | |
3203 | 58 DEFUNOP_OP (transpose, bool, /* no-op */) |
59 DEFUNOP_OP (hermitian, bool, /* no-op */) | |
60 | |
2928 | 61 // bool by bool ops. |
62 | |
63 DEFBINOP_OP (eq, bool, bool, ==) | |
64 DEFBINOP_OP (ne, bool, bool, !=) | |
3798 | 65 DEFBINOP_OP (el_and, bool, bool, &&) |
66 DEFBINOP_OP (el_or, bool, bool, ||) | |
3797 | 67 |
4964 | 68 DEFNDCATOP_FN (b_b, bool, bool, bool_array, bool_array, concat) |
4915 | 69 DEFNDCATOP_FN (b_s, bool, scalar, array, array, concat) |
70 DEFNDCATOP_FN (s_b, scalar, bool, array, array, concat) | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
71 DEFNDCATOP_FN (b_f, bool, float_scalar, float_array, float_array, concat) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
72 DEFNDCATOP_FN (f_b, float_scalar, bool, float_array, float_array, concat) |
4915 | 73 |
2928 | 74 void |
75 install_b_b_ops (void) | |
76 { | |
3538 | 77 INSTALL_UNOP (op_not, octave_bool, not); |
4965 | 78 INSTALL_UNOP (op_uplus, octave_bool, uplus); |
79 INSTALL_UNOP (op_uminus, octave_bool, uminus); | |
3538 | 80 INSTALL_UNOP (op_transpose, octave_bool, transpose); |
81 INSTALL_UNOP (op_hermitian, octave_bool, hermitian); | |
3203 | 82 |
3538 | 83 INSTALL_BINOP (op_eq, octave_bool, octave_bool, eq); |
84 INSTALL_BINOP (op_ne, octave_bool, octave_bool, ne); | |
3797 | 85 INSTALL_BINOP (op_el_and, octave_bool, octave_bool, el_and); |
86 INSTALL_BINOP (op_el_or, octave_bool, octave_bool, el_or); | |
4915 | 87 |
88 INSTALL_CATOP (octave_bool, octave_bool, b_b); | |
89 INSTALL_CATOP (octave_bool, octave_scalar, b_s); | |
90 INSTALL_CATOP (octave_scalar, octave_bool, s_b); | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
91 INSTALL_CATOP (octave_bool, octave_float_scalar, b_f); |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
92 INSTALL_CATOP (octave_float_scalar, octave_bool, f_b); |
4964 | 93 |
94 INSTALL_ASSIGNCONV (octave_bool, octave_bool, octave_bool_matrix); | |
2928 | 95 } |