Skip to content
Snippets Groups Projects
Commit 5d41fc6f authored by andy's avatar andy
Browse files

STYLE: Minor coding comment corrections

parent 90d2f80a
No related branches found
No related tags found
No related merge requests found
......@@ -961,9 +961,14 @@ void Foam::AMIInterpolation<SourcePatch, TargetPatch>::calcAddressing
{
WarningIn
(
"AMIInterpolation::calcAddressing"
"(const primitivePatch&, const primitivePatch&, "
" label, label)"
"void Foam::AMIInterpolation<SourcePatch, TargetPatch>::"
"calcAddressing"
"("
"const primitivePatch&, "
"const primitivePatch&, "
"label, "
"label"
")"
) << "Have " << srcPatch.size() << " source faces but no target faces."
<< endl;
......@@ -1614,7 +1619,7 @@ Foam::AMIInterpolation<SourcePatch, TargetPatch>::AMIInterpolation
"AMIInterpolation<SourcePatch, TargetPatch>::AMIInterpolation"
"("
" const AMIInterpolation<SourcePatch, TargetPatch>&, "
" const label, "
" const labelList&, "
" const labelList&"
")"
) << "Size mismatch." << nl
......
......@@ -310,6 +310,7 @@ class AMIInterpolation
const bool output
);
// Constructor helper
static void agglomerate
......@@ -328,6 +329,7 @@ class AMIInterpolation
autoPtr<mapDistribute>& tgtMap
);
public:
// Constructors
......@@ -385,9 +387,8 @@ public:
//- Return const access to source patch weights
inline const scalarListList& srcWeights() const;
//- Source map pointer - valid only if singlePatchProc=-1.
// This gets
// source data into a form to be consumed by
//- Source map pointer - valid only if singlePatchProc = -1
// This gets source data into a form to be consumed by
// tgtAddress, tgtWeights
inline const mapDistribute& srcMap() const;
......@@ -403,9 +404,8 @@ public:
//- Return const access to target patch weights
inline const scalarListList& tgtWeights() const;
//- Target map pointer - valid only if singlePatchProc=-1.
// This gets
// target data into a form to be consumed by
//- Target map pointer - valid only if singlePatchProc = -1
// This gets target data into a form to be consumed by
// srcAddress, srcWeights
inline const mapDistribute& tgtMap() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment