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

* Problem with ParallelProblemScal and ParallelProblemVec

parent b3f8ed4c
No related branches found
No related tags found
No related merge requests found
...@@ -328,9 +328,17 @@ namespace AMDiS { ...@@ -328,9 +328,17 @@ namespace AMDiS {
virtual ProblemStatBase *getProblem(const std::string& name); virtual ProblemStatBase *getProblem(const std::string& name);
void setEstimator(Estimator *est) { usersEstimator_ = est; }; void setEstimator(Estimator *est) {
usersEstimator_ = est;
};
void setMarker(Marker *marker) {
usersMarker_ = marker;
};
void setMarker(Marker *marker) { usersMarker_ = marker; }; inline virtual const ::std::string& getName() {
return name_;
};
protected: protected:
ProblemScal *problem_; ProblemScal *problem_;
...@@ -388,11 +396,14 @@ namespace AMDiS { ...@@ -388,11 +396,14 @@ namespace AMDiS {
usersEstimator_ = est; usersEstimator_ = est;
}; };
void setMarker(std::vector<Marker*> marker) void setMarker(std::vector<Marker*> marker) {
{
usersMarker_ = marker; usersMarker_ = marker;
}; };
inline virtual const ::std::string& getName() {
return name_;
};
protected: protected:
ProblemVec *problem_; ProblemVec *problem_;
......
...@@ -14,7 +14,8 @@ USE_MPCCI = 0 ...@@ -14,7 +14,8 @@ USE_MPCCI = 0
DEBUG = 0 DEBUG = 0
AMDIS_DIR = /usr/local/AMDiS AMDIS_DIR = /usr/local/AMDiS
SMI_DIR = MPI_DIR =
SMI_DIR =
MPCCI_DIR = MPCCI_DIR =
......
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