From e450eb82d2f8683fc7996704b28607268ee9ad33 Mon Sep 17 00:00:00 2001 From: John Tramm Date: Thu, 23 Jan 2020 17:30:34 +0000 Subject: [PATCH] fixed indentation in simulation function. --- src/simulation.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/simulation.cpp b/src/simulation.cpp index 6bcc2a81f..5569358c3 100644 --- a/src/simulation.cpp +++ b/src/simulation.cpp @@ -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) {