Author: mrogers
Date: 2006-09-14 14:13:05 +0000 (Thu, 14 Sep 2006)
New Revision: 10463

Modified:
   trunk/apps/load-balancing-sims/phase6/CongestionWindow.java
Log:
CHK inserts, sorry about the large number of commits, I accidentally added 
classfiles to the repository and I'm trying to fix it

Modified: trunk/apps/load-balancing-sims/phase6/CongestionWindow.java
===================================================================
--- trunk/apps/load-balancing-sims/phase6/CongestionWindow.java 2006-09-14 
14:13:00 UTC (rev 10462)
+++ trunk/apps/load-balancing-sims/phase6/CongestionWindow.java 2006-09-14 
14:13:05 UTC (rev 10463)
@@ -2,8 +2,8 @@

 class CongestionWindow
 {
-       public final static int MIN_CWIND = 3000; // Minimum congestion window
-       public final static int MAX_CWIND = 1000000; // Max congestion window
+       public final static int MIN_CWIND = Packet.MAX_SIZE; // Min window size
+       public final static int MAX_CWIND = 1000000; // Max window size
        public final static double ALPHA = 0.3125; // AIMD increase parameter
        public final static double BETA = 0.875; // AIMD decrease parameter
        public final static double GAMMA = 3.0; // Slow start divisor


Reply via email to