Skip to content

Commit 8390e47

Browse files
authored
Merge pull request #219 from MilesCranmer/simdified-safe-operators
Fixed safe operators; make progress bar print to stderr
2 parents c83cdd7 + 5784d04 commit 8390e47

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pysr/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__version__ = "0.11.8"
2-
__symbolic_regression_jl_version__ = "0.14.2"
2+
__symbolic_regression_jl_version__ = "0.14.3"

test/test.py

+2
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ def test_multiprocessing_turbo(self):
7474
y = self.X[:, 0]
7575
model = PySRRegressor(
7676
**self.default_test_kwargs,
77+
# Turbo needs to work with unsafe operators:
78+
unary_operators=["sqrt"],
7779
procs=2,
7880
multithreading=False,
7981
turbo=True,

0 commit comments

Comments
 (0)