From d869782ed034218def2849b10992296f1d156f46 Mon Sep 17 00:00:00 2001 From: David A Minton Date: Fri, 28 Jul 2023 18:32:13 -0400 Subject: [PATCH] Fixed line that got deleted somehow that was causing Helio runs to fail --- src/swiftest/swiftest_util.f90 | 1 + 1 file changed, 1 insertion(+) diff --git a/src/swiftest/swiftest_util.f90 b/src/swiftest/swiftest_util.f90 index f3ce3082f..19a0e6e98 100644 --- a/src/swiftest/swiftest_util.f90 +++ b/src/swiftest/swiftest_util.f90 @@ -2313,6 +2313,7 @@ module subroutine swiftest_util_setup_construct_system(nbody_system, param) case (INT_BS) write(*,*) 'Bulirsch-Stoer integrator not yet enabled' case (INT_HELIO) + allocate(helio_nbody_system :: nbody_system) select type(nbody_system) class is (helio_nbody_system) allocate(helio_cb :: nbody_system%cb)