Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
OpenFOAM-plus
Commits
898e0eb4
Commit
898e0eb4
authored
Apr 19, 2017
by
mattijs
Browse files
BUG: timeActivatedFileUpdate: fix setting of distributed from decomposeParDict.
Fixes
#420
.
parent
b6a57b45
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/OpenFOAM/global/argList/argList.C
View file @
898e0eb4
...
...
@@ -702,8 +702,9 @@ void Foam::argList::parse
decompDict
.
lookup
(
"numberOfSubdomains"
)
);
if
(
decompDict
.
lookupOrDefault
(
"distributed"
,
distributed_
))
if
(
decompDict
.
lookupOrDefault
(
"distributed"
,
false
))
{
distributed_
=
true
;
decompDict
.
lookup
(
"roots"
)
>>
roots
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment