GIT: Resolve merge conflict

This commit is contained in:
Andrew Heather
2015-10-15 17:14:13 +01:00

View File

@ -3939,17 +3939,11 @@ Foam::autoPtr<Foam::mapPolyMesh> Foam::meshRefinement::zonify
Info<< "Setting cellZones according to named surfaces:" << endl;
forAll(namedSurfaces, i)
{
<<<<<<< HEAD
const vectorField smallVec(ROOTSMALL*(end-start));
start -= smallVec;
end += smallVec;
=======
label surfI = namedSurfaces[i];
Info<< "Surface : " << surfaces_.names()[surfI] << nl
<< " faceZone : " << surfZones[surfI].faceZoneName() << nl
<< " cellZone : " << surfZones[surfI].cellZoneName() << endl;
>>>>>>> ENH: snappyHexMesh: various improvements. See below or the default snappyHexMeshDict.
}
Info<< endl;
@ -4016,7 +4010,7 @@ Foam::autoPtr<Foam::mapPolyMesh> Foam::meshRefinement::zonify
// Extend segments a bit
{
const vectorField smallVec(Foam::sqrt(SMALL)*(end-start));
const vectorField smallVec(ROOTSMALL*(end-start));
start -= smallVec;
end += smallVec;
}