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

override name for corresponding problem

parent b61fa6eb
No related branches found
No related tags found
1 merge request!260i..
Pipeline #126289 passed
...@@ -77,6 +77,8 @@ public: ...@@ -77,6 +77,8 @@ public:
} }
string Evaluate(const Vector &solution) const override { return ""; }; string Evaluate(const Vector &solution) const override { return ""; };
string Name() const override { return "LandEllipsoid Problem"; }
}; };
class LandBiventricleProblem : public EllipsoidProblems { class LandBiventricleProblem : public EllipsoidProblems {
...@@ -85,6 +87,8 @@ public: ...@@ -85,6 +87,8 @@ public:
} }
std::vector<double> EvaluationResults(const Vector &solution) const override; std::vector<double> EvaluationResults(const Vector &solution) const override;
string Name() const override { return "LandBiventricle Problem"; }
}; };
#endif //CARDMECH_ELLIPSOIDPROBLEMS_HPP #endif //CARDMECH_ELLIPSOIDPROBLEMS_HPP
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