Skip to content

Commit d4082a8

Browse files
authored
Merge pull request #53 from Axiomatic-AI/default-range
PIC: Larger default range
2 parents fd651be + f9e2bb6 commit d4082a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/axiomatic/pic_helpers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ def update_wavelengths(mapping: Dict[str, Optional[Computation]], min_wl: float,
509509
max_wl = max(max_wl, max(vlines))
510510
if min_wl >= max_wl:
511511
avg_wl = sum(vlines) / len(vlines) if vlines else 1550
512-
min_wl, max_wl = avg_wl - 0.1, avg_wl + 0.1
512+
min_wl, max_wl = avg_wl - 10, avg_wl + 10
513513
else:
514514
range_size = max_wl - min_wl
515515
min_wl -= 0.2 * range_size

0 commit comments

Comments
 (0)