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
dumux-repositories
dumux
Commits
98ffcbae
Commit
98ffcbae
authored
Jul 25, 2019
by
Kilian Weishaupt
Browse files
[logginParameterTree] Exclude "ParamFile" from unused params
parent
f807e072
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/common/loggingparametertree.hh
View file @
98ffcbae
...
...
@@ -467,7 +467,7 @@ private:
// store keys which were not accessed
const
auto
&
keys
=
tree
.
getValueKeys
();
for
(
const
auto
&
key
:
keys
)
if
(
!
usedRuntimeParams_
.
hasKey
(
prefix
+
key
))
if
(
key
!=
"ParameterFile"
&&
!
usedRuntimeParams_
.
hasKey
(
prefix
+
key
))
unusedParams
.
push_back
(
prefix
+
key
);
// recursively loop over all subtrees
...
...
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