diff --git a/src/one-body-sample.cc b/src/one-body-sample.cc index 327135cbcad84833b3ceb8df5f777e649a35644d..860ed695c0f877089648ca44cd06c1163b562614 100644 --- a/src/one-body-sample.cc +++ b/src/one-body-sample.cc @@ -172,9 +172,12 @@ assemble_nonlinearity( Dune::GlobalRuinaNonlinearity<VectorType, MatrixType> const>( nodalIntegrals, a, mu, eta, normalStress, state, h); } else if (friction_model == std::string("Laursen")) { - return Dune::make_shared<Dune::GlobalLaursenNonlinearity< - Dune::LinearFunction, VectorType, MatrixType> const>(mu, normalStress, - nodalIntegrals); + return + // TODO: take state and h into account + Dune::make_shared< + Dune::GlobalLaursenNonlinearity<Dune::LinearFunction, VectorType, + MatrixType> const>(mu, normalStress, + nodalIntegrals); } else { assert(false); }