Skip to content

Commit

Permalink
docs: separate runtime params
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed May 5, 2024
1 parent 9f3b918 commit 7021459
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pysr/sr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1610,15 +1610,16 @@ def _run(
unary_operators = runtime_params.unary_operators
maxdepth = runtime_params.maxdepth
constraints = runtime_params.constraints
nested_constraints = self.nested_constraints
complexity_of_operators = self.complexity_of_operators
multithreading = runtime_params.multithreading
cluster_manager = self.cluster_manager
batch_size = runtime_params.batch_size
update_verbosity = runtime_params.update_verbosity
progress = runtime_params.progress
warmup_maxsize_by = runtime_params.warmup_maxsize_by

nested_constraints = self.nested_constraints
complexity_of_operators = self.complexity_of_operators
cluster_manager = self.cluster_manager

# Start julia backend processes
if not already_ran and update_verbosity != 0:
print("Compiling Julia backend...")
Expand Down

0 comments on commit 7021459

Please sign in to comment.