p4est 2.8.6
p4est is a software library for parallel adaptive mesh refinement.
p4est_algorithms.h
Go to the documentation of this file.
1/*
2 This file is part of p4est.
3 p4est is a C library to manage a collection (a forest) of multiple
4 connected adaptive quadtrees or octrees in parallel.
5
6 Copyright (C) 2010 The University of Texas System
7 Additional copyright (C) 2011 individual authors
8 Written by Carsten Burstedde, Lucas C. Wilcox, and Tobin Isaac
9
10 p4est is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 p4est is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with p4est; if not, write to the Free Software Foundation, Inc.,
22 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23*/
24
33#ifndef P4EST_ALGORITHMS_H
34#define P4EST_ALGORITHMS_H
35
36#include <p4est_extended.h>
37
38SC_EXTERN_C_BEGIN;
39
43sc_mempool_t *p4est_quadrant_mempool_new (void);
44
51 p4est_topidx_t which_tree,
52 p4est_quadrant_t * quad,
53 p4est_init_t init_fn);
54
59 p4est_quadrant_t * quad);
60
69unsigned p4est_quadrant_checksum (sc_array_t * quadrants,
70 sc_array_t * checkarray,
71 size_t first_quadrant);
72
89 const p4est_quadrant_t * ld,
90 const p4est_quadrant_t *
91 quadrant);
92
98
104
110
116 int check_linearity);
117
131void p4est_tree_print (int log_priority, p4est_tree_t * tree);
132
139int p4est_is_equal (p4est_t * p4est1, p4est_t * p4est2,
140 int compare_data);
141
154
174 sc_array_t * in,
175 sc_array_t * out,
176 p4est_connect_type_t balance,
177 sc_array_t * borders,
178 sc_array_t * inseeds);
179
184void p4est_tree_uniqify_overlap (sc_array_t * out);
185
192 p4est_topidx_t which_tree);
193
214 const p4est_quadrant_t * q1,
215 int include_q1,
216 const p4est_quadrant_t * q2,
217 int include_q2,
218 p4est_tree_t * tree,
219 p4est_topidx_t which_tree,
220 p4est_init_t init_fn);
221
233 p4est_topidx_t which_tree,
234 p4est_init_t init_fn);
235
246 p4est_topidx_t which_tree,
247 p4est_init_t init_fn);
248
249void p4est_balance_border (p4est_t * p4est,
251 p4est_topidx_t which_tree,
252 p4est_init_t init_fn,
253 p4est_replace_t replace_fn,
254 sc_array_t * borders);
255
266 p4est_tree_t * tree);
267
288 partition,
289 int num_procs,
290 int rank,
292 min_quadrant_id,
294 max_quadrant_id);
295
309 num_quadrants_in_proc);
310
322 int num_procs,
324 num_quadrants_in_proc);
325
337 const p4est_locidx_t *
338 num_quadrants_in_proc);
339
351 p4est_topidx_t treeid,
352 int face,
353 const p4est_quadrant_t *
354 q);
355
356SC_EXTERN_C_END;
357
358#endif /* !P4EST_ALGORITHMS_H */
void(* p4est_init_t)(p4est_t *p4est, p4est_topidx_t which_tree, p4est_quadrant_t *quadrant)
Callback function prototype to initialize the quadrant's user data.
Definition: p4est.h:203
int p4est_quadrant_in_range(const p4est_quadrant_t *fd, const p4est_quadrant_t *ld, const p4est_quadrant_t *quadrant)
Report whether a quadrant fits into the limits of a quadrant range.
size_t p4est_linearize_tree(p4est_t *p4est, p4est_tree_t *tree)
Remove overlaps from a sorted list of quadrants.
int p4est_is_valid(p4est_t *p4est)
Check a forest for validity and allreduce the result.
void p4est_tree_print(int log_priority, p4est_tree_t *tree)
Print the quadrants in a tree.
int p4est_is_equal(p4est_t *p4est1, p4est_t *p4est2, int compare_data)
Locally check forest/connectivity structures for equality.
unsigned p4est_quadrant_checksum(sc_array_t *quadrants, sc_array_t *checkarray, size_t first_quadrant)
Computes a machine-independent checksum of a list of quadrants.
int p4est_tree_is_linear(p4est_tree_t *tree)
Test if a tree is sorted in Morton ordering and linear.
int p4est_tree_is_almost_sorted(p4est_tree_t *tree, int check_linearity)
Check if a tree is sorted/linear except for diagonally outside corners.
int p4est_next_nonempty_process(int rank, int num_procs, p4est_locidx_t *num_quadrants_in_proc)
Find next non-empty process.
void p4est_tree_uniqify_overlap(sc_array_t *out)
Gets the reduced representation of the overlap that results from using p4est_tree_compute_overlap_new...
sc_mempool_t * p4est_quadrant_mempool_new(void)
Create a memory pool for quadrants that initializes compiler padding.
void p4est_quadrant_init_data(p4est_t *p4est, p4est_topidx_t which_tree, p4est_quadrant_t *quad, p4est_init_t init_fn)
Alloc and initialize the user data of a valid quadrant.
void p4est_complete_region(p4est_t *p4est, const p4est_quadrant_t *q1, int include_q1, const p4est_quadrant_t *q2, int include_q2, p4est_tree_t *tree, p4est_topidx_t which_tree, p4est_init_t init_fn)
Constructs a minimal linear octree between two octants.
p4est_gloidx_t p4est_partition_given(p4est_t *p4est, const p4est_locidx_t *num_quadrants_in_proc)
Partition p4est given the number of quadrants per proc.
int p4est_tree_is_sorted(p4est_tree_t *tree)
Test if a tree is sorted in Morton ordering.
p4est_locidx_t p4est_partition_correction(p4est_gloidx_t *partition, int num_procs, int rank, p4est_gloidx_t min_quadrant_id, p4est_gloidx_t max_quadrant_id)
Compute correction of partition for a process.
void p4est_quadrant_free_data(p4est_t *p4est, p4est_quadrant_t *quad)
Free the user data of a valid quadrant.
void p4est_balance_subtree(p4est_t *p4est, p4est_connect_type_t btype, p4est_topidx_t which_tree, p4est_init_t init_fn)
Balances a sorted tree within a p4est.
int p4est_tree_is_complete(p4est_tree_t *tree)
Test if a tree is sorted in Morton ordering and complete.
p4est_gloidx_t p4est_partition_for_coarsening(p4est_t *p4est, p4est_locidx_t *num_quadrants_in_proc)
Correct partition counters to allow one level of coarsening.
void p4est_tree_compute_overlap(p4est_t *p4est, sc_array_t *in, sc_array_t *out, p4est_connect_type_t balance, sc_array_t *borders, sc_array_t *inseeds)
Compute the overlap of a number of insulation layers with a tree.
size_t p4est_tree_remove_nonowned(p4est_t *p4est, p4est_topidx_t which_tree)
Removes quadrants that are outside the owned tree boundaries from a tree.
void p4est_complete_subtree(p4est_t *p4est, p4est_topidx_t which_tree, p4est_init_t init_fn)
Completes a sorted tree within a p4est.
int p4est_quadrant_on_face_boundary(p4est_t *p4est, p4est_topidx_t treeid, int face, const p4est_quadrant_t *q)
Checks if a quadrant's face is on the boundary of the forest.
int32_t p4est_topidx_t
Typedef for counting topological entities (trees, tree vertices).
Definition: p4est_base.h:93
int32_t p4est_locidx_t
Typedef for processor-local indexing of quadrants and nodes.
Definition: p4est_base.h:106
int64_t p4est_gloidx_t
Typedef for globally unique indexing of quadrants.
Definition: p4est_base.h:118
p4est_connect_type_t
Characterize a type of adjacency.
Definition: p4est_connectivity.h:113
Interface routines with extended capabilities.
void(* p4est_replace_t)(p4est_t *p4est, p4est_topidx_t which_tree, int num_outgoing, p4est_quadrant_t *outgoing[], int num_incoming, p4est_quadrant_t *incoming[])
Callback function prototype to replace one set of quadrants with another.
Definition: p4est_extended.h:109
The 2D quadrant datatype.
Definition: p4est.h:72
The p4est tree datatype.
Definition: p4est.h:115
The p4est forest datatype.
Definition: p4est.h:136