BUG: FaceCellWave::propagationTol_ was const

This commit is contained in:
Mark Olesen
2010-12-08 08:17:00 +01:00
parent e8e79cc9eb
commit f5f51aebe2
2 changed files with 4 additions and 5 deletions

View File

@ -36,12 +36,10 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
template <class Type, class TrackingData> template <class Type, class TrackingData>
const Foam::scalar const Foam::scalar Foam::FaceCellWave<Type, TrackingData>::geomTol_ = 1e-6;
Foam::FaceCellWave<Type, TrackingData>::geomTol_ = 1e-6;
template <class Type, class TrackingData> template <class Type, class TrackingData>
const Foam::scalar Foam::scalar Foam::FaceCellWave<Type, TrackingData>::propagationTol_ = 0.01;
Foam::FaceCellWave<Type, TrackingData>::propagationTol_ = 0.01;
template <class Type, class TrackingData> template <class Type, class TrackingData>
Foam::label Foam::FaceCellWave<Type, TrackingData>::dummyTrackData_ = 12345; Foam::label Foam::FaceCellWave<Type, TrackingData>::dummyTrackData_ = 12345;
@ -969,4 +967,5 @@ Foam::label Foam::FaceCellWave<Type, TrackingData>::iterate(const label maxIter)
return nUnvisitedCells_; return nUnvisitedCells_;
} }
// ************************************************************************* // // ************************************************************************* //

View File

@ -232,7 +232,7 @@ class FaceCellWave
// Private static data // Private static data
static const scalar geomTol_; static const scalar geomTol_;
static const scalar propagationTol_; static scalar propagationTol_;
//- Used as default trackdata value to satisfy default template //- Used as default trackdata value to satisfy default template
// argument. // argument.