mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Make sure no_reduce is interpreted correctly
This commit is contained in:
parent
2997120755
commit
bdf5ea20e3
1 changed files with 1 additions and 1 deletions
|
|
@ -666,7 +666,7 @@ void read_settings_xml()
|
|||
// Check if the user has specified to not reduce tallies at the end of every
|
||||
// batch
|
||||
if (check_for_node(root, "no_reduce")) {
|
||||
reduce_tallies = get_node_value_bool(root, "no_reduce");
|
||||
reduce_tallies = !get_node_value_bool(root, "no_reduce");
|
||||
}
|
||||
|
||||
// Check if the user has specified to use confidence intervals for
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue