Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add kademlia example
[simgrid.git] / examples / chord / Common.java
1 package chord;
2 /**
3  * Common constants used over the simulation
4  */
5 public class Common {
6         public final static int COMM_SIZE = 10;
7         public final static int COMP_SIZE = 0;
8         
9         public final static int NB_BITS = 24;
10         public final static int NB_KEYS = 16777216;
11         public final static int TIMEOUT = 50;
12         public final static int MAX_SIMULATION_TIME = 1000;
13         public final static int PERIODIC_STABILIZE_DELAY = 20;
14         public final static int PERIODIC_FIX_FINGERS_DELAY = 120;
15         public final static int PERIODIC_CHECK_PREDECESSOR_DELAY = 120;
16         public final static int PERIODIC_LOOKUP_DELAY = 10;
17 }