Replace <tab>s by eight spaces.

While here, fix a misprint in comment.
This commit is contained in:
Bård Skaflestad 2012-08-14 11:00:47 +02:00
parent 7a48d13424
commit 56cd291080

View File

@ -62,13 +62,17 @@ namespace Opm
LinearSolverAGMG(const int max_it = 100 , LinearSolverAGMG(const int max_it = 100 ,
const double rtol = 1.0e-6, const double rtol = 1.0e-6,
const bool is_spd = false); const bool is_spd = false);
/**
/**
* Constructor. * Constructor.
* \param[in] param ParameterGroup object contianing the fields * \param[in] param ParameterGroup object containing the fields
* max_it,rtol,is_spd as used in the constructor * max_it,rtol,is_spd as used in the constructor.
*/ */
LinearSolverAGMG(const parameter::ParameterGroup& param); LinearSolverAGMG(const parameter::ParameterGroup& param);
/// Destructor.
/**
* Destructor.
*/
virtual ~LinearSolverAGMG(); virtual ~LinearSolverAGMG();
using LinearSolverInterface::solve; using LinearSolverInterface::solve;