Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
54c4dd3
1
Parent(s):
3abb4b0
Shorten tests
Browse files- test/test.py +1 -1
test/test.py
CHANGED
@@ -3,5 +3,5 @@ from pysr import pysr
|
|
3 |
X = np.random.randn(100, 5)
|
4 |
y = X[:, 0]
|
5 |
|
6 |
-
equations = pysr(X, y)
|
7 |
print(equations)
|
|
|
3 |
X = np.random.randn(100, 5)
|
4 |
y = X[:, 0]
|
5 |
|
6 |
+
equations = pysr(X, y, niterations=2)
|
7 |
print(equations)
|