[Sumover-dev] [svn commit] r4513 - vic/branches/cc/cc

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Thu Sep 17 13:49:10 BST 2009


Author: soohyunc
Date: Thu Sep 17 13:49:10 2009
New Revision: 4513

Modified:
   vic/branches/cc/cc/tfwc_rcvr.cpp

Log:
In order to be sure that the current number of AckVec chunk(s) are more than the
previous number of AckVeck chunk(s). - i.e., we need more AckVec chunk(s).


Modified: vic/branches/cc/cc/tfwc_rcvr.cpp
==============================================================================
--- vic/branches/cc/cc/tfwc_rcvr.cpp	(original)
+++ vic/branches/cc/cc/tfwc_rcvr.cpp	Thu Sep 17 13:49:10 2009
@@ -142,7 +142,7 @@
 		int z = numLoss%BITLEN;
 
 		// we need more AckVec chunks (maybe one or more)
-		if (currNumVec_ != prevNumVec_) {
+		if (currNumVec_ > prevNumVec_) {
 			// currently available spaces in the previous tfwcAV array
 			int numAvail = BITLEN - y;
 



More information about the Sumover-dev mailing list