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 before assignment");
138 UTIL_THROW(
"Unequal capacities in assignment");
143 for (
int i = 0; i < capacity1_*capacity2_; ++i) {
144 data_[i] = other.
data_[i];
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");
175 if (data_ != 0)
UTIL_THROW(
"Attempt to re-allocate a Matrix");
178 capacity1_ = capacity1;
179 capacity2_ = capacity2;
187 template <
class Data>
190 if (!isAllocated()) {
201 template <
class Data>
203 {
return !(data_ == 0); }
208 template <
class Data>
209 template <
class Archive>
212 int capacity1, capacity2;
213 if (Archive::is_saving()) {
214 if (!isAllocated()) {
215 UTIL_THROW(
"Cannot save unallocated DMatrix.");
217 capacity1 = capacity1_;
218 capacity2 = capacity2_;
222 if (Archive::is_loading()) {
223 if (!isAllocated()) {
224 if (capacity1 > 0 && capacity2 > 0) {
225 allocate(capacity1, capacity2);
227 UTIL_THROW(
"Unallocated DMatrix, invalid capacity values");
230 if (capacity1 != capacity1_) {
231 UTIL_THROW(
"Inconsistent DMatrix capacity1 values");
233 if (capacity2 != capacity2_) {
234 UTIL_THROW(
"Inconsistent DMatrix capacity2 values");
238 for (
int i = 0; i < capacity1_*capacity2_; ++i) {
Dynamically allocated Matrix.
void serialize(Archive &ar, const unsigned int version)
Serialize a DMatrix to/from an Archive.
DMatrix< Data > & operator=(DMatrix< Data > const &other)
Assignment.
void allocate(int capacity1, int capacity2)
Allocate memory for a matrix.
bool isAllocated() const
Return true if the DMatrix has been allocated, false otherwise.
void deallocate()
Deallocate the underlying memory block.
DMatrix(DMatrix< Data > const &other)
Copy constructor.
Two-dimensional array container template (abstract).
int capacity2() const
Get number of columns (range of the second array index).
Data * data_
Pointer to 1D C array of all elements.
int capacity2_
Number of columns (range of first index).
int capacity1_
Number of rows (range of first index).
int capacity1() const
Get number of rows (range of the first array index).
static void deallocate(Data *&ptr, size_t size)
Deallocate a C++ array.
static void allocate(Data *&ptr, size_t size)
Allocate a C++ array.
File containing preprocessor macros for error handling.
#define UTIL_THROW(msg)
Macro for throwing an Exception, reporting function, file and line number.
Utility classes for scientific computation.