Skip to content

Commit a153cb2

Browse files
Update plot_2d_landscape_for_nonseparable_functions.py
1 parent 33f5349 commit a153cb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tutorials/plot_2d_landscape_for_nonseparable_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def cd(x): # from https://arxiv.org/pdf/1610.00040v1.pdf
2323
def plot_contour(func, x, y):
2424
x, y, z = generate_xyz(func, x, y, 500)
2525
plt.contourf(x, y, z, cmap='cool')
26-
plt.contour(x, y, z, colors='white', alpha=0.5)
26+
plt.contour(x, y, z, colors='white')
2727

2828

2929
if __name__ == '__main__':

0 commit comments

Comments
 (0)