3278
|
1 /* |
|
2 |
7017
|
3 Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, |
|
4 2006, 2007 John W. Eaton |
3278
|
5 |
|
6 This file is part of Octave. |
|
7 |
|
8 Octave is free software; you can redistribute it and/or modify it |
|
9 under the terms of the GNU General Public License as published by the |
7016
|
10 Free Software Foundation; either version 3 of the License, or (at your |
|
11 option) any later version. |
3278
|
12 |
|
13 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
16 for more details. |
|
17 |
|
18 You should have received a copy of the GNU General Public License |
7016
|
19 along with Octave; see the file COPYING. If not, see |
|
20 <http://www.gnu.org/licenses/>. |
3278
|
21 |
|
22 */ |
|
23 |
|
24 #if !defined (octave_base_scalar_h) |
|
25 #define octave_base_scalar_h 1 |
|
26 |
|
27 #include <cstdlib> |
|
28 |
3503
|
29 #include <iostream> |
3278
|
30 #include <string> |
|
31 |
|
32 #include "lo-mappers.h" |
|
33 #include "lo-utils.h" |
|
34 #include "oct-alloc.h" |
|
35 #include "str-vec.h" |
6376
|
36 #include "MatrixType.h" |
3278
|
37 |
|
38 #include "ov-base.h" |
|
39 #include "ov-typeinfo.h" |
|
40 |
|
41 // Real scalar values. |
|
42 |
|
43 template <class ST> |
|
44 class |
|
45 octave_base_scalar : public octave_base_value |
|
46 { |
|
47 public: |
|
48 |
|
49 octave_base_scalar (void) |
6376
|
50 : octave_base_value (), typ (MatrixType ()) { } |
3278
|
51 |
6376
|
52 octave_base_scalar (const ST& s, const MatrixType& t = MatrixType ()) |
|
53 : octave_base_value (), scalar (s), typ (t) { } |
3278
|
54 |
|
55 octave_base_scalar (const octave_base_scalar& s) |
6376
|
56 : octave_base_value (), scalar (s.scalar), typ (s.typ) { } |
3278
|
57 |
|
58 ~octave_base_scalar (void) { } |
|
59 |
5759
|
60 octave_base_value *clone (void) const { return new octave_base_scalar (*this); } |
|
61 octave_base_value *empty_clone (void) const { return new octave_base_scalar (); } |
4981
|
62 |
4759
|
63 octave_value squeeze (void) const { return scalar; } |
|
64 |
4247
|
65 octave_value subsref (const std::string& type, |
4219
|
66 const std::list<octave_value_list>& idx); |
3933
|
67 |
4661
|
68 octave_value_list subsref (const std::string&, |
|
69 const std::list<octave_value_list>&, int) |
4271
|
70 { |
|
71 panic_impossible (); |
|
72 return octave_value_list (); |
|
73 } |
|
74 |
4247
|
75 octave_value subsasgn (const std::string& type, |
4219
|
76 const std::list<octave_value_list>& idx, |
3933
|
77 const octave_value& rhs); |
|
78 |
3278
|
79 bool is_constant (void) const { return true; } |
|
80 |
|
81 bool is_defined (void) const { return true; } |
|
82 |
4563
|
83 dim_vector dims (void) const { static dim_vector dv (1, 1); return dv; } |
|
84 |
5602
|
85 octave_idx_type nnz (void) const { return (scalar != ST ()) ? 1 : 0; } |
|
86 |
4901
|
87 octave_value permute (const Array<int>&, bool = false) const |
4875
|
88 { return scalar; } |
|
89 |
4791
|
90 size_t byte_size (void) const { return sizeof (ST); } |
|
91 |
4901
|
92 octave_value all (int = 0) const { return (scalar != ST ()); } |
3278
|
93 |
4901
|
94 octave_value any (int = 0) const { return (scalar != ST ()); } |
3278
|
95 |
6376
|
96 MatrixType matrix_type (void) const { return typ; } |
|
97 MatrixType matrix_type (const MatrixType& _typ) const |
|
98 { MatrixType ret = typ; typ = _typ; return ret; } |
|
99 |
3278
|
100 bool is_scalar_type (void) const { return true; } |
|
101 |
|
102 bool is_numeric_type (void) const { return true; } |
|
103 |
4901
|
104 bool is_true (void) const { return (scalar != ST ()); } |
3278
|
105 |
3523
|
106 void print (std::ostream& os, bool pr_as_read_syntax = false) const; |
3278
|
107 |
3523
|
108 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; |
3278
|
109 |
3523
|
110 bool print_name_tag (std::ostream& os, const std::string& name) const; |
3278
|
111 |
5900
|
112 // Unsafe. This function exists to support the MEX interface. |
|
113 // You should not use it anywhere else. |
|
114 void *mex_get_data (void) const { return const_cast<ST *> (&scalar); } |
|
115 |
3278
|
116 protected: |
|
117 |
|
118 // The value of this scalar. |
|
119 ST scalar; |
6376
|
120 |
|
121 mutable MatrixType typ; |
3278
|
122 }; |
|
123 |
|
124 #endif |
|
125 |
|
126 /* |
|
127 ;;; Local Variables: *** |
|
128 ;;; mode: C++ *** |
|
129 ;;; End: *** |
|
130 */ |