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 ,
const double rtol = 1.0e-6,
const bool is_spd = false);
/**
/**
* Constructor.
* \param[in] param ParameterGroup object contianing the fields
* max_it,rtol,is_spd as used in the constructor
* \param[in] param ParameterGroup object containing the fields
* max_it,rtol,is_spd as used in the constructor.
*/
LinearSolverAGMG(const parameter::ParameterGroup& param);
/**
* Destructor.
*/
LinearSolverAGMG(const parameter::ParameterGroup& param);
/// Destructor.
virtual ~LinearSolverAGMG();
using LinearSolverInterface::solve;