mirror of
https://github.com/bulletphysics/bullet3.git
synced 2026-09-13 05:48:18 +00:00
15 lines
220 B
Python
15 lines
220 B
Python
import random
|
|
import numpy as np
|
|
|
|
|
|
def set_global_seeds(seed):
|
|
try:
|
|
import tf.compat.v1 as tf
|
|
except ImportError:
|
|
pass
|
|
else:
|
|
tf.set_random_seed(seed)
|
|
np.random.seed(seed)
|
|
random.seed(seed)
|
|
return
|