Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038 #ifndef Matrix_H
00039 #define Matrix_H
00040
00041 #include <OpenFOAM/bool.H>
00042 #include <OpenFOAM/label.H>
00043 #include <OpenFOAM/uLabel.H>
00044 #include <OpenFOAM/List.H>
00045 #include <OpenFOAM/autoPtr.H>
00046
00047
00048
00049 namespace Foam
00050 {
00051
00052
00053
00054 template<class Form, class Type> class Matrix;
00055
00056 template<class Form, class Type> Istream& operator>>
00057 (
00058 Istream&,
00059 Matrix<Form, Type>&
00060 );
00061
00062 template<class Form, class Type> Ostream& operator<<
00063 (
00064 Ostream&,
00065 const Matrix<Form, Type>&
00066 );
00067
00068
00069
00070
00071
00072
00073 template<class Form, class Type>
00074 class Matrix
00075 {
00076
00077
00078
00079 label n_, m_;
00080
00081
00082 Type** __restrict__ v_;
00083
00084
00085
00086 void allocate();
00087
00088
00089 public:
00090
00091
00092
00093
00094 inline static const Matrix<Form, Type>& null();
00095
00096
00097
00098
00099
00100 inline Matrix();
00101
00102
00103 Matrix(const label n, const label m);
00104
00105
00106
00107 Matrix(const label n, const label m, const Type&);
00108
00109
00110 Matrix(const Matrix<Form, Type>&);
00111
00112
00113 Matrix(Istream&);
00114
00115
00116 inline autoPtr<Matrix<Form, Type> > clone() const;
00117
00118
00119
00120
00121 ~Matrix();
00122
00123
00124
00125
00126
00127
00128
00129 inline label n() const;
00130
00131
00132 inline label m() const;
00133
00134
00135 inline label size() const;
00136
00137
00138
00139
00140
00141 inline void checki(const label i) const;
00142
00143
00144 inline void checkj(const label j) const;
00145
00146
00147
00148
00149
00150 void clear();
00151
00152
00153
00154 void transfer(Matrix<Form, Type>&);
00155
00156
00157
00158 Form T() const;
00159
00160
00161
00162
00163
00164 inline Type* operator[](const label);
00165
00166
00167 inline const Type* operator[](const label) const;
00168
00169
00170 void operator=(const Matrix<Form, Type>&);
00171
00172
00173 void operator=(const Type&);
00174
00175
00176
00177
00178
00179 friend Istream& operator>> <Form, Type>(Istream&, Matrix<Form, Type>&);
00180
00181
00182 friend Ostream& operator<< <Form, Type>(Ostream&, const Matrix<Form, Type>&);
00183 };
00184
00185
00186
00187
00188 template<class Form, class Type> const Type& max(const Matrix<Form, Type>&);
00189 template<class Form, class Type> const Type& min(const Matrix<Form, Type>&);
00190
00191 template<class Form, class Type> Form operator-(const Matrix<Form, Type>&);
00192
00193 template<class Form, class Type> Form operator+
00194 (
00195 const Matrix<Form, Type>&,
00196 const Matrix<Form, Type>&
00197 );
00198
00199 template<class Form, class Type> Form operator-
00200 (
00201 const Matrix<Form, Type>&,
00202 const Matrix<Form, Type>&
00203 );
00204
00205 template<class Form, class Type> Form operator*
00206 (
00207 const scalar,
00208 const Matrix<Form, Type>&
00209 );
00210
00211
00212
00213
00214 }
00215
00216
00217
00218 # include <OpenFOAM/MatrixI.H>
00219
00220
00221
00222 #ifdef NoRepository
00223 # include <OpenFOAM/Matrix.C>
00224 #endif
00225
00226
00227
00228 #endif
00229
00230