Skip to content
Snippets Groups Projects
Commit 0f31f6da authored by Benjamin Faigle's avatar Benjamin Faigle
Browse files

Remaining issues in FS170: Start message now at the very start, having a blank line afterwards.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10146 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 2a166dec
No related branches found
No related tags found
No related merge requests found
......@@ -288,6 +288,7 @@ void dumuxMessage_(bool start)
default: // silence to delight Bernd
return ;
}
std::cout << std::endl;
}
/*!
......@@ -307,6 +308,9 @@ int start_(int argc,
char **argv,
void (*usage)(const char *, const std::string &))
{
// output dumux start message
dumuxMessage_(true);
typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar;
typedef typename GET_PROP_TYPE(TypeTag, Grid) Grid;
// Set by default (dumux/common/basicproperties.hh) to DgfGridCreator (dumux/io/dgfgridcreator.hh)
......@@ -400,9 +404,6 @@ int start_(int argc,
}
parameterFile.close();
// output dumux start message
dumuxMessage_(true);
bool printProps = false;
if (ParameterTree::tree().hasKey("PrintProperties")
|| ParameterTree::tree().hasKey("TimeManager.PrintProperties"))
......
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