mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Address #686 comments
This commit is contained in:
parent
be7ca28dee
commit
3e2e4743d8
1 changed files with 1 additions and 1 deletions
|
|
@ -328,7 +328,7 @@ class IncidentNeutron(object):
|
|||
|
||||
# Build summed reactions. Start from the highest MT number because high
|
||||
# MTs never depend on lower MTs.
|
||||
for mt_sum in sorted(SUM_RULES.keys())[::-1]:
|
||||
for mt_sum in sorted(SUM_RULES, reverse=True):
|
||||
if mt_sum not in data:
|
||||
xs_components = [data[mt].xs for mt in SUM_RULES[mt_sum]
|
||||
if mt in data]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue