From c34be4917c51ac7f6e18640baea40ac5fe69c8d4 Mon Sep 17 00:00:00 2001 From: David A Minton Date: Tue, 15 Nov 2022 08:27:42 -0500 Subject: [PATCH] Rearranged the order of variables to output in get_feature --- python/swiftest/swiftest/simulation_class.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/swiftest/swiftest/simulation_class.py b/python/swiftest/swiftest/simulation_class.py index 20c16b1f4..01ad0a866 100644 --- a/python/swiftest/swiftest/simulation_class.py +++ b/python/swiftest/swiftest/simulation_class.py @@ -1017,17 +1017,17 @@ def get_feature(self, arg_list: str | List[str] | None = None, verbose: bool | N """ valid_var = {"close_encounter_check": "CHK_CLOSE", - "general_relativity": "GR", "fragmentation": "FRAGMENTATION", + "minimum_fragment_gmass": "MIN_GMFRAG", "rotation": "ROTATION", + "general_relativity": "GR", "compute_conservation_values": "ENERGY", + "rhill_present": "RHILL_PRESENT", "extra_force": "EXTRA_FORCE", "big_discard": "BIG_DISCARD", - "rhill_present": "RHILL_PRESENT", - "restart": "RESTART", "interaction_loops": "INTERACTION_LOOPS", "encounter_check_loops": "ENCOUNTER_CHECK", - "minimum_fragment_gmass" : "MIN_GMFRAG" + "restart": "RESTART" } valid_arg, feature_dict = self._get_valid_arg_list(arg_list, valid_var)