Skip to content

Commit

Permalink
Color update 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiran Venkata Yedugundla committed Apr 27, 2017
1 parent d74f337 commit 6028a64
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion main.tex
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ \section{Improvements to TLP for MPTCP}\label{impr}
essentially the same consequence as a retransmission, it is relevant to follow the same process as upon an RTO. It is expected that this
modification is useful when the alternate path has lower delay than the packet original transmission path or when there is longer path
interruption. The timing diagram depicted in Figure~\ref{timingNew} indicates the eventual behavior of modified MPTCP TLP for each of the studied
loss scenarios. In the case of single packet tail loss, lost packet is retransmitted on the alternate path at the same time as probe sent on primary
loss scenarios. In the case of single packet tail loss, lost packet is retransmitted on an alternate path at the same time as probe sent on primary
path. Since probe is the last transmitted packet, that is same as the retransmitted first outstanding packet in single packet tail loss. When two tail packets are lost,
probe sent on the primary is the last transmitted packet and first outstanding packet is retransmitted on the alternate path. This difference in packet
sequence numbers is expected on the two paths due to the nature of recovery mechanism used in each path. In the case of packet and probe loss in the
Expand Down
Binary file modified plots/1PNew.pdf
Binary file not shown.
Binary file modified plots/1PPNew.pdf
Binary file not shown.
Binary file modified plots/2PNew.pdf
Binary file not shown.
8 changes: 4 additions & 4 deletions plots/plot_tlp_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@
bar_width = (1-2*margin)/3


rects1 = plt.bar(index+margin, p1pe3 , bar_width,
rects1 = plt.bar(index+margin, p2e3 , bar_width,
color='navy',
label='mptcp')

rects2 = plt.bar(index+margin + bar_width, np1pe3 , bar_width,
color='indigo',
rects2 = plt.bar(index+margin + bar_width, np2e3 , bar_width,
color='m',
label='mptcp-New')

rects3 = plt.bar(index+margin + 2*bar_width, tp1pe3, bar_width,
rects3 = plt.bar(index+margin + 2*bar_width, tp2e3, bar_width,
color='seagreen',
label='tcp')

Expand Down

0 comments on commit 6028a64

Please sign in to comment.