make the name() method of problems non-static again

this allows to easily specify the problem name at runtime.
This commit is contained in:
Andreas Lauser
2014-04-25 17:22:28 +02:00
parent 20e03577a9
commit c9dae3c663
20 changed files with 20 additions and 20 deletions

View File

@@ -236,7 +236,7 @@ public:
/*!
* \copydoc VcfvProblem::name
*/
static std::string name()
std::string name() const
{
std::ostringstream oss;
oss << "infiltration_" << Model::name();