Spaces:
Build error
Build error
Commit ·
a944e3d
1
Parent(s): 687e20c
updated dependencies and removed print
Browse files- flow_game_solver.py +0 -1
- requirements.txt +1 -1
flow_game_solver.py
CHANGED
|
@@ -124,7 +124,6 @@ def plot_directed_solution_with_dir(board, S, direction, colors=plt.cm.tab20.col
|
|
| 124 |
ax.plot(
|
| 125 |
[prev_x, cur_x], [prev_y, cur_y], color=colors[int(item[0])], lw=linewidth
|
| 126 |
)
|
| 127 |
-
print(S)
|
| 128 |
utils.add_walls_and_source_to_ax(ax, colors, board, linewidth**2)
|
| 129 |
|
| 130 |
return ax.figure
|
|
|
|
| 124 |
ax.plot(
|
| 125 |
[prev_x, cur_x], [prev_y, cur_y], color=colors[int(item[0])], lw=linewidth
|
| 126 |
)
|
|
|
|
| 127 |
utils.add_walls_and_source_to_ax(ax, colors, board, linewidth**2)
|
| 128 |
|
| 129 |
return ax.figure
|
requirements.txt
CHANGED
|
@@ -28,7 +28,7 @@ packaging==22.0
|
|
| 28 |
pandas==1.5.2
|
| 29 |
Pillow==9.3.0
|
| 30 |
pkgutil_resolve_name==1.3.10
|
| 31 |
-
protobuf==
|
| 32 |
pyarrow==10.0.1
|
| 33 |
pydeck==0.8.0
|
| 34 |
Pygments==2.13.0
|
|
|
|
| 28 |
pandas==1.5.2
|
| 29 |
Pillow==9.3.0
|
| 30 |
pkgutil_resolve_name==1.3.10
|
| 31 |
+
protobuf==3.19.4
|
| 32 |
pyarrow==10.0.1
|
| 33 |
pydeck==0.8.0
|
| 34 |
Pygments==2.13.0
|