Skip to content

Commit

Permalink
#446: restored inadvertently deleted constructor parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
ppebay committed Oct 13, 2023
1 parent d1cbac4 commit e0178fe
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/lbaf/Execution/lbsInformAndTransferAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ def __init__(
self._logger.error(f"Could not instantiate a transfer strategy of type {strat_name}")
raise SystemExit(1)

# Optional target imbalance for early termination of iterations
self.__target_imbalance = parameters.get("target_imbalance", 0.0)

# No information about peers is known initially
self.__known_peers = {}

Expand Down

0 comments on commit e0178fe

Please sign in to comment.