Skip to content

Commit

Permalink
fix random seed
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrantq committed Sep 18, 2024
1 parent 5c4eae6 commit 8fc12a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions example/fpopt-logged-driver-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
num_samples_per_func = 100
default_regex = "ex\\d+"

np.random.seed(42)

def parse_bound(bound):
if "/" in bound:
Expand Down
1 change: 1 addition & 0 deletions example/fpopt-original-driver-generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
num_samples_per_func = 100
default_regex = "ex\\d+"

np.random.seed(42)

def parse_bound(bound):
if "/" in bound:
Expand Down

0 comments on commit 8fc12a5

Please sign in to comment.