Skip to content
Snippets Groups Projects
Commit dd7f8312 authored by mattijs's avatar mattijs
Browse files

ENH: solution.C, fvSchemes.C : remove syncPar argument

parent aafb9aa3
Branches
Tags
No related merge requests found
...@@ -74,8 +74,7 @@ void Foam::solution::read(const dictionary& dict) ...@@ -74,8 +74,7 @@ void Foam::solution::read(const dictionary& dict)
Foam::solution::solution Foam::solution::solution
( (
const objectRegistry& obr, const objectRegistry& obr,
const fileName& dictName, const fileName& dictName
const bool syncPar
) )
: :
IOdictionary IOdictionary
...@@ -87,8 +86,7 @@ Foam::solution::solution ...@@ -87,8 +86,7 @@ Foam::solution::solution
obr, obr,
IOobject::MUST_READ_IF_MODIFIED, IOobject::MUST_READ_IF_MODIFIED,
IOobject::NO_WRITE IOobject::NO_WRITE
), )
syncPar
), ),
cache_(ITstream("cache", tokenList())()), cache_(ITstream("cache", tokenList())()),
caching_(false), caching_(false),
......
...@@ -95,8 +95,7 @@ public: ...@@ -95,8 +95,7 @@ public:
solution solution
( (
const objectRegistry& obr, const objectRegistry& obr,
const fileName& dictName, const fileName& dictName
const bool syncPar=true
); );
......
...@@ -247,7 +247,7 @@ void Foam::fvSchemes::read(const dictionary& dict) ...@@ -247,7 +247,7 @@ void Foam::fvSchemes::read(const dictionary& dict)
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::fvSchemes::fvSchemes(const objectRegistry& obr, const bool syncPar) Foam::fvSchemes::fvSchemes(const objectRegistry& obr)
: :
IOdictionary IOdictionary
( (
...@@ -258,8 +258,7 @@ Foam::fvSchemes::fvSchemes(const objectRegistry& obr, const bool syncPar) ...@@ -258,8 +258,7 @@ Foam::fvSchemes::fvSchemes(const objectRegistry& obr, const bool syncPar)
obr, obr,
IOobject::MUST_READ_IF_MODIFIED, IOobject::MUST_READ_IF_MODIFIED,
IOobject::NO_WRITE IOobject::NO_WRITE
), )
syncPar
), ),
ddtSchemes_ ddtSchemes_
( (
......
...@@ -103,7 +103,7 @@ public: ...@@ -103,7 +103,7 @@ public:
// Constructors // Constructors
//- Construct for objectRegistry //- Construct for objectRegistry
fvSchemes(const objectRegistry& obr, const bool syncPar = true); fvSchemes(const objectRegistry& obr);
// Member Functions // Member Functions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment