12 #ifndef HELIB_PTRMATRIX_H
13 #define HELIB_PTRMATRIX_H
19 #include <initializer_list>
20 #include <helib/PtrVector.h>
30 virtual long size()
const = 0;
32 #pragma GCC diagnostic push
33 #pragma GCC diagnostic ignored "-Wunused-parameter"
36 throw LogicError(
"Cannot resize generic PtrMatrix");
38 #pragma GCC diagnostic pop
45 for (
long i = 0; i <
size(); i++) {
46 const T* pt = (*this)[i].ptr2nonNull();
82 for (
auto elem : list) {
83 const T* ptr = elem->ptr2nonNull();
99 std::vector<PtrVector_VecT<T>>
rows;
106 for (
int i = 0; i <
lsize(mat); i++)
120 long oldSize =
size();
121 if (oldSize == newSize)
124 buffer.SetLength(newSize);
125 if (newSize > oldSize) {
126 rows.reserve(newSize);
127 for (
int i = oldSize; i < newSize; i++)
133 std::cerr <<
"Attempt to shrink PtrMatrix_Vec failed\n";
139 template <
typename T>
143 std::vector<PtrVector_VecT<T>>
rows;
150 for (
int i = 0; i <
lsize(mat); i++)
165 template <
typename T>
169 std::vector<PtrVector_vectorT<T>>
rows;
175 for (
int i = 0; i <
lsize(mat); i++)
189 long oldSize =
size();
190 if (oldSize == newSize)
194 if (newSize > oldSize) {
195 rows.reserve(newSize);
196 for (
int i = oldSize; i < newSize; i++)
202 std::cerr <<
"Attempt to shrink PtrMatrix_vector failed\n";
208 template <
typename T>
212 std::vector<PtrVector_vectorT<T>>
rows;
218 for (
int i = 0; i <
lsize(mat); i++)
234 #endif // ifndef HELIB_PTRMATRIX_H
long lsize(const std::vector< T > &v)
Size of STL vector as a long (rather than unsigned long)
Definition: NumbTh.h:702
const PtrVector< T > & operator[](long i) const override
Definition: PtrMatrix.h:113
PtrMatrix_ptVec(NTL::Vec< NTL::Vec< T > * > &mat)
Definition: PtrMatrix.h:147
virtual const PtrVector< T > & operator[](long) const =0
An implementation of PtrMatrix using vector< vector<T> >
Definition: PtrMatrix.h:167
An abstract class for an array of PtrVectors.
Definition: PtrMatrix.h:27
virtual ~PtrMatrix()
Definition: PtrMatrix.h:39
long size() const override
Definition: PtrMatrix.h:229
NTL::Vec< NTL::Vec< T > * > & buffer
Definition: PtrMatrix.h:142
std::vector< PtrVector_vectorT< T > > rows
Definition: PtrMatrix.h:212
long size() const override
Definition: PtrMatrix.h:186
Inherits from Exception and std::logic_error.
Definition: exceptions.h:68
const PtrVector< T > & operator[](long i) const override
Definition: PtrMatrix.h:157
long size() const override
Definition: PtrMatrix.h:117
PtrVector< T > & operator[](long i) override
Definition: PtrMatrix.h:109
An implementation of PtrMatrix using Vec< Vec<T>* >
Definition: PtrMatrix.h:141
std::vector< std::vector< T > > & buffer
Definition: PtrMatrix.h:168
PtrVector< T > & operator[](long i) override
Definition: PtrMatrix.h:153
NTL::Vec< NTL::Vec< T > > & buffer
Definition: PtrMatrix.h:98
long size() const override
Definition: PtrMatrix.h:161
std::vector< PtrVector_VecT< T > > rows
Definition: PtrMatrix.h:99
An implementation of PtrMatrix using Vec< Vec<T> >
Definition: PtrMatrix.h:97
PtrVector< T > & operator[](long i) override
Definition: PtrMatrix.h:178
virtual PtrVector< T > & operator[](long)=0
const T * ptr2nonNull(std::initializer_list< const PtrVector< T > * > list)
Definition: PtrMatrix.h:80
void setLengthZero(std::vector< T > &vec)
Definition: NumbTh.h:724
void resize(NTL::Vec< T > &v, long sz, const T &val)
Definition: NumbTh.h:744
virtual long size() const =0
virtual const T * ptr2nonNull() const
Definition: PtrMatrix.h:43
PtrMatrix_Vec(NTL::Vec< NTL::Vec< T >> &mat)
Definition: PtrMatrix.h:103
Abstract class for an array of objects.
Definition: PtrVector.h:32
PtrMatrix_ptvector(std::vector< std::vector< T > * > &mat)
Definition: PtrMatrix.h:215
An implementation of PtrMatrix using vector< vector<T>* >
Definition: PtrMatrix.h:210
Definition: apiAttributes.h:21
std::vector< std::vector< T > * > & buffer
Definition: PtrMatrix.h:211
void resize(long newSize) override
Definition: PtrMatrix.h:187
const PtrVector< T > & operator[](long i) const override
Definition: PtrMatrix.h:182
void resize(long newSize) override
Definition: PtrMatrix.h:118
virtual void resize(long newSize)
Definition: PtrMatrix.h:34
PtrVector< T > & operator[](long i) override
Definition: PtrMatrix.h:221
PtrMatrix_vector(std::vector< std::vector< T >> &mat)
Definition: PtrMatrix.h:172
std::vector< PtrVector_VecT< T > > rows
Definition: PtrMatrix.h:143
const PtrVector< T > & operator[](long i) const override
Definition: PtrMatrix.h:225
std::vector< PtrVector_vectorT< T > > rows
Definition: PtrMatrix.h:169