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
Aland, Sebastian
amdis
Commits
f46c4212
Commit
f46c4212
authored
Nov 15, 2011
by
Thomas Witkowski
Browse files
Removed debug output.
parent
187b7922
Changes
4
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/ProblemStat.cc
View file @
f46c4212
...
...
@@ -560,8 +560,6 @@ namespace AMDiS {
adaptInfo
->
setMaxSolverIterations
(
solver
->
getMaxIterations
());
adaptInfo
->
setSolverTolerance
(
solver
->
getTolerance
());
adaptInfo
->
setSolverResidual
(
solver
->
getResidual
());
debug
::
writeMatlabVector
(
*
solution
,
"sol.dat"
);
}
...
...
@@ -830,9 +828,6 @@ namespace AMDiS {
INFO
(
info
,
8
)(
"buildAfterCoarsen needed %.5f seconds
\n
"
,
TIME_USED
(
first
,
clock
()));
#endif
debug
::
writeMatlabMatrix
(
*
systemMatrix
,
"matrix.dat"
);
debug
::
writeMatlabVector
(
*
rhs
,
"rhs.dat"
);
}
...
...
AMDiS/src/parallel/ParallelProblemStatBase.cc
View file @
f46c4212
...
...
@@ -25,6 +25,7 @@ namespace AMDiS {
TEST_EXIT_DBG
(
MeshDistributor
::
globalMeshDistributor
!=
NULL
)
(
"Should not happen!
\n
"
);
MeshDistributor
::
globalMeshDistributor
->
checkMeshChange
();
ProblemStatSeq
::
buildAfterCoarsen
(
adaptInfo
,
flag
,
assembleMatrix
,
...
...
AMDiS/src/time/RosenbrockAdaptInstationary.cc
View file @
f46c4212
...
...
@@ -195,8 +195,6 @@ namespace AMDiS {
adaptInfo
->
setLastProcessedTimestep
(
adaptInfo
->
getTimestep
());
adaptInfo
->
incTimestepNumber
();
MSG
(
"ONE TIMESTEP!
\n
"
);
}
}
AMDiS/src/time/RosenbrockStationary.cc
View file @
f46c4212
...
...
@@ -85,7 +85,11 @@ namespace AMDiS {
*
timeRhsVec
+=
*
tmp
;
}
double
first
=
MPI
::
Wtime
();
ProblemStat
::
buildAfterCoarsen
(
adaptInfo
,
flag
,
(
i
==
0
),
asmVector
);
MSG
(
"bac needed %.5f seconds
\n
"
,
MPI
::
Wtime
()
-
first
);
ProblemStat
::
solve
(
adaptInfo
,
i
==
0
,
i
+
1
<
rm
->
getStages
());
*
(
stageSolutions
[
i
])
=
*
solution
;
...
...
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