STAPL API Reference          
Overview   Containers   Algorithms   Views   Skeletons   Run-Time System
Modules     Classes    
List of all members | Public Member Functions | Public Types | Static Public Attributes | Protected Types
stapl::unstructured_mesh< Dim, CellProperty, FaceProperty > Class Template Reference

Implementation of n-dimensional unstructured mesh. Inherits from stapl::dynamic_graph and adds functionality to manage cells, faces and mesh vertices. More...

Public Member Functions

template<typename Generator >
 unstructured_mesh (Generator gen)
 Contructor taking a mesh generator. More...
 
 unstructured_mesh (size_t const &num_mesh_vertices)
 Constructor initializing the size of the array of vertices. More...
 
void set_mesh_vertex (index_type const &idx, geom_vector_type const &val)
 Set the coordinates of a cell vertex. More...
 
void add_cell_face_async (edge_descriptor const &ed, vid_sequence_type const &vertex_ids=vid_sequence_type())
 Add a cell face asynchronously. More...
 
vertex_array_typeget_vertex_array ()
 Returns a pointer on the pArray storing the mesh vertices. More...
 
Memory and Domain Management
domain_type domain () const
 Returns an iterator_domain of this pGraph. More...
 
Vertex Manipulation
vertex_descriptor add_vertex (void)
 Adds a vertex to the pGraph with a default-constructed property. More...
 
vertex_descriptor add_vertex (vertex_property const &vp)
 Adds a vertex to the pGraph with the given property. More...
 
vertex_descriptor add_vertex (vertex_descriptor const &gid, vertex_property const &vp)
 Adds a vertex to the pGraph with the given property and descriptor. More...
 
void add_vertex (vertex_descriptor const &gid, vertex_property const &vp, Functor const &f)
 Adds a vertex to the pGraph with the given property and descriptor, if the vertex does not exist, or applies the given functor to the existing vertex. The vertex is added to the home location, unlike the other add_vertex calls that add the vertex at the current location. More...
 
vertex_descriptor add_vertex_uniform (vertex_property const &vp)
 Adds a vertex to the pGraph with the given property to a location based on the vertex descriptor assigned by the graph. This method is asynchronous. This method differs from the typical add_vertex as it inserts the vertex into a potentially remote location, rather than the calling location. More...
 
void delete_vertex (vertex_descriptor const &gid)
 Deletes a vertex from the pGraph with the given descriptor. This method is asynchronous. More...
 
boost::shared_ptr< this_typeshared_from_this ()
 

Public Types

typedef CellProperty cell_property
 
typedef FaceProperty face_property
 
typedef dynamic_graph< DIRECTED, MULTIEDGES, cell_property, face_property > base_type
 
typedef base_type::edge_descriptor edge_descriptor
 
typedef face_property::vid_sequence_type vid_sequence_type
 
typedef face_property::geom_vector_type geom_vector_type
 
typedef array< geom_vector_typevertex_array_type
 
typedef size_t index_type
 
typedef partition_type::domain_type descriptor_domain_type
 
typedef domainset1D< distribution_typedomain_type
 
typedef mapper_type::domain_type map_dom_t
 

Static Public Attributes

static const size_t dim_value = Dim
 

Protected Types

typedef dgraph_param_selector< D, M, OptionalParams... >::vertex_prop VertexP
 
typedef dgraph_param_selector< D, M, OptionalParams... >::edge_prop EdgeP
 
typedef dgraph_param_selector< D, M, OptionalParams... >::partition_t PS
 
typedef dgraph_param_selector< D, M, OptionalParams... >::mapper_t Map
 
typedef dgraph_param_selector< D, M, OptionalParams... >::traits_t Traits
 
typedef dynamic_graph< D, M, OptionalParams... > this_type
 
typedef graph_directedness_container_selector< D, M, VertexP, EdgeP, PS, Map, Traits >::type directed_base_type
 

Detailed Description

template<int Dim, typename CellProperty = cell_property<Dim>, typename FaceProperty = face_property<Dim>>
class stapl::unstructured_mesh< Dim, CellProperty, FaceProperty >

Implementation of n-dimensional unstructured mesh. Inherits from stapl::dynamic_graph and adds functionality to manage cells, faces and mesh vertices.

Template Parameters
CellPropertytype of property for the mesh cell. Default is cell_property.
FacePropertytype of property for the mesh face. Default is face_property.

Constructor & Destructor Documentation

◆ unstructured_mesh() [1/2]

template<int Dim, typename CellProperty = cell_property<Dim>, typename FaceProperty = face_property<Dim>>
template<typename Generator >
stapl::unstructured_mesh< Dim, CellProperty, FaceProperty >::unstructured_mesh ( Generator  gen)

Contructor taking a mesh generator.

Parameters
genmesh generator.

◆ unstructured_mesh() [2/2]

template<int Dim, typename CellProperty = cell_property<Dim>, typename FaceProperty = face_property<Dim>>
stapl::unstructured_mesh< Dim, CellProperty, FaceProperty >::unstructured_mesh ( size_t const &  num_mesh_vertices)

Constructor initializing the size of the array of vertices.

Parameters
num_mesh_verticesnumber of vertices of the mesh.
Note
here "vertex" means a geometric vertex of a mesh cell and a graph vertex represents a mesh cell.

Member Function Documentation

◆ set_mesh_vertex()

template<int Dim, typename CellProperty = cell_property<Dim>, typename FaceProperty = face_property<Dim>>
void stapl::unstructured_mesh< Dim, CellProperty, FaceProperty >::set_mesh_vertex ( index_type const &  idx,
geom_vector_type const &  val 
)

Set the coordinates of a cell vertex.

Parameters
idxcell vertex identifier.
valgeometric vector representing the coordinates of the cell vertex.

◆ add_cell_face_async()

template<int Dim, typename CellProperty = cell_property<Dim>, typename FaceProperty = face_property<Dim>>
void stapl::unstructured_mesh< Dim, CellProperty, FaceProperty >::add_cell_face_async ( edge_descriptor const &  ed,
vid_sequence_type const &  vertex_ids = vid_sequence_type() 
)

Add a cell face asynchronously.

Parameters
edface descriptor.
vertex_idssequence of vertices of the cell face.

◆ get_vertex_array()

template<int Dim, typename CellProperty = cell_property<Dim>, typename FaceProperty = face_property<Dim>>
vertex_array_type* stapl::unstructured_mesh< Dim, CellProperty, FaceProperty >::get_vertex_array ( )

Returns a pointer on the pArray storing the mesh vertices.

Returns
pointer over pArray of vertices.

◆ domain()

domain_type stapl::dynamic_graph< D, M, OptionalParams >::domain ( ) const
inherited

Returns an iterator_domain of this pGraph.

Returns
iterator_domain over the pGraph.

◆ add_vertex() [1/4]

vertex_descriptor stapl::dynamic_graph< D, M, OptionalParams >::add_vertex ( void  )
inherited

Adds a vertex to the pGraph with a default-constructed property.

Returns
vertex_descriptor of the added vertex.

Vertex-descriptor is assigned automatically by the pGraph. This method is asynchronous. The vertex is added at the calling location, which is also the home location for the vertex.

◆ add_vertex() [2/4]

vertex_descriptor stapl::dynamic_graph< D, M, OptionalParams >::add_vertex ( vertex_property const &  vp)
inherited

Adds a vertex to the pGraph with the given property.

Parameters
vpProperty of the vertex.
Returns
vertex_descriptor of the added vertex.

Vertex-descriptor is assigned automatically by the pGraph. This method is asynchronous. The vertex is added at the calling location, which is also the home location for the vertex.

◆ add_vertex() [3/4]

vertex_descriptor stapl::dynamic_graph< D, M, OptionalParams >::add_vertex ( vertex_descriptor const &  gid,
vertex_property const &  vp 
)
inherited

Adds a vertex to the pGraph with the given property and descriptor.

Parameters
giddescriptor of the vertex.
vpProperty of the vertex.
Returns
vertex_descriptor of the added vertex.

This method is asynchronous. The vertex is added at the calling location. An async is sent to the home-location of the vertex.

◆ add_vertex() [4/4]

void stapl::dynamic_graph< D, M, OptionalParams >::add_vertex ( vertex_descriptor const &  gid,
vertex_property const &  vp,
Functor const &  f 
)
inherited

Adds a vertex to the pGraph with the given property and descriptor, if the vertex does not exist, or applies the given functor to the existing vertex. The vertex is added to the home location, unlike the other add_vertex calls that add the vertex at the current location.

Parameters
giddescriptor of the vertex.
vpProperty of the vertex.
fFunction to apply to the vertex if it already exists.

This method is asynchronous. The vertex is added at the home-location.

◆ add_vertex_uniform()

vertex_descriptor stapl::dynamic_graph< D, M, OptionalParams >::add_vertex_uniform ( vertex_property const &  vp)
inherited

Adds a vertex to the pGraph with the given property to a location based on the vertex descriptor assigned by the graph. This method is asynchronous. This method differs from the typical add_vertex as it inserts the vertex into a potentially remote location, rather than the calling location.

Parameters
vpProperty of the vertex.
Returns
vertex_descriptor of the added vertex.

◆ delete_vertex()

void stapl::dynamic_graph< D, M, OptionalParams >::delete_vertex ( vertex_descriptor const &  gid)
inherited

Deletes a vertex from the pGraph with the given descriptor. This method is asynchronous.

Parameters
giddescriptor of the vertex.

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