mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-05 22:04:27 +08:00
22 lines
481 B
Python
Executable File
22 lines
481 B
Python
Executable File
# $Id$
|
|
#
|
|
# Copyright (C) 2003-2006 Greg Landrum and Rational Discovery LLC
|
|
#
|
|
# @@ All Rights Reserved @@
|
|
# This file is part of the RDKit.
|
|
# The contents are covered by the terms of the BSD license
|
|
# which is included in the file license.txt, found at the root
|
|
# of the RDKit source tree.
|
|
#
|
|
""" making random numbers consistent so we get good regressions
|
|
|
|
"""
|
|
|
|
import sys
|
|
|
|
import random as _random
|
|
random = _random.random
|
|
randrange = _random.randrange
|
|
seed = _random.seed
|
|
|