//! Returns the exporter associated with this graph.
 RCP< const Export< LocalOrdinal, GlobalOrdinal, Node > > getExporter() const { XPETRA_MONITOR("TpetraCrsGraph::getExporter"); return toXpetra(graph_->getExporter()); }
 //! The target Map used to construct this Export.
 Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getTargetMap() const { XPETRA_MONITOR("TpetraExport::getTargetMap"); return toXpetra(export_->getTargetMap()); }
 //! The Source Map used to construct this Import object.
 Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getSourceMap() const {
     XPETRA_MONITOR("EpetraImport::getSourceMap");
     return toXpetra(import_->SourceMap());
 }
 //! Returns the Map associated with the domain of this graph.
 RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > >  getRangeMap() const { XPETRA_MONITOR("TpetraCrsGraph::getRangeMap"); return toXpetra(graph_->getRangeMap()); }
 RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> > removeEmptyProcesses () const {
   return toXpetra(map_->removeEmptyProcesses());
 }
 RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> > replaceCommWithSubset (const Teuchos::RCP<const Teuchos::Comm<int> >& newComm) const {
   return toXpetra(map_->replaceCommWithSubset(newComm));
 }
 //! Return the process IDs for the given global IDs.
 LookupStatus getRemoteIndexList(const Teuchos::ArrayView< const GlobalOrdinal > &GIDList, const Teuchos::ArrayView< int > &nodeIDList) const { XPETRA_MONITOR("TpetraMap::getRemoteIndexList"); return toXpetra(map_->getRemoteIndexList(GIDList, nodeIDList)); }
 //! The Target Map used to construct this Import object.
 const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > >  getTargetMap() const { XPETRA_MONITOR("EpetraImport::getTargetMap"); return toXpetra(import_->TargetMap()); }
 //! The Map associated with the range of this operator, which must be compatible with Y.getMap().
 virtual Teuchos::RCP<const Map<LocalOrdinal,GlobalOrdinal,Node> > getRangeMap() const {
   XPETRA_MONITOR("TpetraOperator::getRangeMap()");
   return toXpetra(op_->getRangeMap());
 }
 //! Returns the communicator.
 RCP< const Comm< int > >  getComm() const {
   XPETRA_MONITOR("EpetraCrsGraphT::getComm");
   return toXpetra (graph_->Comm ());
 }
 //! Returns the Map that describes the column distribution in this matrix.
 const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > >  getColMap() const { XPETRA_MONITOR("TpetraRowMatrix::getColMap"); return toXpetra(mtx_->getColMap()); }