Skip to content

Commit b704b19

Browse files
cjekelwonch002
authored andcommitted
liberal bounds for offset and slope
1 parent 69f0c5f commit b704b19

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

examples/mixed_degree_forcing_slope.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ def my_fun(beta):
2727

2828
bounds = np.zeros((3, 2))
2929
# first line offset
30-
bounds[0, 0] = -10.0 # lower bound
31-
bounds[0, 1] = 10.0 # upper bound
30+
bounds[0, 0] = -100.0 # lower bound
31+
bounds[0, 1] = 100.0 # upper bound
3232
# first line slope
33-
bounds[1, 0] = -10.0 # lower bound
34-
bounds[1, 1] = 10.0 # upper bound
33+
bounds[1, 0] = -100.0 # lower bound
34+
bounds[1, 1] = 100.0 # upper bound
3535
# breakpont
3636
bounds[2, 0] = 2. # lower bound
3737
bounds[2, 1] = 6. # upper bound

0 commit comments

Comments
 (0)