@@ -31,10 +31,10 @@ def __init__(
3131 self ._logger .error (f"Incorrect prescribed permutation: { self .__permutation } " )
3232 raise SystemExit (1 )
3333
34- def execute (self , p_id : int , phases : list , distributions : dict , statistics : dict , a_min_max ):
34+ def execute (self , p_id : int , phases : list , statistics : dict , a_min_max ):
3535 """ Apply prescribed permutation to phase objects."""
3636 # Perform pre-execution checks and initializations
37- self ._initialize (p_id , phases , distributions , statistics )
37+ self ._initialize (p_id , phases , statistics )
3838 objects = self ._rebalanced_phase .get_objects ()
3939 if (l_p := len (self .__permutation )) != len (objects ):
4040 self ._logger .error (
@@ -75,8 +75,8 @@ def execute(self, p_id: int, phases: list, distributions: dict, statistics: dict
7575 "post-permutation rank work" ,
7676 self ._logger )
7777
78- # Update run distributions and statistics
79- self ._update_distributions_and_statistics ( distributions , statistics )
78+ # Update run statistics
79+ self ._update_statistics ( statistics )
8080
8181 # Report final mapping in debug mode
8282 self ._report_final_mapping (self ._logger )
0 commit comments