mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-26 13:15:39 -04:00
fixed indentation in simulation function.
This commit is contained in:
parent
97da05095f
commit
e450eb82d2
1 changed files with 5 additions and 5 deletions
|
|
@ -626,11 +626,11 @@ void transport_event_based()
|
|||
while (true) {
|
||||
// Determine which event kernel has the longest queue
|
||||
int64_t max = std::max({
|
||||
simulation::calculate_fuel_xs_queue_length,
|
||||
simulation::calculate_nonfuel_xs_queue_length,
|
||||
simulation::advance_particle_queue_length,
|
||||
simulation::surface_crossing_queue_length,
|
||||
simulation::collision_queue_length});
|
||||
simulation::calculate_fuel_xs_queue_length,
|
||||
simulation::calculate_nonfuel_xs_queue_length,
|
||||
simulation::advance_particle_queue_length,
|
||||
simulation::surface_crossing_queue_length,
|
||||
simulation::collision_queue_length});
|
||||
|
||||
// Execute event with the longest queue
|
||||
if (max == 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue