Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
03484602a6121efbb6b428dfa023518aa1215c22
[simgrid.git] / simgrid-java / examples / chord / Common.java
1 /*
2  * Copyright 2006-2012. The SimGrid Team. All rights reserved. 
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. 
6  */
7 package chord;
8 /**
9  * Common constants used over the simulation
10  */
11 public class Common {
12         public final static int COMM_SIZE = 10;
13         public final static int COMP_SIZE = 0;
14         
15         public final static int NB_BITS = 24;
16         public final static int NB_KEYS = 16777216;
17         public final static int TIMEOUT = 50;
18         public final static int MAX_SIMULATION_TIME = 1000;
19         public final static int PERIODIC_STABILIZE_DELAY = 20;
20         public final static int PERIODIC_FIX_FINGERS_DELAY = 120;
21         public final static int PERIODIC_CHECK_PREDECESSOR_DELAY = 120;
22         public final static int PERIODIC_LOOKUP_DELAY = 10;
23 }