changeset 4218 | debf1a8a96d3 |
parent 3381 | 3cdd9d60f7c7 |
child 4225 | f1d873a81159 |
--- a/examples/simple-global-routing.cc Tue Dec 30 11:35:31 2008 -0800 +++ b/examples/simple-global-routing.cc Tue Jan 13 17:15:44 2009 -0500 @@ -64,7 +64,8 @@ // // Make the random number generators generate reproducible results. // - RandomVariable::UseGlobalSeed (1, 1, 2, 3, 5, 8); + uint32_t seed[6] = {1, 1, 2, 3, 5, 8}; + SeedManager::SetSeed(seed); // Set up some default values for the simulation. Use the Config::SetDefault ("ns3::OnOffApplication::PacketSize", UintegerValue (210));