Skip to content
Snippets Groups Projects
Commit e746ee51 authored by Müller, Felix's avatar Müller, Felix Committed by Praetorius, Simon
Browse files

removed debug output

parent 79095eeb
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,6 @@ namespace AMDiS {
template <class Grid>
void Marker<Grid>::markElement(AdaptInfo& adaptInfo, const Element& elem)
{
msg("DEBUG: Marker::markElement\n");
int row_ = row == -1 ? 0 : row;
const auto& index = grid->leafIndexSet().index(elem);
double lError = est[index][row_];
......@@ -95,8 +94,6 @@ namespace AMDiS {
template <class Grid>
Flag Marker<Grid>::markGrid(AdaptInfo& adaptInfo)
{
msg("DEBUG: Marker::markGrid\n");
test_exit(grid, "No grid!\n");
initMarking(adaptInfo);
......@@ -166,8 +163,6 @@ namespace AMDiS {
template <class Grid>
Flag GERSMarker<Grid>::markGrid(AdaptInfo& adaptInfo)
{
msg("DEBUG: GERSMarker::markGrid\n");
Marker<Grid>::initMarking(adaptInfo);
int row_ = this->row == -1 ? 0 : this->row;
......
......@@ -60,7 +60,6 @@ namespace AMDiS {
if (!maximumMarking || (newMark > oldMark)) {
bool (marked) = grid->mark(newMark, elem);
msg("DEBUG: Was marked? ", marked, "; oldMark = ", oldMark, ", newMark = ", newMark, "\n");
if (marked) {
if (oldMark > 0) {
elMarkRefine--;
......@@ -191,7 +190,6 @@ namespace AMDiS {
/// Implementation of Marker::markElement().
virtual void markElement(AdaptInfo& adaptInfo, const Element& elem)
{
msg("DEBUG: GRMarker::markElement\n");
if (adaptInfo.isRefinementAllowed(this->row == -1 ? 0 : this->row))
this->mark(elem, 1);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment