Skip to content

Commit 2186004

Browse files
authored
Merge pull request #362 from cburstedde/feature-multi
Feature multi
2 parents 2353d9a + a2bfb6c commit 2186004

9 files changed

Lines changed: 4021 additions & 2 deletions

File tree

Makefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ include src/Makefile.am
6868
include test/Makefile.am
6969
include example/balance/Makefile.am
7070
include example/mesh/Makefile.am
71+
include example/multi/Makefile.am
7172
include example/particles/Makefile.am
7273
include example/points/Makefile.am
7374
include example/search/Makefile.am

README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ This is the README file for `p4est`.
33
`p4est` is a C library to manage a collection (a forest) of multiple
44
connected adaptive quadtrees or octrees in parallel.
55

6-
Copyright (C) 2010 The University of Texas System
6+
Copyright (C) 2010 The University of Texas System
77
Additional copyright (C) 2011 individual authors
88

99
`p4est` is written by Carsten Burstedde, Lucas C. Wilcox, and Tobin Isaac
@@ -147,7 +147,7 @@ path.
147147
Note that the `--disable-shared` option suppresses the build of `.so` shared object lib files.
148148
In case these are also required this option needs to be omitted or changed to `--enable-shared`.
149149

150-
The `configure` call is then followed by the usual `make` and `make install` commands,
150+
The `configure` call is then followed by the usual `make` and `make install` commands,
151151
the latter potentially in `sudo` mode depending on the desired installation directory.
152152

153153
The subpackage `sc` is contained in the tarball and used by default. It is

example/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ endif(P4EST_HAVE_GETOPT_H)
9191
p4est_p8est_example(balance_seeds balance)
9292
p4est_p8est_example(balance_corner balance)
9393
p4est_p8est_example(mesh mesh)
94+
p4est_p8est_example(overlap multi)
9495
p4est_p8est_example(simple simple)
9596
p4est_p8est_example(dune_interface dune)
9697
p4est_copy_resource(mesh conndebug.p8c)

example/multi/Makefile.am

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
# This file is part of p4est.
3+
# Makefile.am in example/multi
4+
# included non-recursively from toplevel directory
5+
6+
if P4EST_ENABLE_BUILD_2D
7+
bin_PROGRAMS += \
8+
example/multi/p4est_overlap
9+
example_multi_p4est_overlap_SOURCES = example/multi/overlap2.c
10+
endif
11+
12+
if P4EST_ENABLE_BUILD_3D
13+
bin_PROGRAMS += \
14+
example/multi/p8est_overlap
15+
example_multi_p8est_overlap_SOURCES = example/multi/p4est_to_p8est_multi.h \
16+
example/multi/overlap3.c
17+
endif

0 commit comments

Comments
 (0)