1 #ifndef UTIL_D_MATRIX_H 2 #define UTIL_D_MATRIX_H 11 #include <util/containers/Matrix.h> 12 #include <util/misc/Memory.h> 23 template <
typename Data>
83 template <
class Archive>
84 void serialize(Archive& ar,
const unsigned int version);
93 template <
typename Data>
101 template <
typename Data>
106 if (other.
data_ == 0) {
107 UTIL_THROW(
"Other DMatrix must be allocated");
120 template <
typename Data>
124 if (
this == &other)
return *
this;
127 if (other.
data_ == 0) {
128 UTIL_THROW(
"RHS DMatrix must be allocated in assignment");
138 UTIL_THROW(
"Unequal capacities in assignment");
155 template <
typename Data>
169 template <
typename Data>
173 if (capacity1 <= 0)
UTIL_THROW(
"Capacity1 must be positive");
174 if (capacity2 <= 0)
UTIL_THROW(
"Capacity2 must be positive");
187 template <
class Data>
201 template <
class Data>
203 {
return !(
data_ == 0); }
208 template <
class Data>
209 template <
class Archive>
213 if (Archive::is_saving()) {
215 UTIL_THROW(
"Cannot save unallocated DMatrix.");
222 if (Archive::is_loading()) {
224 if (capacity1 > 0 && capacity2 > 0) {
227 UTIL_THROW(
"Unallocated DMatrix, invalid capacity values");
231 UTIL_THROW(
"Inconsistent DMatrix capacity1 values");
234 UTIL_THROW(
"Inconsistent DMatrix capacity2 values");
int capacity2_
Number of columns (range of first index).
void deallocate()
Deallocate the underlying memory block.
void allocate(int capacity1, int capacity2)
Allocate memory for a matrix.
File containing preprocessor macros for error handling.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
int capacity2() const
Get number of columns (range of the second array index).
int capacity1_
Number of rows (range of first index).
Dynamically allocated Matrix.
void serialize(Archive &ar, const unsigned int version)
Serialize a DMatrix to/from an Archive.
Utility classes for scientific computation.
int capacity1() const
Get number of rows (range of the first array index).
Two-dimensional array container template (abstract).
DMatrix< Data > & operator=(const DMatrix< Data > &other)
Assignment.
Data * data_
Pointer to 1D C array of all elements.
bool isAllocated() const
Return true if the DMatrix has been allocated, false otherwise.