Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ccanel committed Feb 19, 2024
1 parent 656cd5d commit 1a70efc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unfair/scripts/eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ def calculate_maxmin_ratios(params, flw_to_pkts, flw_to_sender, sender_to_flws):
), f"Error: Expected 3 bottleneck situations, but found: {len(bneck_situations)}"

# Determine the maxmin fair rate for each flow in each bottleneck situation
bneck_to_sender_to_maxminbps = {}
bneck_to_sender_to_maxminbps = collections.defaultdict(dict)
for start_s, end_s, sender_to_ratebps in bneck_situations:
bneck = (start_s, end_s)
# Calculate the maxmin fair rate at the sender bottlenecks.
Expand Down

0 comments on commit 1a70efc

Please sign in to comment.