From d6cfa94f833dbc3358c37aaa48c037087101a0e0 Mon Sep 17 00:00:00 2001
From: Wenqing Wang <wenqing.wang@ufz.de>
Date: Fri, 20 Jan 2017 10:30:23 +0100
Subject: [PATCH] [Coupling] Added documentation to an argument of the members
 of NonlinearSolver

---
 NumLib/ODESolver/NonlinearSolver.h | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/NumLib/ODESolver/NonlinearSolver.h b/NumLib/ODESolver/NonlinearSolver.h
index 1eeb874bdf7..c41799dc013 100644
--- a/NumLib/ODESolver/NonlinearSolver.h
+++ b/NumLib/ODESolver/NonlinearSolver.h
@@ -42,7 +42,11 @@ public:
      * scheme. It is not used for the general solver steps; in those only the
      * solve() method is needed.
      *
-     * \param x   the state at which the equation system will be assembled.
+     * \param x             the state at which the equation system will be
+     *                      assembled.
+     * \param coupled_term  the coupled term including the reference of the
+     *                      coupled processes and solutions of the equations of
+     *                      the coupled processes.
      */
     virtual void assemble(GlobalVector const& x,
                           ProcessLib::StaggeredCouplingTerm const& coupled_term
@@ -51,6 +55,9 @@ public:
     /*! Assemble and solve the equation system.
      *
      * \param x   in: the initial guess, out: the solution.
+     * \param coupled_term  the coupled term including the reference of the
+     *                      coupled processes and solutions of the equations of
+     *                      the coupled processes.
      * \param postIterationCallback called after each iteration if set.
      *
      * \retval true if the equation system could be solved
@@ -106,6 +113,7 @@ public:
         _equation_system = &eq;
         _convergence_criterion = &conv_crit;
     }
+
     void assemble(GlobalVector const& x,
                   ProcessLib::StaggeredCouplingTerm const& coupled_term
                  ) const override;
@@ -164,6 +172,7 @@ public:
         _equation_system = &eq;
         _convergence_criterion = &conv_crit;
     }
+
     void assemble(GlobalVector const& x,
                   ProcessLib::StaggeredCouplingTerm const& coupled_term
                  ) const override;
-- 
GitLab