mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Consistency: Changed exponent FORTRAN style 'E' to C style 'e'
This commit is contained in:
@ -214,7 +214,7 @@ void testSparseData(const polyMesh& mesh, Random& rndGen)
|
||||
|
||||
forAll(localPoints, i)
|
||||
{
|
||||
const point pt = localPoints[i] + 1E-4*rndGen.vector01();
|
||||
const point pt = localPoints[i] + 1e-4*rndGen.vector01();
|
||||
|
||||
label meshPointI = allBoundary.meshPoints()[i];
|
||||
|
||||
@ -299,7 +299,7 @@ void testSparseData(const polyMesh& mesh, Random& rndGen)
|
||||
{
|
||||
const edge& e = edges[i];
|
||||
|
||||
const point pt = e.centre(localPoints) + 1E-4*rndGen.vector01();
|
||||
const point pt = e.centre(localPoints) + 1e-4*rndGen.vector01();
|
||||
|
||||
label meshEdgeI = meshEdges[i];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user