43 #ifndef IFPACK2_PARTITIONER_HPP
44 #define IFPACK2_PARTITIONER_HPP
46 #include "Ifpack2_ConfigDefs.hpp"
48 #include "Teuchos_ArrayRCP.hpp"
178 template <
class GraphType>
181 typedef typename GraphType::local_ordinal_type LocalOrdinal;
182 typedef typename GraphType::global_ordinal_type GlobalOrdinal;
183 typedef typename GraphType::node_type Node;
201 virtual LocalOrdinal
operator() (LocalOrdinal MyRow)
const = 0;
204 virtual LocalOrdinal
operator() (LocalOrdinal i, LocalOrdinal j)
const = 0;
207 virtual size_t numRowsInPart (
const LocalOrdinal Part)
const = 0;
228 virtual std::ostream&
print (std::ostream& os)
const = 0;
233 template <
class GraphType>
238 return obj.
print (os);
243 #endif // IFPACK2_PARTITIONER_HPP
virtual void rowsInPart(const LocalOrdinal Part, Teuchos::ArrayRCP< LocalOrdinal > &List) const =0
Copy into List the rows in the (overlapping) partition Part.
virtual std::ostream & print(std::ostream &os) const =0
Print basic information about the partitioning object.
virtual ~Partitioner()
Destructor.
Definition: Ifpack2_Partitioner.hpp:186
virtual bool isComputed() const =0
Return true if partitions have been computed successfully.
Ifpack2::Partitioner:
Definition: Ifpack2_Partitioner.hpp:179
virtual int numLocalParts() const =0
Number of computed local partitions.
virtual LocalOrdinal operator()(LocalOrdinal MyRow) const =0
The local (nonoverlapping) partition index of the specified local row.
virtual int overlappingLevel() const =0
The level of overlap.
virtual size_t numRowsInPart(const LocalOrdinal Part) const =0
The number of rows contained in the specified partition.
virtual void compute()=0
Compute the partitions.
virtual Teuchos::ArrayView< const LocalOrdinal > nonOverlappingPartition() const =0
The nonoverlapping partition indices of each local row.
virtual void setParameters(Teuchos::ParameterList &List)=0
Set all the parameters for the partitioner.
std::ostream & operator<<(std::ostream &os, const Ifpack2::Container< MatrixType > &obj)
Print information about the given Container to the output stream os.
Definition: Ifpack2_Container.hpp:453