Private Types | List of all members
Xpetra::EpetraIntVectorT< long long, EpetraNode > Class Reference

#include <Xpetra_EpetraIntVector.hpp>

Inheritance diagram for Xpetra::EpetraIntVectorT< long long, EpetraNode >:
Xpetra::Vector< int, int, long long, EpetraNode >

Private Types

typedef int Scalar
 
typedef int LocalOrdinal
 
typedef long long GlobalOrdinal
 
typedef EpetraNode Node
 

Constructor/Destructor Methods

 EpetraIntVectorT (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &map, bool zeroOut=true)
 Sets all vector entries to zero. More...
 
 ~EpetraIntVectorT ()
 Destructor. More...
 

Mathematical methods

int dot (const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &a) const
 TODO missing comment. More...
 
Teuchos::ScalarTraits< int >::magnitudeType norm1 () const
 Return 1-norm of this Vector. More...
 
Teuchos::ScalarTraits< int >::magnitudeType norm2 () const
 Compute 2-norm of this Vector. More...
 
Teuchos::ScalarTraits< int >::magnitudeType normInf () const
 Compute Inf-norm of this Vector. More...
 
int meanValue () const
 Compute mean (average) value of this Vector. More...
 
int maxValue () const
 Compute max value of this Vector. More...
 
void dot (const MultiVector< int, int, GlobalOrdinal, Node > &A, const Teuchos::ArrayView< int > &dots) const
 Computes dot product of each corresponding pair of vectors, dots[i] = this[i].dot(A[i]) More...
 
void abs (const MultiVector< int, int, GlobalOrdinal, Node > &A)
 Puts element-wise absolute values of input Multi-vector in target: A = abs(this) More...
 
void reciprocal (const MultiVector< int, int, GlobalOrdinal, Node > &A)
 Puts element-wise reciprocal values of input Multi-vector in target, this(i,j) = 1/A(i,j). More...
 
void scale (const int &alpha)
 Scale the current values of a multi-vector, this = alpha*this. More...
 
void scale (Teuchos::ArrayView< const int > alpha)
 Scale the current values of a multi-vector, this[j] = alpha[j]*this[j]. More...
 
void update (const int &alpha, const MultiVector< int, int, GlobalOrdinal, Node > &A, const int &beta)
 Update multi-vector values with scaled values of A, this = beta*this + alpha*A. More...
 
void update (const int &alpha, const MultiVector< int, int, GlobalOrdinal, Node > &A, const int &beta, const MultiVector< int, int, GlobalOrdinal, Node > &B, const int &gamma)
 Update multi-vector with scaled values of A and B, this = gamma*this + alpha*A + beta*B. More...
 
void norm1 (const Teuchos::ArrayView< Teuchos::ScalarTraits< int >::magnitudeType > &norms) const
 Compute 1-norm of each vector in multi-vector. More...
 
void norm2 (const Teuchos::ArrayView< Teuchos::ScalarTraits< int >::magnitudeType > &norms) const
 Compute 2-norm of each vector in multi-vector. More...
 
void normInf (const Teuchos::ArrayView< Teuchos::ScalarTraits< int >::magnitudeType > &norms) const
 Compute Inf-norm of each vector in multi-vector. More...
 
void meanValue (const Teuchos::ArrayView< int > &means) const
 Compute mean (average) value of each vector in multi-vector. More...
 
void maxValue (const Teuchos::ArrayView< int > &maxs) const
 Compute max value of each vector in multi-vector. More...
 
void multiply (Teuchos::ETransp transA, Teuchos::ETransp transB, const int &alpha, const MultiVector< int, int, GlobalOrdinal, Node > &A, const MultiVector< int, int, GlobalOrdinal, Node > &B, const int &beta)
 Matrix-Matrix multiplication, this = beta*this + alpha*op(A)*op(B). More...
 
void elementWiseMultiply (int scalarAB, const Vector< int, int, GlobalOrdinal, Node > &A, const MultiVector< int, int, GlobalOrdinal, Node > &B, int scalarThis)
 Element-wise multiply of a Vector A with a EpetraMultiVector B. More...
 

Post-construction modification routines

void replaceGlobalValue (GlobalOrdinal globalRow, const Scalar &value)
 Replace current value at the specified location with specified value. More...
 
void sumIntoGlobalValue (GlobalOrdinal globalRow, const Scalar &value)
 Adds specified value to existing value at the specified location. More...
 
void replaceLocalValue (LocalOrdinal myRow, const Scalar &value)
 Replace current value at the specified location with specified values. More...
 
void sumIntoLocalValue (LocalOrdinal myRow, const Scalar &value)
 Adds specified value to existing value at the specified location. More...
 
void putScalar (const int &value)
 Initialize all values in a multi-vector with specified value. More...
 
void randomize (bool bUseXpetraImplementation=true)
 Set multi-vector values to random numbers. More...
 
void setSeed (unsigned int seed)
 Set seed for Random function. More...
 
void replaceGlobalValue (GlobalOrdinal globalRow, size_t vectorIndex, const Scalar &value)
 Replace value, using global (row) index. More...
 
void sumIntoGlobalValue (GlobalOrdinal globalRow, size_t vectorIndex, const Scalar &value)
 Add value to existing value, using global (row) index. More...
 
void replaceLocalValue (LocalOrdinal myRow, size_t vectorIndex, const Scalar &value)
 Replace value, using local (row) index. More...
 
void sumIntoLocalValue (LocalOrdinal myRow, size_t vectorIndex, const Scalar &value)
 Add value to existing value, using local (row) index. More...
 

Data Copy and View get methods

Teuchos::RCP< const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > getVector (size_t j) const
 Return a Vector which is a const view of column j. More...
 
Teuchos::RCP< Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > getVectorNonConst (size_t j)
 Return a Vector which is a nonconst view of column j. More...
 
Teuchos::ArrayRCP< const int > getData (size_t j) const
 
Teuchos::ArrayRCP< int > getDataNonConst (size_t j)
 

Attribute access functions

size_t getNumVectors () const
 Returns the number of vectors in the multi-vector. More...
 
size_t getLocalLength () const
 Returns the local vector length on the calling processor of vectors in the multi-vector. More...
 
global_size_t getGlobalLength () const
 Returns the global vector length of vectors in the multi-vector. More...
 
bool isSameSize (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &vec) const
 Checks to see if the local length, number of vectors and size of Scalar type match. More...
 

Overridden from Teuchos::Describable

std::string description () const
 Return 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...
 
RCP< Epetra_IntVectorgetEpetra_IntVector () const
 
const RCP< const Comm< int > > getComm () const
 
Teuchos::RCP< const Map< int, GlobalOrdinal, Node > > getMap () const
 
void doImport (const DistObject< int, int, GlobalOrdinal, Node > &source, const Import< int, GlobalOrdinal, Node > &importer, CombineMode CM)
 
void doExport (const DistObject< int, LocalOrdinal, GlobalOrdinal, Node > &dest, const Import< int, GlobalOrdinal, Node > &importer, CombineMode CM)
 
void doImport (const DistObject< int, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< int, GlobalOrdinal, Node > &exporter, CombineMode CM)
 
void doExport (const DistObject< int, LocalOrdinal, GlobalOrdinal, Node > &dest, const Export< int, GlobalOrdinal, Node > &exporter, CombineMode CM)
 
void replaceMap (const RCP< const Map< int, GlobalOrdinal, Node > > &map)
 

Xpetra specific

RCP< Epetra_IntVectorvec_
 The Epetra_IntVector which this class wraps. More...
 
virtual void assign (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &rhs)
 Implementation of the assignment operator (operator=); does a deep copy. More...
 

Additional Inherited Members

- Public Types inherited from Xpetra::Vector< int, int, long long, EpetraNode >
typedef int scalar_type
 
typedef int local_ordinal_type
 
typedef long long global_ordinal_type
 
typedef EpetraNode node_type
 
- Public Member Functions inherited from Xpetra::Vector< int, int, long long, EpetraNode >
virtual ~Vector ()
 Destructor. More...
 
virtual Teuchos::ScalarTraits< int >::magnitudeType norm1 () const=0
 Return 1-norm of this Vector. More...
 
virtual Teuchos::ScalarTraits< int >::magnitudeType norm2 () const=0
 Compute 2-norm of this Vector. More...
 
virtual Teuchos::ScalarTraits< int >::magnitudeType normInf () const=0
 Compute Inf-norm of this Vector. More...
 
virtual int meanValue () const=0
 Compute mean (average) value of this Vector. More...
 
virtual std::string description () const=0
 Return a simple one-line description of this object. More...
 

Detailed Description

Definition at line 810 of file Xpetra_EpetraIntVector.hpp.

Member Typedef Documentation

◆ Scalar

typedef int Xpetra::EpetraIntVectorT< long long, EpetraNode >::Scalar
private

Definition at line 813 of file Xpetra_EpetraIntVector.hpp.

◆ LocalOrdinal

typedef int Xpetra::EpetraIntVectorT< long long, EpetraNode >::LocalOrdinal
private

Definition at line 814 of file Xpetra_EpetraIntVector.hpp.

◆ GlobalOrdinal

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

Definition at line 815 of file Xpetra_EpetraIntVector.hpp.

◆ Node

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

Definition at line 816 of file Xpetra_EpetraIntVector.hpp.

Constructor & Destructor Documentation

◆ EpetraIntVectorT()

Xpetra::EpetraIntVectorT< long long, EpetraNode >::EpetraIntVectorT ( const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &  map,
bool  zeroOut = true 
)
inlineexplicit

Sets all vector entries to zero.

Definition at line 824 of file Xpetra_EpetraIntVector.hpp.

◆ ~EpetraIntVectorT()

Destructor.

Definition at line 830 of file Xpetra_EpetraIntVector.hpp.

Member Function Documentation

◆ dot() [1/2]

int Xpetra::EpetraIntVectorT< long long, EpetraNode >::dot ( const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &  a) const
inlinevirtual

TODO missing comment.

Implements Xpetra::Vector< int, int, long long, EpetraNode >.

Definition at line 838 of file Xpetra_EpetraIntVector.hpp.

◆ norm1() [1/2]

Teuchos::ScalarTraits<int>::magnitudeType Xpetra::EpetraIntVectorT< long long, EpetraNode >::norm1 ( ) const
inline

Return 1-norm of this Vector.

Definition at line 842 of file Xpetra_EpetraIntVector.hpp.

◆ norm2() [1/2]

Teuchos::ScalarTraits<int>::magnitudeType Xpetra::EpetraIntVectorT< long long, EpetraNode >::norm2 ( ) const
inline

Compute 2-norm of this Vector.

Definition at line 846 of file Xpetra_EpetraIntVector.hpp.

◆ normInf() [1/2]

Teuchos::ScalarTraits<int>::magnitudeType Xpetra::EpetraIntVectorT< long long, EpetraNode >::normInf ( ) const
inline

Compute Inf-norm of this Vector.

Definition at line 849 of file Xpetra_EpetraIntVector.hpp.

◆ meanValue() [1/2]

int Xpetra::EpetraIntVectorT< long long, EpetraNode >::meanValue ( ) const
inline

Compute mean (average) value of this Vector.

Definition at line 852 of file Xpetra_EpetraIntVector.hpp.

◆ maxValue() [1/2]

int Xpetra::EpetraIntVectorT< long long, EpetraNode >::maxValue ( ) const
inline

Compute max value of this Vector.

Definition at line 855 of file Xpetra_EpetraIntVector.hpp.

◆ replaceGlobalValue() [1/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::replaceGlobalValue ( GlobalOrdinal  globalRow,
const Scalar value 
)
inlinevirtual

Replace current value at the specified location with specified value.

Implements Xpetra::Vector< int, int, long long, EpetraNode >.

Definition at line 863 of file Xpetra_EpetraIntVector.hpp.

◆ sumIntoGlobalValue() [1/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::sumIntoGlobalValue ( GlobalOrdinal  globalRow,
const Scalar value 
)
inlinevirtual

Adds specified value to existing value at the specified location.

Implements Xpetra::Vector< int, int, long long, EpetraNode >.

Definition at line 866 of file Xpetra_EpetraIntVector.hpp.

◆ replaceLocalValue() [1/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::replaceLocalValue ( LocalOrdinal  myRow,
const Scalar value 
)
inlinevirtual

Replace current value at the specified location with specified values.

Implements Xpetra::Vector< int, int, long long, EpetraNode >.

Definition at line 869 of file Xpetra_EpetraIntVector.hpp.

◆ sumIntoLocalValue() [1/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::sumIntoLocalValue ( LocalOrdinal  myRow,
const Scalar value 
)
inlinevirtual

Adds specified value to existing value at the specified location.

Implements Xpetra::Vector< int, int, long long, EpetraNode >.

Definition at line 872 of file Xpetra_EpetraIntVector.hpp.

◆ putScalar()

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::putScalar ( const int &  value)
inline

Initialize all values in a multi-vector with specified value.

Definition at line 875 of file Xpetra_EpetraIntVector.hpp.

◆ randomize()

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::randomize ( bool  bUseXpetraImplementation = true)
inline

Set multi-vector values to random numbers.

Definition at line 878 of file Xpetra_EpetraIntVector.hpp.

◆ setSeed()

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::setSeed ( unsigned int  seed)
inline

Set seed for Random function.

Note: this method does not exist in Tpetra interface. Added for MueLu.

Definition at line 883 of file Xpetra_EpetraIntVector.hpp.

◆ getVector()

Teuchos::RCP< const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > Xpetra::EpetraIntVectorT< long long, EpetraNode >::getVector ( size_t  j) const
inline

Return a Vector which is a const view of column j.

Definition at line 892 of file Xpetra_EpetraIntVector.hpp.

◆ getVectorNonConst()

Teuchos::RCP< Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > Xpetra::EpetraIntVectorT< long long, EpetraNode >::getVectorNonConst ( size_t  j)
inline

Return a Vector which is a nonconst view of column j.

Definition at line 897 of file Xpetra_EpetraIntVector.hpp.

◆ getData()

Teuchos::ArrayRCP<const int> Xpetra::EpetraIntVectorT< long long, EpetraNode >::getData ( size_t  j) const
inline

Const Local vector access function. View of the local values in a particular vector of this multi-vector.

Definition at line 903 of file Xpetra_EpetraIntVector.hpp.

◆ getDataNonConst()

Teuchos::ArrayRCP<int> Xpetra::EpetraIntVectorT< long long, EpetraNode >::getDataNonConst ( size_t  j)
inline

Local vector access function. View of the local values in a particular vector of this multi-vector.

Definition at line 914 of file Xpetra_EpetraIntVector.hpp.

◆ dot() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::dot ( const MultiVector< int, int, GlobalOrdinal, Node > &  A,
const Teuchos::ArrayView< int > &  dots 
) const
inline

Computes dot product of each corresponding pair of vectors, dots[i] = this[i].dot(A[i])

Definition at line 928 of file Xpetra_EpetraIntVector.hpp.

◆ abs()

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::abs ( const MultiVector< int, int, GlobalOrdinal, Node > &  A)
inline

Puts element-wise absolute values of input Multi-vector in target: A = abs(this)

Definition at line 936 of file Xpetra_EpetraIntVector.hpp.

◆ reciprocal()

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::reciprocal ( const MultiVector< int, int, GlobalOrdinal, Node > &  A)
inline

Puts element-wise reciprocal values of input Multi-vector in target, this(i,j) = 1/A(i,j).

Definition at line 944 of file Xpetra_EpetraIntVector.hpp.

◆ scale() [1/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::scale ( const int &  alpha)
inline

Scale the current values of a multi-vector, this = alpha*this.

Definition at line 952 of file Xpetra_EpetraIntVector.hpp.

◆ scale() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::scale ( Teuchos::ArrayView< const int >  alpha)
inline

Scale the current values of a multi-vector, this[j] = alpha[j]*this[j].

Definition at line 958 of file Xpetra_EpetraIntVector.hpp.

◆ update() [1/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::update ( const int &  alpha,
const MultiVector< int, int, GlobalOrdinal, Node > &  A,
const int &  beta 
)
inline

Update multi-vector values with scaled values of A, this = beta*this + alpha*A.

Definition at line 964 of file Xpetra_EpetraIntVector.hpp.

◆ update() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::update ( const int &  alpha,
const MultiVector< int, int, GlobalOrdinal, Node > &  A,
const int &  beta,
const MultiVector< int, int, GlobalOrdinal, Node > &  B,
const int &  gamma 
)
inline

Update multi-vector with scaled values of A and B, this = gamma*this + alpha*A + beta*B.

Definition at line 972 of file Xpetra_EpetraIntVector.hpp.

◆ norm1() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::norm1 ( const Teuchos::ArrayView< Teuchos::ScalarTraits< int >::magnitudeType > &  norms) const
inline

Compute 1-norm of each vector in multi-vector.

Definition at line 981 of file Xpetra_EpetraIntVector.hpp.

◆ norm2() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::norm2 ( const Teuchos::ArrayView< Teuchos::ScalarTraits< int >::magnitudeType > &  norms) const
inline

Compute 2-norm of each vector in multi-vector.

Definition at line 984 of file Xpetra_EpetraIntVector.hpp.

◆ normInf() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::normInf ( const Teuchos::ArrayView< Teuchos::ScalarTraits< int >::magnitudeType > &  norms) const
inline

Compute Inf-norm of each vector in multi-vector.

Definition at line 987 of file Xpetra_EpetraIntVector.hpp.

◆ meanValue() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::meanValue ( const Teuchos::ArrayView< int > &  means) const
inline

Compute mean (average) value of each vector in multi-vector.

Definition at line 990 of file Xpetra_EpetraIntVector.hpp.

◆ maxValue() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::maxValue ( const Teuchos::ArrayView< int > &  maxs) const
inline

Compute max value of each vector in multi-vector.

Definition at line 993 of file Xpetra_EpetraIntVector.hpp.

◆ multiply()

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::multiply ( Teuchos::ETransp  transA,
Teuchos::ETransp  transB,
const int &  alpha,
const MultiVector< int, int, GlobalOrdinal, Node > &  A,
const MultiVector< int, int, GlobalOrdinal, Node > &  B,
const int &  beta 
)
inline

Matrix-Matrix multiplication, this = beta*this + alpha*op(A)*op(B).

Definition at line 996 of file Xpetra_EpetraIntVector.hpp.

◆ elementWiseMultiply()

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::elementWiseMultiply ( int  scalarAB,
const Vector< int, int, GlobalOrdinal, Node > &  A,
const MultiVector< int, int, GlobalOrdinal, Node > &  B,
int  scalarThis 
)
inline

Element-wise multiply of a Vector A with a EpetraMultiVector B.

Definition at line 999 of file Xpetra_EpetraIntVector.hpp.

◆ replaceGlobalValue() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::replaceGlobalValue ( GlobalOrdinal  globalRow,
size_t  vectorIndex,
const Scalar value 
)
inline

Replace value, using global (row) index.

Definition at line 1010 of file Xpetra_EpetraIntVector.hpp.

◆ sumIntoGlobalValue() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::sumIntoGlobalValue ( GlobalOrdinal  globalRow,
size_t  vectorIndex,
const Scalar value 
)
inline

Add value to existing value, using global (row) index.

Definition at line 1013 of file Xpetra_EpetraIntVector.hpp.

◆ replaceLocalValue() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::replaceLocalValue ( LocalOrdinal  myRow,
size_t  vectorIndex,
const Scalar value 
)
inline

Replace value, using local (row) index.

Definition at line 1016 of file Xpetra_EpetraIntVector.hpp.

◆ sumIntoLocalValue() [2/2]

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::sumIntoLocalValue ( LocalOrdinal  myRow,
size_t  vectorIndex,
const Scalar value 
)
inline

Add value to existing value, using local (row) index.

Definition at line 1019 of file Xpetra_EpetraIntVector.hpp.

◆ getNumVectors()

size_t Xpetra::EpetraIntVectorT< long long, EpetraNode >::getNumVectors ( ) const
inline

Returns the number of vectors in the multi-vector.

Definition at line 1027 of file Xpetra_EpetraIntVector.hpp.

◆ getLocalLength()

size_t Xpetra::EpetraIntVectorT< long long, EpetraNode >::getLocalLength ( ) const
inline

Returns the local vector length on the calling processor of vectors in the multi-vector.

Definition at line 1031 of file Xpetra_EpetraIntVector.hpp.

◆ getGlobalLength()

global_size_t Xpetra::EpetraIntVectorT< long long, EpetraNode >::getGlobalLength ( ) const
inline

Returns the global vector length of vectors in the multi-vector.

Definition at line 1034 of file Xpetra_EpetraIntVector.hpp.

◆ isSameSize()

bool Xpetra::EpetraIntVectorT< long long, EpetraNode >::isSameSize ( const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &  vec) const
inline

Checks to see if the local length, number of vectors and size of Scalar type match.

Definition at line 1038 of file Xpetra_EpetraIntVector.hpp.

◆ description()

std::string Xpetra::EpetraIntVectorT< long long, EpetraNode >::description ( ) const
inline

Return a simple one-line description of this object.

Definition at line 1051 of file Xpetra_EpetraIntVector.hpp.

◆ describe()

void Xpetra::EpetraIntVectorT< 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::Vector< int, int, long long, EpetraNode >.

Definition at line 1063 of file Xpetra_EpetraIntVector.hpp.

◆ getEpetra_IntVector()

RCP< Epetra_IntVector > Xpetra::EpetraIntVectorT< long long, EpetraNode >::getEpetra_IntVector ( ) const
inline

Definition at line 1082 of file Xpetra_EpetraIntVector.hpp.

◆ getComm()

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

Definition at line 1084 of file Xpetra_EpetraIntVector.hpp.

◆ getMap()

Teuchos::RCP<const Map<int, GlobalOrdinal, Node> > Xpetra::EpetraIntVectorT< long long, EpetraNode >::getMap ( ) const
inline

Definition at line 1089 of file Xpetra_EpetraIntVector.hpp.

◆ doImport() [1/2]

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

Definition at line 1094 of file Xpetra_EpetraIntVector.hpp.

◆ doExport() [1/2]

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

Definition at line 1106 of file Xpetra_EpetraIntVector.hpp.

◆ doImport() [2/2]

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

Definition at line 1118 of file Xpetra_EpetraIntVector.hpp.

◆ doExport() [2/2]

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

Definition at line 1130 of file Xpetra_EpetraIntVector.hpp.

◆ replaceMap()

void Xpetra::EpetraIntVectorT< long long, EpetraNode >::replaceMap ( const RCP< const Map< int, GlobalOrdinal, Node > > &  map)
inline

Definition at line 1142 of file Xpetra_EpetraIntVector.hpp.

◆ assign()

virtual void Xpetra::EpetraIntVectorT< long long, EpetraNode >::assign ( const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &  rhs)
inlineprotectedvirtual

Implementation of the assignment operator (operator=); does a deep copy.

Definition at line 1206 of file Xpetra_EpetraIntVector.hpp.

Member Data Documentation

◆ vec_

RCP< Epetra_IntVector > Xpetra::EpetraIntVectorT< long long, EpetraNode >::vec_
private

The Epetra_IntVector which this class wraps.

Definition at line 1241 of file Xpetra_EpetraIntVector.hpp.


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