25 #ifndef UQ_DIST_ARRAY_H
26 #define UQ_DIST_ARRAY_H
28 #include <queso/Defines.h>
29 #include <queso/Map.h>
30 #ifdef QUESO_HAS_TRILINOS
31 #include <EpetraExt_DistArray.h>
64 const int inputRowSize);
77 const T&
operator ()(
int localElementId,
int colId)
const;
92 void print (std::ostream& os)
const;
93 friend std::ostream & operator<<(std::ostream& os, const DistArray<T>& obj)
112 #ifdef QUESO_HAS_TRILINOS
122 #endif // UQ_DIST_ARRAY_H
A class for partitioning vectors and matrices.
DistArray(const DistArray< T > &src)
Copy constructor. Private.
int RowSize() const
Returns the row size, that is, the amount of data associated with each element.
DistArray< T > & operator=(const DistArray< T > &rhs)
Assignment operator.
std::vector< std::vector< T > > m_elements
EpetraExt::DistArray< T > * m_epetraDistArray
DistArray()
Default constructor. Do not call this directly.
void print(std::ostream &os) const
T & operator()(int localElementId, int colId)
Returns a reference to the colId column component of the localElementId local element.
int GlobalLength() const
Returns the global length of the array.
int MyLength() const
Returns the length of the locally owned array.
A class for partitioning vectors and matrices.