Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Aland, Sebastian
amdis
Commits
526e4fd2
Commit
526e4fd2
authored
Mar 06, 2012
by
Thomas Witkowski
Browse files
Removed some debug output.
parent
39e4e688
Changes
2
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/BoundaryManager.cc
View file @
526e4fd2
...
...
@@ -49,8 +49,6 @@ namespace AMDiS {
{
FUNCNAME
(
"BoundaryManager::addBoundaryCondition()"
);
MSG
(
"ADD BC
\n
"
);
BoundaryType
type
=
localBC
->
getBoundaryType
();
TEST_EXIT
(
localBCs
[
type
]
==
NULL
)
(
"There is already a condition for this type %d.
\n
"
,
type
);
...
...
AMDiS/src/io/MacroReader.cc
View file @
526e4fd2
...
...
@@ -206,20 +206,22 @@ namespace AMDiS {
}
}
#if (DEBUG != 0)
std
::
map
<
BoundaryType
,
VertexVector
*>::
iterator
assoc
;
std
::
map
<
BoundaryType
,
VertexVector
*>::
iterator
assocEnd
=
mesh
->
periodicAssociations
.
end
();
for
(
assoc
=
mesh
->
periodicAssociations
.
begin
();
assoc
!=
assocEnd
;
++
assoc
)
{
for
(
assoc
=
mesh
->
periodicAssociations
.
begin
();
assoc
!=
assocEnd
;
++
assoc
)
for
(
int
i
=
0
;
i
<
mesh
->
getNumberOfVertices
();
i
++
)
if
(
i
!=
(
*
(
assoc
->
second
))[
i
])
MSG
(
"association %d: vertex %d -> vertex %d
\n
"
,
assoc
->
first
,
i
,
(
*
(
assoc
->
second
))[
i
]);
}
assoc
->
first
,
i
,
(
*
(
assoc
->
second
))[
i
]);
for
(
int
i
=
0
;
i
<
mesh
->
getNumberOfVertices
();
i
++
)
if
(
periodicMap
.
getEntry
(
i
)
!=
-
1
)
MSG
(
"identification : vertex %d is now vertex %d
\n
"
,
i
,
periodicMap
.
getEntry
(
i
));
#endif
}
// periodicFile
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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