Formatting
This commit is contained in:
parent
09f80c123f
commit
eecdea4535
2 changed files with 14 additions and 15 deletions
|
@ -110,7 +110,6 @@ public:
|
|||
|
||||
typedef fvPatch Patch;
|
||||
|
||||
|
||||
//- Runtime type information
|
||||
TypeName("fvPatchField");
|
||||
|
||||
|
|
|
@ -77,24 +77,24 @@ class amgPolicy
|
|||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
virtual const word& type() const = 0;
|
||||
//- Runtime type information
|
||||
virtual const word& type() const = 0;
|
||||
|
||||
|
||||
// Declare run-time constructor selection tables
|
||||
// Declare run-time constructor selection tables
|
||||
|
||||
declareRunTimeSelectionTable
|
||||
declareRunTimeSelectionTable
|
||||
(
|
||||
autoPtr,
|
||||
amgPolicy,
|
||||
matrix,
|
||||
(
|
||||
autoPtr,
|
||||
amgPolicy,
|
||||
matrix,
|
||||
(
|
||||
const lduMatrix& matrix,
|
||||
const label groupSize,
|
||||
const label minCoarseEqns
|
||||
),
|
||||
(matrix, groupSize, minCoarseEqns)
|
||||
);
|
||||
const lduMatrix& matrix,
|
||||
const label groupSize,
|
||||
const label minCoarseEqns
|
||||
),
|
||||
(matrix, groupSize, minCoarseEqns)
|
||||
);
|
||||
|
||||
|
||||
// Selectors
|
||||
|
|
Reference in a new issue