10#ifndef XPETRA_EPETRAEXPORT_HPP
11#define XPETRA_EPETRAEXPORT_HPP
19#include "Epetra_Export.h"
21#if defined(XPETRA_ENABLE_DEPRECATED_CODE)
23#if defined(Xpetra_SHOW_DEPRECATED_WARNINGS)
24#warning "The header file Trilinos/packages/xpetra/src/Export/Xpetra_EpetraExport.hpp is deprecated."
28#error "The header file Trilinos/packages/xpetra/src/Export/Xpetra_EpetraExport.hpp is deprecated."
36template <
class GlobalOrdinal,
class Node>
38template <
class GlobalOrdinal,
class Node>
41template <
class EpetraGlobalOrdinal,
class Node>
43 :
public Export<int, EpetraGlobalOrdinal, Node> {
76 return export_->NumSameIDs();
82 return export_->NumPermuteIDs();
130 return toXpetra<GlobalOrdinal, Node>(export_->SourceMap());
136 return toXpetra<GlobalOrdinal, Node>(export_->TargetMap());
148 void print(std::ostream &os)
const {
#define XPETRA_MONITOR(funcName)
~EpetraExportT()
Destructor.
void print(std::ostream &os) const
Print the Export's data to the given output stream.
EpetraExportT(const Teuchos::RCP< const map_type > &source, const Teuchos::RCP< const map_type > &target)
Construct a Export object from the source and target Map.
ArrayView< const int > getExportPIDs() const
List of processes to which entries will be sent.
size_t getNumPermuteIDs() const
Number of IDs to permute but not to communicate.
ArrayView< const LocalOrdinal > getRemoteLIDs() const
List of entries in the target Map to receive from other processes.
ArrayView< const LocalOrdinal > getPermuteToLIDs() const
List of local IDs in the target Map that are permuted.
ArrayView< const LocalOrdinal > getExportLIDs() const
List of entries in the source Map that will be sent to other processes.
size_t getNumSameIDs() const
Number of initial identical IDs.
Map< LocalOrdinal, GlobalOrdinal, Node > map_type
The specialization of Map used by this class.
Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getTargetMap() const
The target Map used to construct this Export.
RCP< const Epetra_Export > export_
ArrayView< const LocalOrdinal > getPermuteFromLIDs() const
List of local IDs in the source Map that are permuted.
void setDistributorParameters(const Teuchos::RCP< Teuchos::ParameterList > params) const
Set parameters on the underlying object.
Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getSourceMap() const
The source Map used to construct this Export.
EpetraExportT(const RCP< const Epetra_Export > &exp)
EpetraExportT constructor to wrap a Epetra_Export object.
size_t getNumExportIDs() const
Number of entries that must be sent by the calling process to other processes.
size_t getNumRemoteIDs() const
Number of entries not on the calling process.
EpetraGlobalOrdinal GlobalOrdinal
RCP< const Epetra_Export > getEpetra_Export() const
Get the underlying Epetra export.
Exception throws when you call an unimplemented method of Xpetra.
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
const Epetra_CrsGraph & toEpetra(const RCP< const CrsGraph< int, GlobalOrdinal, Node > > &graph)
RCP< const CrsGraph< int, GlobalOrdinal, Node > > toXpetra(const Epetra_CrsGraph &g)