Go to the documentation of this file.
20 #ifndef LIBMESH_METIS_PARTITIONER_H
21 #define LIBMESH_METIS_PARTITIONER_H
24 #include "libmesh/partitioner.h"
25 #include "libmesh/auto_ptr.h"
56 virtual std::unique_ptr<Partitioner>
clone ()
const override
58 return libmesh_make_unique<MetisPartitioner>(*
this);
69 const unsigned int n)
override;
77 const unsigned int n)
override;
82 #endif // LIBMESH_METIS_PARTITIONER_H
virtual ~MetisPartitioner()=default
The definition of the element_iterator struct.
virtual void _do_partition(MeshBase &mesh, const unsigned int n) override
Partition the MeshBase into n subdomains.
The libMesh namespace provides an interface to certain functionality in the library.
IterBase * end
Also have a polymorphic pointer to the end object, this prevents iterating past the end.
The Partitioner class provides a uniform interface for partitioning algorithms.
This is the MeshBase class.
virtual void partition_range(MeshBase &mesh, MeshBase::element_iterator it, MeshBase::element_iterator end, const unsigned int n) override
Called by the SubdomainPartitioner to partition elements in the range (it, end).
virtual std::unique_ptr< Partitioner > clone() const override
The MetisPartitioner uses the Metis graph partitioner to partition the elements.
MetisPartitioner()=default
Ctors, assignment operators, and destructor are all explicitly defaulted for this class.
The ErrorVector is a specialization of the StatisticsVector for error data computed on a finite eleme...
MetisPartitioner & operator=(const MetisPartitioner &)=default
virtual void attach_weights(ErrorVector *weights) override
Attach weights that can be used for partitioning.
ErrorVector * _weights
The weights that might be used for partitioning.