Spaces:
Running
Running
Commit
·
30b2f09
1
Parent(s):
bf87ffb
Fix high precision test in case of complex formula
Browse files- test/test.py +1 -1
test/test.py
CHANGED
@@ -90,7 +90,7 @@ class TestPipeline(unittest.TestCase):
|
|
90 |
precision=64,
|
91 |
)
|
92 |
model.fit(self.X, y)
|
93 |
-
self.assertIn("1.23456789", model.
|
94 |
|
95 |
from pysr.sr import Main
|
96 |
|
|
|
90 |
precision=64,
|
91 |
)
|
92 |
model.fit(self.X, y)
|
93 |
+
self.assertIn("1.23456789", model.get_best()["equation"])
|
94 |
|
95 |
from pysr.sr import Main
|
96 |
|