Skip to content

Commit e9593fb

Browse files
committed
Typo on upper bound first variable in create_grid_space script.
1 parent b9ff09f commit e9593fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/spaces/create_grid_space.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Finally, we define the lower and upper bounds
1010
# Note that they have to be the same size as n_variables
1111
lower_bound = (0.5, 1)
12-
upper_bound = (2, 2)
12+
upper_bound = (2.0, 2)
1313

1414
# Creating the GridSpace object
1515
s = GridSpace(n_variables=n_variables, step=step, lower_bound=lower_bound, upper_bound=upper_bound)

0 commit comments

Comments
 (0)