mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: solution.C, fvSchemes.C : remove syncPar argument
This commit is contained in:
@ -74,8 +74,7 @@ void Foam::solution::read(const dictionary& dict)
|
||||
Foam::solution::solution
|
||||
(
|
||||
const objectRegistry& obr,
|
||||
const fileName& dictName,
|
||||
const bool syncPar
|
||||
const fileName& dictName
|
||||
)
|
||||
:
|
||||
IOdictionary
|
||||
@ -87,8 +86,7 @@ Foam::solution::solution
|
||||
obr,
|
||||
IOobject::MUST_READ_IF_MODIFIED,
|
||||
IOobject::NO_WRITE
|
||||
),
|
||||
syncPar
|
||||
)
|
||||
),
|
||||
cache_(ITstream("cache", tokenList())()),
|
||||
caching_(false),
|
||||
|
||||
@ -95,8 +95,7 @@ public:
|
||||
solution
|
||||
(
|
||||
const objectRegistry& obr,
|
||||
const fileName& dictName,
|
||||
const bool syncPar=true
|
||||
const fileName& dictName
|
||||
);
|
||||
|
||||
|
||||
|
||||
@ -247,7 +247,7 @@ void Foam::fvSchemes::read(const dictionary& dict)
|
||||
|
||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||
|
||||
Foam::fvSchemes::fvSchemes(const objectRegistry& obr, const bool syncPar)
|
||||
Foam::fvSchemes::fvSchemes(const objectRegistry& obr)
|
||||
:
|
||||
IOdictionary
|
||||
(
|
||||
@ -258,8 +258,7 @@ Foam::fvSchemes::fvSchemes(const objectRegistry& obr, const bool syncPar)
|
||||
obr,
|
||||
IOobject::MUST_READ_IF_MODIFIED,
|
||||
IOobject::NO_WRITE
|
||||
),
|
||||
syncPar
|
||||
)
|
||||
),
|
||||
ddtSchemes_
|
||||
(
|
||||
|
||||
@ -103,7 +103,7 @@ public:
|
||||
// Constructors
|
||||
|
||||
//- Construct for objectRegistry
|
||||
fvSchemes(const objectRegistry& obr, const bool syncPar = true);
|
||||
fvSchemes(const objectRegistry& obr);
|
||||
|
||||
|
||||
// Member Functions
|
||||
|
||||
Reference in New Issue
Block a user