Skip to content
Snippets Groups Projects
Commit 7a02d97d authored by Laura Stengel's avatar Laura Stengel
Browse files

added EvaluationResults for LandBiventricleProblem (for now there are no evaluation points)

parent 5cc4ccc0
No related branches found
No related tags found
2 merge requests!245Resolve "Implement scaled penalty",!244Resolve "Implement scaled penalty"
......@@ -85,6 +85,12 @@ void EllipsoidProblems::FillEvaluationPoints() {
midEvaluationPoints = mid_line_y_full;
outerEvaluationPoints = outer_line_y_full;
}
else{
//TODO find a better solution for this
innerEvaluationPoints = {};
midEvaluationPoints = {};
outerEvaluationPoints = {};
}
}
void EllipsoidProblems::printLineDisplacements(const Vector &u) const {
......@@ -286,3 +292,6 @@ double EllipsoidProblems::ActiveStretch(double t, const Point &x) const {
(1 + exp(-(z - 0.15) / 0.02))));
}
std::vector<double> LandBiventricleProblem::EvaluationResults(const Vector &solution) const {
return {};
}
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