diff --git a/ebos/eclproblem.hh b/ebos/eclproblem.hh index fd1b41c5d..2598b3025 100644 --- a/ebos/eclproblem.hh +++ b/ebos/eclproblem.hh @@ -710,9 +710,18 @@ public: const MaterialLawParams& materialLawParams(unsigned globalDofIdx) const { return materialLawManager_->materialLawParams(globalDofIdx); } + /*! + * \brief Returns the ECL material law manager + * + * Note that this method is *not* part of the generic eWoms problem API because it + * would force all problens use the ECL material laws. + */ const std::shared_ptr materialLawManager() const { return materialLawManager_; } + /*! + * \copydoc materialLawManager() + */ std::shared_ptr materialLawManager() { return materialLawManager_; }