mirror of
https://github.com/telanflow/mps.git
synced 2025-09-26 20:41:25 +08:00
12 lines
157 B
Go
12 lines
157 B
Go
package mps
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
var (
|
|
// global random numbers for MPS. Go v1.20
|
|
mpsRand = rand.New(rand.NewSource(time.Now().UnixNano()))
|
|
)
|