random seed fix

This commit is contained in:
fros4943 2007-11-20 05:19:47 +00:00
parent a9c3799a42
commit 79898a5096

View File

@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* $Id: UDGM.java,v 1.10 2007/10/31 13:58:21 fros4943 Exp $ * $Id: UDGM.java,v 1.11 2007/11/20 05:19:47 fros4943 Exp $
*/ */
package se.sics.cooja.radiomediums; package se.sics.cooja.radiomediums;
@ -397,6 +397,7 @@ public class UDGM extends AbstractRadioMedium {
myRadioMedium = this; myRadioMedium = this;
mySimulation = simulation; mySimulation = simulation;
random.setSeed(simulation.getRandomSeed());
} }
public RadioConnection createConnections(Radio sendingRadio) { public RadioConnection createConnections(Radio sendingRadio) {
@ -560,6 +561,7 @@ public class UDGM extends AbstractRadioMedium {
SUCCESS_RATIO = Double.parseDouble(element.getText()); SUCCESS_RATIO = Double.parseDouble(element.getText());
} }
} }
random.setSeed(mySimulation.getRandomSeed());
return true; return true;
} }