Skip to content

Commit

Permalink
#386: simplify method call
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Jun 6, 2023
1 parent 4256bb0 commit f3d50e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lbaf/Execution/lbsBruteForceAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def compute_arrangement_works(self, objects: tuple, arrangement: tuple) -> dict:
v = 0.0
for i in rank_object_ids:
v += sum([
v for k, v in objects[i].get_communicator().get_received().items()
v for k, v in objects[i].get_received().items()
if k not in rank_object_ids])
values["received volume"] = v

Expand Down

0 comments on commit f3d50e1

Please sign in to comment.