1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| from __future__ import annotations
|
| import numba
| import numpy as np
|
|
| @numba.jit(
| # error: Any? not callable
| numba.boolean(numba.int64[:]), # type: ignore[misc]
| nopython=True,
| nogil=True,
| parallel=False,
| )
| def is_monotonic_increasing(bounds: np.ndarray) -> bool:
| """Check if int64 values are monotonically increasing."""
| n = len(bounds)
| if n < 2:
| return True
| prev = bounds[0]
| for i in range(1, n):
| cur = bounds[i]
| if cur < prev:
| return False
| prev = cur
| return True
|
|