Update app.py
Browse files
app.py
CHANGED
|
@@ -428,7 +428,7 @@ def make_figure(d: int,
|
|
| 428 |
base_size = node_r * 2
|
| 429 |
|
| 430 |
if mark_distances and v in neighbor_set:
|
| 431 |
-
sizes.append(base_size * 1.
|
| 432 |
else:
|
| 433 |
sizes.append(base_size * (2 if v in in_path else 1))
|
| 434 |
|
|
|
|
| 428 |
base_size = node_r * 2
|
| 429 |
|
| 430 |
if mark_distances and v in neighbor_set:
|
| 431 |
+
sizes.append(base_size * 1.4)
|
| 432 |
else:
|
| 433 |
sizes.append(base_size * (2 if v in in_path else 1))
|
| 434 |
|