mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-10 15:55:37 +00:00
comment improvement
This commit is contained in:
parent
7678fbd30d
commit
f22170ad49
@ -4,8 +4,7 @@
|
|||||||
namespace Grid {
|
namespace Grid {
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
// Take a matrix and form a Red Black solver calling a Herm solver
|
// Take a matrix and form an NE solver calling a Herm solver
|
||||||
// Use of RB info prevents making SchurRedBlackSolve conform to standard interface
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
template<class Field> class NormalEquations : public OperatorFunction<Field>{
|
template<class Field> class NormalEquations : public OperatorFunction<Field>{
|
||||||
private:
|
private:
|
||||||
@ -15,7 +14,7 @@ namespace Grid {
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
/////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////
|
||||||
// Wrap the usual normal equations Schur trick
|
// Wrap the usual normal equations trick
|
||||||
/////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////
|
||||||
NormalEquations(SparseMatrixBase<Field> &Matrix, OperatorFunction<Field> &HermitianSolver)
|
NormalEquations(SparseMatrixBase<Field> &Matrix, OperatorFunction<Field> &HermitianSolver)
|
||||||
: _Matrix(Matrix), _HermitianSolver(HermitianSolver) {};
|
: _Matrix(Matrix), _HermitianSolver(HermitianSolver) {};
|
||||||
|
Loading…
Reference in New Issue
Block a user