Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

StandardBunch() doesn't use seed #22

Open
moellep opened this issue Jul 9, 2018 · 0 comments
Open

StandardBunch() doesn't use seed #22

moellep opened this issue Jul 9, 2018 · 0 comments

Comments

@moellep
Copy link
Member

moellep commented Jul 9, 2018

The StandardBunch class doesn't use the seed arg if provided. One way to do this would be to use the seed to create a random instance, and then replace all the random.random() and self.np.random.randn() calls with self.random.random() and self.np_random.randn().

        if seed is not None:
            self.random = random.Random(seed)
            self.np_random = np.random.RandomState(seed)
        else:
            self.random = random
            self.np_random = np.random
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant