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
Backofen, Rainer
amdis
Commits
66c4eef8
Commit
66c4eef8
authored
Mar 05, 2012
by
Thomas Witkowski
Browse files
Fixed compilation problem and removed some debug output.
parent
92fa6ff8
Changes
3
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/parallel/MeshDistributor.cc
View file @
66c4eef8
...
...
@@ -457,7 +457,6 @@ namespace AMDiS {
deserialized
=
true
;
}
MSG
(
"PUSH BACK THAT SHITT!
\n
"
);
problemStat
.
push_back
(
probStat
);
// If the mesh distributor is already initialized, don't forget to set rank
...
...
AMDiS/src/parallel/MpiHelper.h
View file @
66c4eef8
...
...
@@ -25,6 +25,7 @@
#ifdef HAVE_PARALLEL_DOMAIN_AMDIS
#include "Global.h"
#include <time.h>
#include <stdlib.h>
#include <mpi.h>
...
...
@@ -37,7 +38,8 @@ namespace AMDiS {
void
globalAdd
(
int
&
value
);
template
<
typename
T
>
void
globalAdd
(
T
&
value
)
{
void
globalAdd
(
T
&
value
)
{
WARNING
(
"Unknown type for globalAdd. Can not sum up the values of all processors!
\n
"
);
}
...
...
@@ -46,7 +48,8 @@ namespace AMDiS {
void
globalMin
(
int
&
value
);
template
<
typename
T
>
void
globalMin
(
T
&
value
)
{
void
globalMin
(
T
&
value
)
{
WARNING
(
"Unknown type for globalMin. Can not determine minimal value of all processors!
\n
"
);
}
...
...
@@ -55,7 +58,8 @@ namespace AMDiS {
void
globalMax
(
int
&
value
);
template
<
typename
T
>
void
globalMax
(
T
&
value
)
{
void
globalMax
(
T
&
value
)
{
WARNING
(
"Unknown type for globalMax. Can not determine maximal value of all processors!
\n
"
);
}
...
...
AMDiS/src/parallel/PeriodicMap.cc
View file @
66c4eef8
...
...
@@ -22,10 +22,8 @@ namespace AMDiS {
for
(
PeriodicDofMap
::
iterator
it
=
newMap
.
begin
();
it
!=
newMap
.
end
();
++
it
)
for
(
DofMapping
::
iterator
dofIt
=
it
->
second
.
begin
();
dofIt
!=
it
->
second
.
end
();
++
dofIt
)
{
dofIt
!=
it
->
second
.
end
();
++
dofIt
)
add
(
feSpace
,
it
->
first
,
dofIt
->
second
,
dofIt
->
first
);
// MSG("ADD MAP %d %d with type %d\n", dofIt->second, dofIt->first, it->first);
}
}
...
...
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