Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
iwr
amdis
Commits
41220723
Commit
41220723
authored
Jan 26, 2011
by
Thomas Witkowski
Browse files
Fixed small bug for serialization of mesh in parallel code.
parent
5d788954
Changes
2
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/Mesh.cc
View file @
41220723
...
...
@@ -995,6 +995,10 @@ namespace AMDiS {
node
.
serialize
(
out
);
#ifdef HAVE_PARALLEL_DOMAIN_AMDIS
SerUtil
::
serialize
(
out
,
nParallelPreRefinements
);
#endif
// === Write admins. ===
...
...
@@ -1078,6 +1082,10 @@ namespace AMDiS {
node
.
deserialize
(
in
);
#ifdef HAVE_PARALLEL_DOMAIN_AMDIS
SerUtil
::
deserialize
(
in
,
nParallelPreRefinements
);
#endif
// === Read admins. ===
...
...
AMDiS/src/Mesh.h
View file @
41220723
...
...
@@ -717,12 +717,6 @@ namespace AMDiS {
void
checkParallelMacroFile
(
std
::
string
&
macroFilename
,
std
::
string
&
periodicFilename
,
int
check
);
/// Returns \ref nParallelPreRefinements
int
getParallelPreRefinements
()
const
{
return
nParallelPreRefinements
;
}
#endif
protected:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment