src/core/random-variable.h
changeset 4234 7ec503ed040d
parent 4229 4814b2348908
child 4240 f6d7db7580ff
--- a/src/core/random-variable.h	Tue Feb 17 14:49:22 2009 -0500
+++ b/src/core/random-variable.h	Mon Feb 23 22:55:16 2009 -0500
@@ -55,24 +55,12 @@
    * \param seed
    */ 
   static void SetSeed (uint32_t seed);
-
-   /**
-   * \brief set the seed
-   * \code
-   * uint32_t seed[6]={10,5,2,3,5,11};
-   * SeedManger::SetSeed(seed);
-   * UniformVariable x(2,3);     //these will give the same output everytime
-   * ExponentialVariable y(120); //as long as the seed stays the same
-   * \endcode
-   * \param seed
-   */ 
-   static void SetSeed (uint32_t seed[6]);
  
   /**
    * \brief Get the seed value
-   * \param array of size 6 which will hold returned seed values
+   * \return the seed value
    */
-   static void GetSeed (uint32_t seed[6]);
+   static uint32_t GetSeed ();
  
    /**
     * \brief Set the run number of simulation