rand.Seed has been depreciated as of Go 1.2. We need to replace instances of rand.Seed in gonomics by generating a new random source that is only used by the local function and using the new source instead of the global rand source throughout the function.
rand.Seedhas been depreciated as of Go 1.2. We need to replace instances ofrand.Seedin gonomics by generating a new random source that is only used by the local function and using the new source instead of the global rand source throughout the function.