[MOAB-dev] commit/MOAB: 2 new changesets
commits-noreply at bitbucket.org
commits-noreply at bitbucket.org
Wed Nov 27 14:40:30 CST 2013
2 new commits in MOAB:
https://bitbucket.org/fathomteam/moab/commits/af59c7f89bfb/
Changeset: af59c7f89bfb
Branch: None
User: tautges
Date: 2013-11-27 21:39:08
Summary: Adding documentation of PARALLEL_COMM= read option.
Affected #: 1 file
diff --git a/doc/UG/moabUG.h b/doc/UG/moabUG.h
index 8f4a6be..4f86821 100644
--- a/doc/UG/moabUG.h
+++ b/doc/UG/moabUG.h
@@ -731,6 +731,11 @@ The options used to specify loading method, the data used to identify parts, and
<td><gd.bd.nl[.ad]></td><td>Exchange ghost elements at shared inter-processor interfaces. Ghost elements of dimension gd will be exchanged. Ghost elements are chosen going through bd-dimensional interface entities. Number of layers of ghost elements is specified in nl. If ad is present, lower-dimensional entities bounding exchanged ghost entities will also be exchanged; allowed values for ad are 1 (exchange bounding edges), 2 (faces), or 3 (edges and faces).</td></tr>
+<td>PARALLEL_COMM</td>
+<td><id></td>
+<td>Use the ParallelComm with index <id>. Index for a ParallelComm object can be checked with ParallelComm::get_id(), and a ParallelComm with a given index can be retrieved using ParallelComm::get_pcomm(id).</td>
+</tr>
+<tr><tr><td>CPUTIME</td><td>(none)</td>
https://bitbucket.org/fathomteam/moab/commits/ab2f9220b755/
Changeset: ab2f9220b755
Branch: master
User: tautges
Date: 2013-11-27 21:40:19
Summary: Adding MOAB_CPPFLAGS to moab.make.in and similar, and adding use of it in
examples. Allows examples to use definitions from MOAB, e.g. -DUSE_MPI.
Affected #: 3 files
diff --git a/examples/makefile b/examples/makefile
index cd6339e..5ae5af0 100644
--- a/examples/makefile
+++ b/examples/makefile
@@ -57,8 +57,8 @@ clean:
rm -rf *.o ${EXAMPLES} ${PAREXAMPLES} ${EXOIIEXAMPLES}
.cpp.o :
- ${MOAB_CXX} ${CXXFLAGS} ${MOAB_CXXFLAGS} ${MOAB_INCLUDES} -DMESH_DIR=\"${MESH_DIR}\" -c $<
+ ${MOAB_CXX} ${CXXFLAGS} ${MOAB_CXXFLAGS} ${MOAB_CPPFLAGS} ${MOAB_INCLUDES} -DMESH_DIR=\"${MESH_DIR}\" -c $<
-.F90.o :
- ${IMESH_FC} ${FCFLAGS} ${IMESH_FCFLAGS} ${IMESH_INCLUDES} ${IMESH_FCDEFS} -DMESH_DIR=\"${MESH_DIR}\" -c $<
+ .F90.o :
+ ${IMESH_FC} ${FCFLAGS} ${IMESH_FCFLAGS} ${MOAB_CPPFLAGS} ${IMESH_INCLUDES} ${IMESH_FCDEFS} -DMESH_DIR=\"${MESH_DIR}\" -c $<
diff --git a/itaps/imesh/iMesh-Defs.inc.in b/itaps/imesh/iMesh-Defs.inc.in
index b0b7f70..314b536 100644
--- a/itaps/imesh/iMesh-Defs.inc.in
+++ b/itaps/imesh/iMesh-Defs.inc.in
@@ -7,7 +7,7 @@ IMESH_FCFLAGS = @FCFLAGS@
IMESH_FCDEFS = @DEFS@
-IMESH_CPPFLAGS = -I$(IMESH_INCLUDEDIR) $(IMESH_INCLUDEDIR2)
+IMESH_CPPFLAGS = @CPPFLAGS@ @AM_CPPFLAGS@ -I$(IMESH_INCLUDEDIR) $(IMESH_INCLUDEDIR2)
# This definition is deprecated; use IMESH_CPPFLAGS instead
IMESH_INCLUDES = $(IMESH_CPPFLAGS)
diff --git a/moab.make.in b/moab.make.in
index 4519175..ebb3caa 100644
--- a/moab.make.in
+++ b/moab.make.in
@@ -10,6 +10,7 @@ MOAB_INCLUDES = -I at abs_srcdir@/src \
MOAB_INCLUDES += @ZOLTAN_INC_FLAGS@
+MOAB_CPPFLAGS = @CPPFLAGS@ @AM_CPPFLAGS@
MOAB_CXXFLAGS = @CXXFLAGS@ @AM_CXXFLAGS@
MOAB_CFLAGS = @CFLAGS@ @AM_CFLAGS@
MOAB_FFLAGS = @FFLAGS@
Repository URL: https://bitbucket.org/fathomteam/moab/
--
This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
More information about the moab-dev
mailing list