From 60480de7c3d9d173bc6e683dd53b803c34ef4406 Mon Sep 17 00:00:00 2001 From: Ali Saidi Date: Fri, 11 Nov 2005 18:41:45 -0500 Subject: [PATCH] Update random come to always have explict min/max --HG-- extra : convert_revision : a2d1f6f8aa1df24ea524792f687f4d3ee31101f0 --- base/random.cc | 8 ++++---- base/random.hh | 36 ++++++++++++++++++------------------ dev/etherlink.cc | 2 +- 3 files changed, 23 insertions(+), 23 deletions(-) diff --git a/base/random.cc b/base/random.cc index cfa94b5e3..4aac14101 100644 --- a/base/random.cc +++ b/base/random.cc @@ -63,18 +63,18 @@ getLong() } int64_t -getUniform(int64_t maxmin) +getUniform(int64_t min, int64_t max) { double r; - r = (drand48() - 0.500) * 2 * maxmin; + r = drand48() * (max-min) + min; return (int64_t)round(r); } uint64_t -getUniformPos(uint64_t max) +getUniformPos(uint64_t min, uint64_t max) { double r; - r = drand48() * 2 * max; + r = drand48() * (max-min) + min; return (uint64_t)round(r); } diff --git a/base/random.hh b/base/random.hh index eac91a53c..def7a4bce 100644 --- a/base/random.hh +++ b/base/random.hh @@ -33,8 +33,8 @@ long getLong(); double getDouble(); -uint64_t getUniformPos(uint64_t max); -int64_t getUniform(int64_t max); +uint64_t getUniformPos(uint64_t min, uint64_t max); +int64_t getUniform(int64_t min, int64_t max); template struct Random; @@ -44,8 +44,8 @@ template<> struct Random static int8_t get() { return getLong() & (int8_t)-1; } - static int8_t uniform(int8_t maxmin) - { return getUniform(maxmin); } + static int8_t uniform(int8_t min, int8_t max) + { return getUniform(min, max); } }; template<> struct Random @@ -53,8 +53,8 @@ template<> struct Random static uint8_t get() { return getLong() & (uint8_t)-1; } - static uint8_t uniform(uint8_t max) - { return getUniformPos(max); } + static uint8_t uniform(uint8_t min, uint8_t max) + { return getUniformPos(min, max); } }; template<> struct Random @@ -62,8 +62,8 @@ template<> struct Random static int16_t get() { return getLong() & (int16_t)-1; } - static int16_t uniform(int16_t maxmin) - { return getUniform(maxmin); } + static int16_t uniform(int16_t min, int16_t max) + { return getUniform(min, max); } }; template<> struct Random @@ -71,8 +71,8 @@ template<> struct Random static uint16_t get() { return getLong() & (uint16_t)-1; } - static uint16_t uniform(uint16_t max) - { return getUniformPos(max); } + static uint16_t uniform(uint16_t min, uint16_t max) + { return getUniformPos(min, max); } }; template<> struct Random @@ -80,8 +80,8 @@ template<> struct Random static int32_t get() { return (int32_t)getLong(); } - static int32_t uniform(int32_t maxmin) - { return getUniform(maxmin); } + static int32_t uniform(int32_t min, int32_t max) + { return getUniform(min, max); } }; template<> struct Random @@ -89,8 +89,8 @@ template<> struct Random static uint32_t get() { return (uint32_t)getLong(); } - static uint32_t uniform(uint32_t max) - { return getUniformPos(max); } + static uint32_t uniform(uint32_t min, uint32_t max) + { return getUniformPos(min, max); } }; template<> struct Random @@ -98,8 +98,8 @@ template<> struct Random static int64_t get() { return (int64_t)getLong() << 32 || (uint64_t)getLong(); } - static int64_t uniform(int64_t maxmin) - { return getUniform(maxmin); } + static int64_t uniform(int64_t min, int64_t max) + { return getUniform(min, max); } }; template<> struct Random @@ -107,8 +107,8 @@ template<> struct Random static uint64_t get() { return (uint64_t)getLong() << 32 || (uint64_t)getLong(); } - static uint64_t uniform(uint64_t max) - { return getUniformPos(max); } + static uint64_t uniform(uint64_t min, uint64_t max) + { return getUniformPos(min, max); } }; template<> struct Random diff --git a/dev/etherlink.cc b/dev/etherlink.cc index e0f45c3bf..f68332926 100644 --- a/dev/etherlink.cc +++ b/dev/etherlink.cc @@ -162,7 +162,7 @@ EtherLink::Link::transmit(PacketPtr pkt) Tick delay = (Tick)ceil(((double)pkt->length * ticksPerByte) + 1.0); if (delayVar != 0) { Random var; - delay += var.uniform(delayVar); + delay += var.uniform(0, delayVar); } DPRINTF(Ethernet, "scheduling packet: delay=%d, (rate=%f)\n", delay, ticksPerByte);