Skip to content

Commit

Permalink
update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre.delaunay committed Jul 24, 2024
1 parent d714488 commit 1b73a5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmarks/_templates/simple/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


def criterion(*args, **kwargs):
return random.normalvariate()
return random.normalvariate(0, 1)


def main():
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/_templates/stdout/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


def criterion(*args, **kwargs):
return random.normalvariate()
return random.normalvariate(0, 1)


def main():
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/_templates/voir/benchfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

SOURCE_DIR = "src"
REPO_URL = "https://github.com/Delaunay/extern_example.git"
BRANCH = "a524286ab6364bca6729dd6ef4936e175a87c7e4"
BRANCH = "a3130b3251d3a909d2a7c59efa948a34e52cbbbb"


class Template(Package):
Expand Down

0 comments on commit 1b73a5b

Please sign in to comment.