Public Member Functions | Private Types | Private Attributes | List of all members
Xpetra::EpetraCrsMatrixT< long long, EpetraNode > Class Template Reference

#include <Xpetra_EpetraCrsMatrix.hpp>

Inheritance diagram for Xpetra::EpetraCrsMatrixT< long long, EpetraNode >:
Xpetra::CrsMatrix< double, int, long long, EpetraNode > Xpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > Xpetra::DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > Teuchos::Describable Teuchos::LabeledObject

Public Member Functions

 EpetraCrsMatrixT (const EpetraCrsMatrixT &matrix)
 Deep copy constructor. More...
 
Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getMap () const
 Implements DistObject interface. More...
 
void doImport (const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)
 Import. More...
 
void doExport (const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &dest, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)
 Export. More...
 
void doImport (const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)
 Import (using an Exporter). More...
 
void doExport (const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &dest, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)
 Export (using an Importer). More...
 
void removeEmptyProcessesInPlace (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &newMap)
 
- Public Member Functions inherited from Xpetra::CrsMatrix< double, int, long long, EpetraNode >
virtual void getLocalRowCopy (intLocalRow, const ArrayView< int > &Indices, const ArrayView< double > &Values, size_t &NumEntries) const =0
 Extract a list of entries in a specified local row of the matrix. Put into storage allocated by calling routine. More...
 
virtual ~CrsMatrix ()
 Destructor. More...
 
virtual void insertGlobalValues (long longglobalRow, const ArrayView< const long long > &cols, const ArrayView< const double > &vals)=0
 Insert matrix entries, using global IDs. More...
 
virtual void insertLocalValues (intlocalRow, const ArrayView< const int > &cols, const ArrayView< const double > &vals)=0
 Insert matrix entries, using local IDs. More...
 
virtual void replaceGlobalValues (long longglobalRow, const ArrayView< const long long > &cols, const ArrayView< const double > &vals)=0
 Replace matrix entries, using global IDs. More...
 
virtual void replaceLocalValues (intlocalRow, const ArrayView< const int > &cols, const ArrayView< const double > &vals)=0
 Replace matrix entries, using local IDs. More...
 
virtual void setAllToScalar (const double &alpha)=0
 Set all matrix entries equal to scalarThis. More...
 
virtual void scale (const double &alpha)=0
 Scale the current values of a matrix, this = alpha*this. More...
 
virtual void allocateAllValues (size_t numNonZeros, ArrayRCP< size_t > &rowptr, ArrayRCP< int > &colind, ArrayRCP< double > &values)=0
 Allocates and returns ArrayRCPs of the Crs arrays — This is an Xpetra-only routine. More...
 
virtual void setAllValues (const ArrayRCP< size_t > &rowptr, const ArrayRCP< int > &colind, const ArrayRCP< double > &values)=0
 Sets the 1D pointer arrays of the graph. More...
 
virtual void getAllValues (ArrayRCP< const size_t > &rowptr, ArrayRCP< const int > &colind, ArrayRCP< const double > &values) const =0
 Gets the 1D pointer arrays of the graph. More...
 
virtual void fillComplete (const RCP< const Map< int, long long, EpetraNode > > &domainMap, const RCP< const Map< int, long long, EpetraNode > > &rangeMap, const RCP< ParameterList > &params=null)=0
 Signal that data entry is complete, specifying domain and range maps. More...
 
virtual void replaceDomainMapAndImporter (const Teuchos::RCP< const Map< int, long long, EpetraNode > > &newDomainMap, Teuchos::RCP< const Import< int, long long, EpetraNode > > &newImporter)=0
 Replaces the current domainMap and importer with the user-specified objects. More...
 
virtual void expertStaticFillComplete (const RCP< const Map< int, long long, EpetraNode > > &domainMap, const RCP< const Map< int, long long, EpetraNode > > &rangeMap, const RCP< const Import< int, long long, EpetraNode > > &importer=Teuchos::null, const RCP< const Export< int, long long, EpetraNode > > &exporter=Teuchos::null, const RCP< ParameterList > &params=Teuchos::null)=0
 Expert static fill complete. More...
 
virtual size_t getNumEntriesInLocalRow (intlocalRow) const =0
 Returns the current number of entries on this node in the specified local row. More...
 
virtual void getGlobalRowView (long longGlobalRow, ArrayView< const long long > &indices, ArrayView< const double > &values) const =0
 Extract a const, non-persisting view of global indices in a specified row of the matrix. More...
 
virtual void getGlobalRowCopy (long longGlobalRow, const ArrayView< long long > &indices, const ArrayView< double > &values, size_t &numEntries) const =0
 Extract a list of entries in a specified global row of this matrix. Put into pre-allocated storage. More...
 
virtual void getLocalRowView (intLocalRow, ArrayView< const int > &indices, ArrayView< const double > &values) const =0
 Extract a const, non-persisting view of local indices in a specified row of the matrix. More...
 
virtual void getLocalDiagCopy (Vector< double, int, long long, EpetraNode > &diag) const =0
 Get a copy of the diagonal entries owned by this node, with local row indices. More...
 
virtual void getLocalDiagCopy (Vector< double, int, long long, EpetraNode > &diag, const Teuchos::ArrayView< const size_t > &offsets) const =0
 Get a copy of the diagonal entries owned by this node, with local row indices, using row offsets. More...
 
virtual void removeEmptyProcessesInPlace (const RCP< const Map< int, long long, EpetraNode > > &newMap)=0
 
virtual void apply (const MultiVector< double, int, long long, EpetraNode > &X, MultiVector< double, int, long long, EpetraNode > &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, doublealpha=ScalarTraits< double >::one(), doublebeta=ScalarTraits< double >::zero()) const =0
 Computes the sparse matrix-multivector multiplication. More...
 
- Public Member Functions inherited from Xpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >
virtual ~RowMatrix ()
 Destructor. More...
 
virtual size_t getNumEntriesInLocalRow (LocalOrdinal localRow) const =0
 Returns the current number of entries on this node in the specified local row. More...
 
virtual void getLocalRowCopy (LocalOrdinal LocalRow, const Teuchos::ArrayView< LocalOrdinal > &Indices, const Teuchos::ArrayView< Scalar > &Values, size_t &NumEntries) const =0
 Extract a list of entries in a specified local row of the graph. Put into storage allocated by calling routine. More...
 
virtual void getGlobalRowView (GlobalOrdinal GlobalRow, ArrayView< const GlobalOrdinal > &indices, ArrayView< const Scalar > &values) const =0
 Extract a const, non-persisting view of global indices in a specified row of the matrix. More...
 
virtual void getLocalRowView (LocalOrdinal LocalRow, ArrayView< const LocalOrdinal > &indices, ArrayView< const Scalar > &values) const =0
 Extract a const, non-persisting view of local indices in a specified row of the matrix. More...
 
virtual void getLocalDiagCopy (Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &diag) const =0
 Get a copy of the diagonal entries owned by this node, with local row indices. More...
 
virtual void apply (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, Scalar alpha=Teuchos::ScalarTraits< Scalar >::one(), Scalar beta=Teuchos::ScalarTraits< Scalar >::zero()) const =0
 Computes the operator-multivector application. More...
 
- Public Member Functions inherited from Xpetra::DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node >
virtual ~DistObject ()
 Destructor. More...
 
virtual void doImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)=0
 Import data into this object using an Import object ("forward mode"). More...
 
virtual void doExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)=0
 Export data into this object using an Export object ("forward mode"). More...
 
virtual void doImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)=0
 Import data into this object using an Export object ("reverse mode"). More...
 
virtual void doExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)=0
 Export data into this object using an Import object ("reverse mode"). More...
 
- Public Member Functions inherited from Teuchos::Describable
void describe (std::ostream &out, const EVerbosityLevel verbLevel=verbLevel_default) const
 
virtual ~Describable ()
 
DescribableStreamManipulatorState describe (const Describable &describable, const EVerbosityLevel verbLevel=Describable::verbLevel_default)
 
std::ostream & operator<< (std::ostream &os, const DescribableStreamManipulatorState &d)
 
void describe (std::ostream &out, const EVerbosityLevel verbLevel=verbLevel_default) const
 
virtual ~Describable ()
 
- Public Member Functions inherited from Teuchos::LabeledObject
 LabeledObject ()
 
virtual ~LabeledObject ()
 
virtual void setObjectLabel (const std::string &objectLabel)
 
virtual std::string getObjectLabel () const
 

Private Types

typedef long long GlobalOrdinal
 
typedef EpetraNode Node
 
typedef CrsMatrix< double, int, GlobalOrdinal, Node >::scalar_type Scalar
 
typedef CrsMatrix< double, int, GlobalOrdinal, Node >::local_ordinal_type LocalOrdinal
 

Private Attributes

RCP< Epetra_CrsMatrix > mtx_
 
bool isFillResumed_
 

Constructor/Destructor Methods

 EpetraCrsMatrixT (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, size_t maxNumEntriesPerRow, ProfileType pftype=DynamicProfile, const Teuchos::RCP< Teuchos::ParameterList > &plist=Teuchos::null)
 Constructor specifying fixed number of entries for each row. More...
 
 EpetraCrsMatrixT (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, ProfileType pftype=DynamicProfile, const Teuchos::RCP< Teuchos::ParameterList > &plist=Teuchos::null)
 Constructor specifying (possibly different) number of entries in each row. More...
 
 EpetraCrsMatrixT (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, size_t maxNumEntriesPerRow, ProfileType pftype=DynamicProfile, const Teuchos::RCP< Teuchos::ParameterList > &plist=Teuchos::null)
 Constructor specifying column Map and fixed number of entries for each row. More...
 
 EpetraCrsMatrixT (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, ProfileType pftype=DynamicProfile, const Teuchos::RCP< Teuchos::ParameterList > &plist=Teuchos::null)
 Constructor specifying column Map and number of entries in each row. More...
 
 EpetraCrsMatrixT (const Teuchos::RCP< const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > &graph, const Teuchos::RCP< Teuchos::ParameterList > &plist=Teuchos::null)
 Constructor specifying a previously constructed graph. More...
 
 EpetraCrsMatrixT (const Teuchos::RCP< const CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &sourceMatrix, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap=Teuchos::null, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > &params=Teuchos::null)
 Constructor for a fused import. More...
 
 EpetraCrsMatrixT (const Teuchos::RCP< const CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &sourceMatrix, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap=Teuchos::null, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > &params=Teuchos::null)
 Constructor for a fused export. More...
 
virtual ~EpetraCrsMatrixT ()
 Destructor. More...
 

Insertion/Removal Methods

void insertGlobalValues (GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &cols, const ArrayView< const Scalar > &vals)
 Insert matrix entries, using global IDs. More...
 
void insertLocalValues (LocalOrdinal localRow, const ArrayView< const LocalOrdinal > &cols, const ArrayView< const Scalar > &vals)
 Insert matrix entries, using local IDs. More...
 
void replaceGlobalValues (GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &indices, const ArrayView< const Scalar > &values)
 Replace matrix entries, using global IDs. More...
 
void replaceLocalValues (LocalOrdinal localRow, const ArrayView< const LocalOrdinal > &indices, const ArrayView< const Scalar > &values)
 Replace matrix entries, using local IDs. More...
 
void setAllToScalar (const Scalar &alpha)
 Set all matrix entries equal to scalarThis. More...
 
void scale (const Scalar &alpha)
 Scale the current values of a matrix, this = alpha*this. More...
 
void allocateAllValues (size_t numNonZeros, ArrayRCP< size_t > &rowptr, ArrayRCP< LocalOrdinal > &colind, ArrayRCP< Scalar > &values)
 Allocates and returns ArrayRCPs of the Crs arrays — This is an Xpetra-only routine. More...
 
void setAllValues (const ArrayRCP< size_t > &rowptr, const ArrayRCP< LocalOrdinal > &colind, const ArrayRCP< Scalar > &values)
 Sets the 1D pointer arrays of the graph. More...
 
void getAllValues (ArrayRCP< const size_t > &rowptr, ArrayRCP< const LocalOrdinal > &colind, ArrayRCP< const Scalar > &values) const
 Gets the 1D pointer arrays of the graph. More...
 
void expertStaticFillComplete (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap, const RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > &importer=Teuchos::null, const RCP< const Export< LocalOrdinal, GlobalOrdinal, Node > > &exporter=Teuchos::null, const RCP< ParameterList > &params=Teuchos::null)
 Expert static fill complete. More...
 

Transformational Methods

void resumeFill (const RCP< ParameterList > &params=Teuchos::null)
 
void fillComplete (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap, const RCP< ParameterList > &params=Teuchos::null)
 Signal that data entry is complete, specifying domain and range maps. More...
 
void fillComplete (const RCP< ParameterList > &params=Teuchos::null)
 Signal that data entry is complete. More...
 
void replaceDomainMapAndImporter (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &newDomainMap, Teuchos::RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > &newImporter)
 Replaces the current domainMap and importer with the user-specified objects. More...
 

Methods implementing RowMatrix

const RCP< const Comm< int > > getComm () const
 Returns the communicator. More...
 
const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getRowMap () const
 Returns the Map that describes the row distribution in this matrix. More...
 
const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getColMap () const
 Returns the Map that describes the column distribution in this matrix. More...
 
RCP< const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > getCrsGraph () const
 Returns the CrsGraph associated with this matrix. More...
 
global_size_t getGlobalNumRows () const
 Number of global elements in the row map of this matrix. More...
 
global_size_t getGlobalNumCols () const
 Number of global columns in the matrix. More...
 
size_t getNodeNumRows () const
 Returns the number of matrix rows owned on the calling node. More...
 
size_t getNodeNumCols () const
 Returns the number of columns connected to the locally owned rows of this matrix. More...
 
global_size_t getGlobalNumEntries () const
 Returns the global number of entries in this matrix. More...
 
size_t getNodeNumEntries () const
 Returns the local number of entries in this matrix. More...
 
size_t getNumEntriesInLocalRow (LocalOrdinal localRow) const
 Returns the current number of entries on this node in the specified local row. More...
 
global_size_t getGlobalNumDiags () const
 Returns the number of global diagonal entries, based on global row/column index comparisons. More...
 
size_t getNodeNumDiags () const
 Returns the number of local diagonal entries, based on global row/column index comparisons. More...
 
size_t getGlobalMaxNumRowEntries () const
 Returns the maximum number of entries across all rows/columns on all nodes. More...
 
size_t getNodeMaxNumRowEntries () const
 Returns the maximum number of entries across all rows/columns on this node. More...
 
bool isLocallyIndexed () const
 If matrix indices are in the local range, this function returns true. Otherwise, this function returns false. More...
 
bool isGloballyIndexed () const
 If matrix indices are in the global range, this function returns true. Otherwise, this function returns false. More...
 
bool isFillComplete () const
 Returns true if the matrix is in compute mode, i.e. if fillComplete() has been called. More...
 
bool isFillActive () const
 Returns true if the matrix is in edit mode. More...
 
ScalarTraits< Scalar >::magnitudeType getFrobeniusNorm () const
 Returns the Frobenius norm of the matrix. More...
 
bool supportsRowViews () const
 Returns true if getLocalRowView() and getGlobalRowView() are valid for this class. More...
 
void getLocalRowCopy (LocalOrdinal LocalRow, const ArrayView< LocalOrdinal > &Indices, const ArrayView< Scalar > &Values, size_t &NumEntries) const
 Extract a list of entries in a specified local row of the matrix. Put into storage allocated by calling routine. More...
 
void getGlobalRowCopy (GlobalOrdinal GlobalRow, const ArrayView< GlobalOrdinal > &Indices, const ArrayView< Scalar > &Values, size_t &NumEntries) const
 Extract a list of entries in a specified global row of this matrix. Put into pre-allocated storage. More...
 
void getGlobalRowView (GlobalOrdinal GlobalRow, ArrayView< const GlobalOrdinal > &indices, ArrayView< const Scalar > &values) const
 Extract a const, non-persisting view of global indices in a specified row of the matrix. More...
 
void getLocalRowView (LocalOrdinal LocalRow, ArrayView< const LocalOrdinal > &indices, ArrayView< const Scalar > &values) const
 Extract a const, non-persisting view of local indices in a specified row of the matrix. More...
 
void getLocalDiagCopy (Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &diag) const
 Get a copy of the diagonal entries owned by this node, with local row indices. More...
 
void getLocalDiagOffsets (Teuchos::ArrayRCP< size_t > &offsets) const
 Get offsets of the diagonal entries in the matrix. More...
 
void getLocalDiagCopy (Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &diag, const Teuchos::ArrayView< const size_t > &offsets) const
 Get a copy of the diagonal entries owned by this node, with local row indices, using row offsets. More...
 

Methods implementing Operator

void apply (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, Scalar alpha=ScalarTraits< Scalar >::one(), Scalar beta=ScalarTraits< Scalar >::zero()) const
 Computes the sparse matrix-multivector multiplication. More...
 
const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getDomainMap () const
 Returns the Map associated with the domain of this operator. This will be null until fillComplete() is called. More...
 
const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getRangeMap () const
 Returns the Map associated with the range of this operator, which must be compatible with Y.getMap(). More...
 

Overridden from Teuchos::Describable

std::string description () const
 A simple one-line description of this object. More...
 
void describe (Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const
 Print the object with some verbosity level to an FancyOStream object. More...
 

Xpetra specific

bool hasMatrix () const
 Does this have an underlying matrix. More...
 
 EpetraCrsMatrixT (const Teuchos::RCP< Epetra_CrsMatrix > &mtx)
 EpetraCrsMatrixT constructor to wrap a Epetra_CrsMatrix object. More...
 
RCP< const Epetra_CrsMatrix > getEpetra_CrsMatrix () const
 Get the underlying Epetra matrix. More...
 
RCP< Epetra_CrsMatrix > getEpetra_CrsMatrixNonConst () const
 Get the underlying Epetra matrix. More...
 

Additional Inherited Members

- Public Types inherited from Xpetra::CrsMatrix< double, int, long long, EpetraNode >
typedef double scalar_type
 
typedef int local_ordinal_type
 
typedef long long global_ordinal_type
 
typedef EpetraNode node_type
 
- Public Types inherited from Xpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >
typedef Scalar scalar_type
 
typedef LocalOrdinal local_ordinal_type
 
typedef GlobalOrdinal global_ordinal_type
 
typedef Node node_type
 
- Static Public Attributes inherited from Teuchos::Describable
static const EVerbosityLevel verbLevel_default
 

Detailed Description

template<>
class Xpetra::EpetraCrsMatrixT< long long, EpetraNode >

Definition at line 1153 of file Xpetra_EpetraCrsMatrix.hpp.

Member Typedef Documentation

typedef long long Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::GlobalOrdinal
private

Definition at line 1156 of file Xpetra_EpetraCrsMatrix.hpp.

typedef EpetraNode Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::Node
private

Definition at line 1157 of file Xpetra_EpetraCrsMatrix.hpp.

typedef CrsMatrix<double, int, GlobalOrdinal, Node>::scalar_type Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::Scalar
private

Definition at line 1158 of file Xpetra_EpetraCrsMatrix.hpp.

Definition at line 1159 of file Xpetra_EpetraCrsMatrix.hpp.

Constructor & Destructor Documentation

Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::EpetraCrsMatrixT ( const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  rowMap,
size_t  maxNumEntriesPerRow,
ProfileType  pftype = DynamicProfile,
const Teuchos::RCP< Teuchos::ParameterList > &  plist = Teuchos::null 
)
inline

Constructor specifying fixed number of entries for each row.

Definition at line 1174 of file Xpetra_EpetraCrsMatrix.hpp.

Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::EpetraCrsMatrixT ( const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  rowMap,
const ArrayRCP< const size_t > &  NumEntriesPerRowToAlloc,
ProfileType  pftype = DynamicProfile,
const Teuchos::RCP< Teuchos::ParameterList > &  plist = Teuchos::null 
)
inline

Constructor specifying (possibly different) number of entries in each row.

Definition at line 1183 of file Xpetra_EpetraCrsMatrix.hpp.

Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::EpetraCrsMatrixT ( const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  rowMap,
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  colMap,
size_t  maxNumEntriesPerRow,
ProfileType  pftype = DynamicProfile,
const Teuchos::RCP< Teuchos::ParameterList > &  plist = Teuchos::null 
)
inline

Constructor specifying column Map and fixed number of entries for each row.

Definition at line 1195 of file Xpetra_EpetraCrsMatrix.hpp.

Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::EpetraCrsMatrixT ( const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  rowMap,
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  colMap,
const ArrayRCP< const size_t > &  NumEntriesPerRowToAlloc,
ProfileType  pftype = DynamicProfile,
const Teuchos::RCP< Teuchos::ParameterList > &  plist = Teuchos::null 
)
inline

Constructor specifying column Map and number of entries in each row.

Definition at line 1204 of file Xpetra_EpetraCrsMatrix.hpp.

Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::EpetraCrsMatrixT ( const Teuchos::RCP< const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > &  graph,
const Teuchos::RCP< Teuchos::ParameterList > &  plist = Teuchos::null 
)
inline

Constructor specifying a previously constructed graph.

Definition at line 1216 of file Xpetra_EpetraCrsMatrix.hpp.

Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::EpetraCrsMatrixT ( const Teuchos::RCP< const CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &  sourceMatrix,
const Import< LocalOrdinal, GlobalOrdinal, Node > &  importer,
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  domainMap = Teuchos::null,
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  rangeMap = Teuchos::null,
const Teuchos::RCP< Teuchos::ParameterList > &  params = Teuchos::null 
)
inline

Constructor for a fused import.

Definition at line 1225 of file Xpetra_EpetraCrsMatrix.hpp.

Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::EpetraCrsMatrixT ( const Teuchos::RCP< const CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &  sourceMatrix,
const Export< LocalOrdinal, GlobalOrdinal, Node > &  exporter,
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  domainMap = Teuchos::null,
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  rangeMap = Teuchos::null,
const Teuchos::RCP< Teuchos::ParameterList > &  params = Teuchos::null 
)
inline

Constructor for a fused export.

Definition at line 1252 of file Xpetra_EpetraCrsMatrix.hpp.

virtual Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::~EpetraCrsMatrixT ( )
inlinevirtual

Destructor.

Definition at line 1371 of file Xpetra_EpetraCrsMatrix.hpp.

Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::EpetraCrsMatrixT ( const EpetraCrsMatrixT< long long, EpetraNode > &  matrix)
inline

Deep copy constructor.

Definition at line 1952 of file Xpetra_EpetraCrsMatrix.hpp.

Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::EpetraCrsMatrixT ( const Teuchos::RCP< Epetra_CrsMatrix > &  mtx)
inline

EpetraCrsMatrixT constructor to wrap a Epetra_CrsMatrix object.

Definition at line 2030 of file Xpetra_EpetraCrsMatrix.hpp.

Member Function Documentation

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::insertGlobalValues ( GlobalOrdinal  globalRow,
const ArrayView< const GlobalOrdinal > &  cols,
const ArrayView< const Scalar > &  vals 
)
inline

Insert matrix entries, using global IDs.

Definition at line 1379 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::insertLocalValues ( LocalOrdinal  localRow,
const ArrayView< const LocalOrdinal > &  cols,
const ArrayView< const Scalar > &  vals 
)
inline

Insert matrix entries, using local IDs.

Definition at line 1386 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::replaceGlobalValues ( GlobalOrdinal  globalRow,
const ArrayView< const GlobalOrdinal > &  indices,
const ArrayView< const Scalar > &  values 
)
inline

Replace matrix entries, using global IDs.

Definition at line 1392 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::replaceLocalValues ( LocalOrdinal  localRow,
const ArrayView< const LocalOrdinal > &  indices,
const ArrayView< const Scalar > &  values 
)
inline

Replace matrix entries, using local IDs.

Definition at line 1411 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::setAllToScalar ( const Scalar alpha)
inline

Set all matrix entries equal to scalarThis.

Definition at line 1431 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::scale ( const Scalar alpha)
inline

Scale the current values of a matrix, this = alpha*this.

Definition at line 1434 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::allocateAllValues ( size_t  numNonZeros,
ArrayRCP< size_t > &  rowptr,
ArrayRCP< LocalOrdinal > &  colind,
ArrayRCP< Scalar > &  values 
)
inline

Allocates and returns ArrayRCPs of the Crs arrays — This is an Xpetra-only routine.

Definition at line 1438 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::setAllValues ( const ArrayRCP< size_t > &  rowptr,
const ArrayRCP< LocalOrdinal > &  colind,
const ArrayRCP< Scalar > &  values 
)
inline

Sets the 1D pointer arrays of the graph.

Definition at line 1466 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getAllValues ( ArrayRCP< const size_t > &  rowptr,
ArrayRCP< const LocalOrdinal > &  colind,
ArrayRCP< const Scalar > &  values 
) const
inline

Gets the 1D pointer arrays of the graph.

Definition at line 1495 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::expertStaticFillComplete ( const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  domainMap,
const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  rangeMap,
const RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > &  importer = Teuchos::null,
const RCP< const Export< LocalOrdinal, GlobalOrdinal, Node > > &  exporter = Teuchos::null,
const RCP< ParameterList > &  params = Teuchos::null 
)
inline

Expert static fill complete.

Definition at line 1520 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::resumeFill ( const RCP< ParameterList > &  params = Teuchos::null)
inlinevirtual
void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::fillComplete ( const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  domainMap,
const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  rangeMap,
const RCP< ParameterList > &  params = Teuchos::null 
)
inline

Signal that data entry is complete, specifying domain and range maps.

Definition at line 1557 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::fillComplete ( const RCP< ParameterList > &  params = Teuchos::null)
inlinevirtual

Signal that data entry is complete.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1570 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::replaceDomainMapAndImporter ( const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  newDomainMap,
Teuchos::RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > &  newImporter 
)
inline

Replaces the current domainMap and importer with the user-specified objects.

Definition at line 1583 of file Xpetra_EpetraCrsMatrix.hpp.

const RCP< const Comm< int > > Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getComm ( ) const
inline

Returns the communicator.

Definition at line 1602 of file Xpetra_EpetraCrsMatrix.hpp.

const RCP< const Map<LocalOrdinal, GlobalOrdinal, Node> > Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getRowMap ( ) const
inlinevirtual

Returns the Map that describes the row distribution in this matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1605 of file Xpetra_EpetraCrsMatrix.hpp.

const RCP< const Map<LocalOrdinal, GlobalOrdinal, Node> > Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getColMap ( ) const
inlinevirtual

Returns the Map that describes the column distribution in this matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1608 of file Xpetra_EpetraCrsMatrix.hpp.

RCP< const CrsGraph<LocalOrdinal, GlobalOrdinal, Node> > Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getCrsGraph ( ) const
inlinevirtual

Returns the CrsGraph associated with this matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1611 of file Xpetra_EpetraCrsMatrix.hpp.

global_size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getGlobalNumRows ( ) const
inlinevirtual

Number of global elements in the row map of this matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1614 of file Xpetra_EpetraCrsMatrix.hpp.

global_size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getGlobalNumCols ( ) const
inlinevirtual

Number of global columns in the matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1617 of file Xpetra_EpetraCrsMatrix.hpp.

size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getNodeNumRows ( ) const
inlinevirtual

Returns the number of matrix rows owned on the calling node.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1620 of file Xpetra_EpetraCrsMatrix.hpp.

size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getNodeNumCols ( ) const
inlinevirtual

Returns the number of columns connected to the locally owned rows of this matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1623 of file Xpetra_EpetraCrsMatrix.hpp.

global_size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getGlobalNumEntries ( ) const
inlinevirtual

Returns the global number of entries in this matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1626 of file Xpetra_EpetraCrsMatrix.hpp.

size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getNodeNumEntries ( ) const
inlinevirtual

Returns the local number of entries in this matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1629 of file Xpetra_EpetraCrsMatrix.hpp.

size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getNumEntriesInLocalRow ( LocalOrdinal  localRow) const
inline

Returns the current number of entries on this node in the specified local row.

Definition at line 1632 of file Xpetra_EpetraCrsMatrix.hpp.

global_size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getGlobalNumDiags ( ) const
inlinevirtual

Returns the number of global diagonal entries, based on global row/column index comparisons.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1635 of file Xpetra_EpetraCrsMatrix.hpp.

size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getNodeNumDiags ( ) const
inlinevirtual

Returns the number of local diagonal entries, based on global row/column index comparisons.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1638 of file Xpetra_EpetraCrsMatrix.hpp.

size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getGlobalMaxNumRowEntries ( ) const
inlinevirtual

Returns the maximum number of entries across all rows/columns on all nodes.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1641 of file Xpetra_EpetraCrsMatrix.hpp.

size_t Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getNodeMaxNumRowEntries ( ) const
inlinevirtual

Returns the maximum number of entries across all rows/columns on this node.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1644 of file Xpetra_EpetraCrsMatrix.hpp.

bool Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::isLocallyIndexed ( ) const
inlinevirtual

If matrix indices are in the local range, this function returns true. Otherwise, this function returns false.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1647 of file Xpetra_EpetraCrsMatrix.hpp.

bool Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::isGloballyIndexed ( ) const
inlinevirtual

If matrix indices are in the global range, this function returns true. Otherwise, this function returns false.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1650 of file Xpetra_EpetraCrsMatrix.hpp.

bool Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::isFillComplete ( ) const
inlinevirtual

Returns true if the matrix is in compute mode, i.e. if fillComplete() has been called.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1653 of file Xpetra_EpetraCrsMatrix.hpp.

bool Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::isFillActive ( ) const
inlinevirtual

Returns true if the matrix is in edit mode.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1656 of file Xpetra_EpetraCrsMatrix.hpp.

ScalarTraits< Scalar >::magnitudeType Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getFrobeniusNorm ( ) const
inlinevirtual

Returns the Frobenius norm of the matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1659 of file Xpetra_EpetraCrsMatrix.hpp.

bool Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::supportsRowViews ( ) const
inlinevirtual

Returns true if getLocalRowView() and getGlobalRowView() are valid for this class.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1662 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getLocalRowCopy ( LocalOrdinal  LocalRow,
const ArrayView< LocalOrdinal > &  Indices,
const ArrayView< Scalar > &  Values,
size_t &  NumEntries 
) const
inline

Extract a list of entries in a specified local row of the matrix. Put into storage allocated by calling routine.

Definition at line 1665 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getGlobalRowCopy ( GlobalOrdinal  GlobalRow,
const ArrayView< GlobalOrdinal > &  Indices,
const ArrayView< Scalar > &  Values,
size_t &  NumEntries 
) const
inline

Extract a list of entries in a specified global row of this matrix. Put into pre-allocated storage.

Definition at line 1674 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getGlobalRowView ( GlobalOrdinal  GlobalRow,
ArrayView< const GlobalOrdinal > &  indices,
ArrayView< const Scalar > &  values 
) const
inline

Extract a const, non-persisting view of global indices in a specified row of the matrix.

Definition at line 1683 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getLocalRowView ( LocalOrdinal  LocalRow,
ArrayView< const LocalOrdinal > &  indices,
ArrayView< const Scalar > &  values 
) const
inline

Extract a const, non-persisting view of local indices in a specified row of the matrix.

Definition at line 1698 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getLocalDiagCopy ( Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &  diag) const
inline

Get a copy of the diagonal entries owned by this node, with local row indices.

Definition at line 1713 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getLocalDiagOffsets ( Teuchos::ArrayRCP< size_t > &  offsets) const
inlinevirtual

Get offsets of the diagonal entries in the matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1716 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getLocalDiagCopy ( Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &  diag,
const Teuchos::ArrayView< const size_t > &  offsets 
) const
inline

Get a copy of the diagonal entries owned by this node, with local row indices, using row offsets.

Definition at line 1721 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::apply ( const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &  X,
MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &  Y,
Teuchos::ETransp  mode = Teuchos::NO_TRANS,
Scalar  alpha = ScalarTraitsScalar >::one(),
Scalar  beta = ScalarTraitsScalar >::zero() 
) const
inline

Computes the sparse matrix-multivector multiplication.

Definition at line 1731 of file Xpetra_EpetraCrsMatrix.hpp.

const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getDomainMap ( ) const
inlinevirtual

Returns the Map associated with the domain of this operator. This will be null until fillComplete() is called.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1757 of file Xpetra_EpetraCrsMatrix.hpp.

const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getRangeMap ( ) const
inlinevirtual

Returns the Map associated with the range of this operator, which must be compatible with Y.getMap().

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1760 of file Xpetra_EpetraCrsMatrix.hpp.

std::string Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::description ( ) const
inlinevirtual

A simple one-line description of this object.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1768 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::describe ( Teuchos::FancyOStream out,
const Teuchos::EVerbosityLevel  verbLevel = Teuchos::Describable::verbLevel_default 
) const
inlinevirtual

Print the object with some verbosity level to an FancyOStream object.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 1792 of file Xpetra_EpetraCrsMatrix.hpp.

Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getMap ( ) const
inlinevirtual

Implements DistObject interface.

Access function for the Tpetra::Map this DistObject was constructed with.

Implements Xpetra::DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node >.

Definition at line 1964 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::doImport ( const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &  source,
const Import< LocalOrdinal, GlobalOrdinal, Node > &  importer,
CombineMode  CM 
)
inline

Import.

Definition at line 1967 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::doExport ( const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &  dest,
const Import< LocalOrdinal, GlobalOrdinal, Node > &  importer,
CombineMode  CM 
)
inline

Export.

Definition at line 1980 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::doImport ( const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &  source,
const Export< LocalOrdinal, GlobalOrdinal, Node > &  exporter,
CombineMode  CM 
)
inline

Import (using an Exporter).

Definition at line 1993 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::doExport ( const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &  dest,
const Export< LocalOrdinal, GlobalOrdinal, Node > &  exporter,
CombineMode  CM 
)
inline

Export (using an Importer).

Definition at line 2007 of file Xpetra_EpetraCrsMatrix.hpp.

void Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::removeEmptyProcessesInPlace ( const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  newMap)
inline

Definition at line 2019 of file Xpetra_EpetraCrsMatrix.hpp.

bool Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::hasMatrix ( ) const
inlinevirtual

Does this have an underlying matrix.

Implements Xpetra::CrsMatrix< double, int, long long, EpetraNode >.

Definition at line 2027 of file Xpetra_EpetraCrsMatrix.hpp.

RCP<const Epetra_CrsMatrix> Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getEpetra_CrsMatrix ( ) const
inline

Get the underlying Epetra matrix.

Definition at line 2033 of file Xpetra_EpetraCrsMatrix.hpp.

RCP<Epetra_CrsMatrix> Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::getEpetra_CrsMatrixNonConst ( ) const
inline

Get the underlying Epetra matrix.

Definition at line 2036 of file Xpetra_EpetraCrsMatrix.hpp.

Member Data Documentation

RCP<Epetra_CrsMatrix> Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::mtx_
private

Definition at line 2076 of file Xpetra_EpetraCrsMatrix.hpp.

bool Xpetra::EpetraCrsMatrixT< long long, EpetraNode >::isFillResumed_
private

Definition at line 2078 of file Xpetra_EpetraCrsMatrix.hpp.


The documentation for this class was generated from the following file: