Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
kill another out of date script
[simgrid.git] / contrib / psg / src / peersim / edsim / RandNextCycle.java
1 /*
2  * Copyright (c) 2003-2005 The BISON Project
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16  *
17  */
18
19 package peersim.edsim;
20
21 import peersim.core.*;
22
23
24 /**
25 * Implements random delay between calling the nextCycle method of the protocol.
26 * @see #nextDelay
27 */
28 public class RandNextCycle extends NextCycleEvent {
29
30
31 // =============================== initialization ======================
32 // =====================================================================
33
34
35 /**
36 * Calls super constructor.
37 */
38 public RandNextCycle(String n) { super(n); }
39
40 // --------------------------------------------------------------------
41
42 /**
43 * Calls super.clone().
44 */
45 public Object clone() throws CloneNotSupportedException {
46         
47         return super.clone();
48 }
49
50
51 // ========================== methods ==================================
52 // =====================================================================
53
54
55 /**
56 * Returns a random delay with uniform distribution between 1 (inclusive) and
57 * 2*<code>step</code> (exclusive)
58 * (expected value is therefore <code>step</code>).
59 */
60 protected long nextDelay(long step) {
61         
62         return 1+CommonState.r.nextLong((step<<1)-1);
63 }
64
65
66 }
67
68