changed: reorder the parameters in ConfigureSIM

allows configuring with default parameters

git-svn-id: http://svn.sintef.no/trondheim/IFEM/trunk@2880 e10b68d5-8a6e-419e-a041-bce267b0401d
This commit is contained in:
akva
2014-08-07 08:45:31 +00:00
committed by Knut Morten Okstad
parent b21f5275ab
commit 9db49a42ac

View File

@@ -35,7 +35,7 @@ struct SolverConfigurator {
//! \brief Configuration template
template<class T>
int ConfigureSIM(T& t, const typename T::SetupProps& p, char* infile)
int ConfigureSIM(T& t, char* infile, const typename T::SetupProps& p=typename T::SetupProps())
{
SolverConfigurator<T> setup;
return setup.setup(t, p, infile);