Skip to content
Snippets Groups Projects
Commit 35c63e58 authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

* Small bug, if not compiled with openmp

parent 68d44797
No related branches found
No related tags found
No related merge requests found
......@@ -225,8 +225,10 @@ namespace AMDiS {
creator = NEW ResidualEstimator::Creator;
addCreator("residual", creator);
#ifdef _OPENMP
creator = NEW ResidualParallelEstimator::Creator;
addCreator("residualparallel", creator);
#endif
creator = NEW RecoveryEstimator::Creator;
addCreator("recovery", creator);
......
......@@ -4,6 +4,8 @@
#include "Parameters.h"
#include "OpenMP.h"
#ifdef _OPENMP
namespace AMDiS {
ResidualParallelEstimator::ResidualParallelEstimator(::std::string name, int r)
: Estimator(name, r),
......@@ -106,3 +108,4 @@ namespace AMDiS {
}
#endif // _OPENMP
......@@ -26,6 +26,8 @@
#ifndef AMDIS_RESIDUALPARALLELESTIMATOR_H
#define AMDIS_RESIDUALPARALLELESTIMATOR_H
#ifdef _OPENMP
#include "ResidualEstimator.h"
#include <vector>
......@@ -106,4 +108,6 @@ namespace AMDiS {
}
#endif // _OPENMP
#endif // AMDIS_RESIDUALPARALLELESTIMATOR_H
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