biotite 0.39.0__cp312-cp312-macosx_11_0_arm64.whl → 0.40.0__cp312-cp312-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of biotite might be problematic. Click here for more details.

Files changed (104) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/rcsb/download.py +19 -14
  4. biotite/sequence/align/banded.c +256 -235
  5. biotite/sequence/align/banded.cpython-312-darwin.so +0 -0
  6. biotite/sequence/align/kmeralphabet.c +241 -220
  7. biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
  8. biotite/sequence/align/kmersimilarity.c +213 -194
  9. biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
  10. biotite/sequence/align/kmertable.cpp +231 -203
  11. biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
  12. biotite/sequence/align/localgapped.c +256 -235
  13. biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
  14. biotite/sequence/align/localungapped.c +233 -212
  15. biotite/sequence/align/localungapped.cpython-312-darwin.so +0 -0
  16. biotite/sequence/align/multiple.c +253 -232
  17. biotite/sequence/align/multiple.cpython-312-darwin.so +0 -0
  18. biotite/sequence/align/pairwise.c +272 -251
  19. biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
  20. biotite/sequence/align/permutation.c +213 -194
  21. biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
  22. biotite/sequence/align/selector.c +215 -195
  23. biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
  24. biotite/sequence/align/tracetable.c +213 -193
  25. biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
  26. biotite/sequence/codec.c +233 -212
  27. biotite/sequence/codec.cpython-312-darwin.so +0 -0
  28. biotite/sequence/phylo/nj.c +213 -194
  29. biotite/sequence/phylo/nj.cpython-312-darwin.so +0 -0
  30. biotite/sequence/phylo/tree.c +225 -200
  31. biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
  32. biotite/sequence/phylo/upgma.c +213 -194
  33. biotite/sequence/phylo/upgma.cpython-312-darwin.so +0 -0
  34. biotite/structure/basepairs.py +7 -12
  35. biotite/structure/bonds.c +1173 -1224
  36. biotite/structure/bonds.cpython-312-darwin.so +0 -0
  37. biotite/structure/celllist.c +215 -195
  38. biotite/structure/celllist.cpython-312-darwin.so +0 -0
  39. biotite/structure/charges.c +1050 -1099
  40. biotite/structure/charges.cpython-312-darwin.so +0 -0
  41. biotite/structure/filter.py +30 -37
  42. biotite/structure/info/__init__.py +5 -8
  43. biotite/structure/info/atoms.py +25 -67
  44. biotite/structure/info/bonds.py +46 -100
  45. biotite/structure/info/ccd/README.rst +8 -0
  46. biotite/structure/info/ccd/amino_acids.txt +1646 -0
  47. biotite/structure/info/ccd/carbohydrates.txt +1133 -0
  48. biotite/structure/info/ccd/components.bcif +0 -0
  49. biotite/structure/info/ccd/nucleotides.txt +797 -0
  50. biotite/structure/info/ccd.py +95 -0
  51. biotite/structure/info/groups.py +90 -0
  52. biotite/structure/info/masses.py +21 -20
  53. biotite/structure/info/misc.py +11 -22
  54. biotite/structure/info/standardize.py +17 -12
  55. biotite/structure/io/__init__.py +2 -4
  56. biotite/structure/io/ctab.py +1 -1
  57. biotite/structure/io/general.py +37 -43
  58. biotite/structure/io/mmtf/__init__.py +3 -0
  59. biotite/structure/io/mmtf/convertarray.c +217 -196
  60. biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so +0 -0
  61. biotite/structure/io/mmtf/convertfile.c +215 -195
  62. biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so +0 -0
  63. biotite/structure/io/mmtf/decode.c +223 -202
  64. biotite/structure/io/mmtf/decode.cpython-312-darwin.so +0 -0
  65. biotite/structure/io/mmtf/encode.c +213 -194
  66. biotite/structure/io/mmtf/encode.cpython-312-darwin.so +0 -0
  67. biotite/structure/io/mmtf/file.py +34 -26
  68. biotite/structure/io/npz/__init__.py +3 -0
  69. biotite/structure/io/npz/file.py +21 -18
  70. biotite/structure/io/pdb/__init__.py +3 -3
  71. biotite/structure/io/pdb/file.py +5 -3
  72. biotite/structure/io/pdb/hybrid36.c +63 -43
  73. biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so +0 -0
  74. biotite/structure/io/pdbqt/file.py +32 -32
  75. biotite/structure/io/pdbx/__init__.py +13 -6
  76. biotite/structure/io/pdbx/bcif.py +649 -0
  77. biotite/structure/io/pdbx/cif.py +1028 -0
  78. biotite/structure/io/pdbx/component.py +243 -0
  79. biotite/structure/io/pdbx/convert.py +707 -359
  80. biotite/structure/io/pdbx/encoding.c +112803 -0
  81. biotite/structure/io/pdbx/encoding.cpython-312-darwin.so +0 -0
  82. biotite/structure/io/pdbx/error.py +14 -0
  83. biotite/structure/io/pdbx/legacy.py +267 -0
  84. biotite/structure/molecules.py +151 -151
  85. biotite/structure/sasa.c +213 -194
  86. biotite/structure/sasa.cpython-312-darwin.so +0 -0
  87. biotite/structure/superimpose.py +158 -115
  88. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
  89. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
  90. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
  91. biotite/structure/info/amino_acids.json +0 -1556
  92. biotite/structure/info/amino_acids.py +0 -42
  93. biotite/structure/info/carbohydrates.json +0 -1122
  94. biotite/structure/info/carbohydrates.py +0 -39
  95. biotite/structure/info/intra_bonds.msgpack +0 -0
  96. biotite/structure/info/link_types.msgpack +0 -1
  97. biotite/structure/info/nucleotides.json +0 -772
  98. biotite/structure/info/nucleotides.py +0 -39
  99. biotite/structure/info/residue_masses.msgpack +0 -0
  100. biotite/structure/info/residue_names.msgpack +0 -3
  101. biotite/structure/info/residues.msgpack +0 -0
  102. biotite/structure/io/pdbx/file.py +0 -652
  103. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
  104. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1666
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1675
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1684
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1693
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1702
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1711
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1729
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1747
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1756
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1765
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1755
1773
 
1756
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1757
1775
  * ctypedef npy_longlong longlong_t
1758
1776
  *
1759
1777
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1762
1780
  */
1763
1781
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1764
1782
 
1765
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1783
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1766
1784
  *
1767
1785
  * ctypedef npy_ulong uint_t
1768
1786
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1771
1789
  */
1772
1790
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1773
1791
 
1774
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1775
1793
  * ctypedef npy_ulonglong ulonglong_t
1776
1794
  *
1777
1795
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1780
1798
  */
1781
1799
  typedef npy_intp __pyx_t_5numpy_intp_t;
1782
1800
 
1783
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1784
1802
  *
1785
1803
  * ctypedef npy_intp intp_t
1786
1804
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1789
1807
  */
1790
1808
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1791
1809
 
1792
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1793
1811
  * ctypedef npy_uintp uintp_t
1794
1812
  *
1795
1813
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1798
1816
  */
1799
1817
  typedef npy_double __pyx_t_5numpy_float_t;
1800
1818
 
1801
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1802
1820
  *
1803
1821
  * ctypedef npy_double float_t
1804
1822
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1807
1825
  */
1808
1826
  typedef npy_double __pyx_t_5numpy_double_t;
1809
1827
 
1810
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1828
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1811
1829
  * ctypedef npy_double float_t
1812
1830
  * ctypedef npy_double double_t
1813
1831
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1902,7 +1920,7 @@ struct __pyx_MemviewEnum_obj;
1902
1920
  struct __pyx_memoryview_obj;
1903
1921
  struct __pyx_memoryviewslice_obj;
1904
1922
 
1905
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1923
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1906
1924
  * ctypedef npy_longdouble longdouble_t
1907
1925
  *
1908
1926
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1911,7 +1929,7 @@ struct __pyx_memoryviewslice_obj;
1911
1929
  */
1912
1930
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1913
1931
 
1914
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1932
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1915
1933
  *
1916
1934
  * ctypedef npy_cfloat cfloat_t
1917
1935
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1920,7 +1938,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1920
1938
  */
1921
1939
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1922
1940
 
1923
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1941
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1924
1942
  * ctypedef npy_cfloat cfloat_t
1925
1943
  * ctypedef npy_cdouble cdouble_t
1926
1944
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1929,7 +1947,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1929
1947
  */
1930
1948
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1931
1949
 
1932
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1950
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1933
1951
  * ctypedef npy_clongdouble clongdouble_t
1934
1952
  *
1935
1953
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2240,8 +2258,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2240
2258
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2241
2259
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2242
2260
  #else
2243
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2244
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2261
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2262
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2245
2263
  #endif
2246
2264
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2247
2265
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2257,8 +2275,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2257
2275
  #else
2258
2276
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2259
2277
  #endif
2260
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2261
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2278
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2279
+ to have the same reference counting */
2280
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2262
2281
  #else
2263
2282
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2264
2283
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2881,22 +2900,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2881
2900
  #endif
2882
2901
 
2883
2902
  /* TypeImport.proto */
2884
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2885
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2903
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2904
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2886
2905
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2887
2906
  #include <stdalign.h>
2888
2907
  #endif
2889
2908
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2890
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2909
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2891
2910
  #else
2892
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2911
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2893
2912
  #endif
2894
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2895
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2896
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2897
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2913
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2914
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2915
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2916
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2898
2917
  };
2899
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size);
2918
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size);
2900
2919
  #endif
2901
2920
 
2902
2921
  /* FetchSharedCythonModule.proto */
@@ -2989,7 +3008,7 @@ typedef struct {
2989
3008
  #endif
2990
3009
  void *defaults;
2991
3010
  int defaults_pyobjects;
2992
- size_t defaults_size; // used by FusedFunction for copying defaults
3011
+ size_t defaults_size;
2993
3012
  int flags;
2994
3013
  PyObject *defaults_tuple;
2995
3014
  PyObject *defaults_kwdict;
@@ -18606,7 +18625,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18606
18625
  return __pyx_r;
18607
18626
  }
18608
18627
 
18609
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18628
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18610
18629
  *
18611
18630
  * @property
18612
18631
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18617,7 +18636,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18617
18636
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18618
18637
  PyObject *__pyx_r;
18619
18638
 
18620
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
18639
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
18621
18640
  * """Returns a borrowed reference to the object owning the data/memory.
18622
18641
  * """
18623
18642
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18627,7 +18646,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18627
18646
  __pyx_r = PyArray_BASE(__pyx_v_self);
18628
18647
  goto __pyx_L0;
18629
18648
 
18630
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18649
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18631
18650
  *
18632
18651
  * @property
18633
18652
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18640,7 +18659,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18640
18659
  return __pyx_r;
18641
18660
  }
18642
18661
 
18643
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18662
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18644
18663
  *
18645
18664
  * @property
18646
18665
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18654,7 +18673,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18654
18673
  PyArray_Descr *__pyx_t_1;
18655
18674
  __Pyx_RefNannySetupContext("descr", 1);
18656
18675
 
18657
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
18676
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
18658
18677
  * """Returns an owned reference to the dtype of the array.
18659
18678
  * """
18660
18679
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -18667,7 +18686,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18667
18686
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
18668
18687
  goto __pyx_L0;
18669
18688
 
18670
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18689
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18671
18690
  *
18672
18691
  * @property
18673
18692
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18682,7 +18701,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18682
18701
  return __pyx_r;
18683
18702
  }
18684
18703
 
18685
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18704
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18686
18705
  *
18687
18706
  * @property
18688
18707
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18693,7 +18712,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18693
18712
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
18694
18713
  int __pyx_r;
18695
18714
 
18696
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
18715
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
18697
18716
  * """Returns the number of dimensions in the array.
18698
18717
  * """
18699
18718
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -18703,7 +18722,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18703
18722
  __pyx_r = PyArray_NDIM(__pyx_v_self);
18704
18723
  goto __pyx_L0;
18705
18724
 
18706
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18725
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
18707
18726
  *
18708
18727
  * @property
18709
18728
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -18716,7 +18735,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18716
18735
  return __pyx_r;
18717
18736
  }
18718
18737
 
18719
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18720
18739
  *
18721
18740
  * @property
18722
18741
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18727,7 +18746,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
18727
18746
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
18728
18747
  npy_intp *__pyx_r;
18729
18748
 
18730
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
18749
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
18731
18750
  * Can return NULL for 0-dimensional arrays.
18732
18751
  * """
18733
18752
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -18737,7 +18756,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18737
18756
  __pyx_r = PyArray_DIMS(__pyx_v_self);
18738
18757
  goto __pyx_L0;
18739
18758
 
18740
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18759
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
18741
18760
  *
18742
18761
  * @property
18743
18762
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -18750,7 +18769,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18750
18769
  return __pyx_r;
18751
18770
  }
18752
18771
 
18753
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18772
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18754
18773
  *
18755
18774
  * @property
18756
18775
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18761,7 +18780,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
18761
18780
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
18762
18781
  npy_intp *__pyx_r;
18763
18782
 
18764
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
18783
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
18765
18784
  * The number of elements matches the number of dimensions of the array (ndim).
18766
18785
  * """
18767
18786
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -18771,7 +18790,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18771
18790
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
18772
18791
  goto __pyx_L0;
18773
18792
 
18774
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18793
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
18775
18794
  *
18776
18795
  * @property
18777
18796
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -18784,7 +18803,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18784
18803
  return __pyx_r;
18785
18804
  }
18786
18805
 
18787
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18806
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18788
18807
  *
18789
18808
  * @property
18790
18809
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18795,7 +18814,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
18795
18814
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
18796
18815
  npy_intp __pyx_r;
18797
18816
 
18798
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
18817
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
18799
18818
  * """Returns the total size (in number of elements) of the array.
18800
18819
  * """
18801
18820
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -18805,7 +18824,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18805
18824
  __pyx_r = PyArray_SIZE(__pyx_v_self);
18806
18825
  goto __pyx_L0;
18807
18826
 
18808
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18827
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
18809
18828
  *
18810
18829
  * @property
18811
18830
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18818,7 +18837,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18818
18837
  return __pyx_r;
18819
18838
  }
18820
18839
 
18821
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18840
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18822
18841
  *
18823
18842
  * @property
18824
18843
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18829,7 +18848,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18829
18848
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18830
18849
  char *__pyx_r;
18831
18850
 
18832
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
18851
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
18833
18852
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18834
18853
  * """
18835
18854
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18839,7 +18858,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18839
18858
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18840
18859
  goto __pyx_L0;
18841
18860
 
18842
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18861
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
18843
18862
  *
18844
18863
  * @property
18845
18864
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18852,7 +18871,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18852
18871
  return __pyx_r;
18853
18872
  }
18854
18873
 
18855
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18874
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18856
18875
  * ctypedef npy_cdouble complex_t
18857
18876
  *
18858
18877
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18869,7 +18888,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18869
18888
  int __pyx_clineno = 0;
18870
18889
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18871
18890
 
18872
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
18891
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
18873
18892
  *
18874
18893
  * cdef inline object PyArray_MultiIterNew1(a):
18875
18894
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18883,7 +18902,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18883
18902
  __pyx_t_1 = 0;
18884
18903
  goto __pyx_L0;
18885
18904
 
18886
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18905
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
18887
18906
  * ctypedef npy_cdouble complex_t
18888
18907
  *
18889
18908
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18902,7 +18921,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18902
18921
  return __pyx_r;
18903
18922
  }
18904
18923
 
18905
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18924
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18906
18925
  * return PyArray_MultiIterNew(1, <void*>a)
18907
18926
  *
18908
18927
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18919,7 +18938,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18919
18938
  int __pyx_clineno = 0;
18920
18939
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18921
18940
 
18922
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
18941
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
18923
18942
  *
18924
18943
  * cdef inline object PyArray_MultiIterNew2(a, b):
18925
18944
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18933,7 +18952,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18933
18952
  __pyx_t_1 = 0;
18934
18953
  goto __pyx_L0;
18935
18954
 
18936
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18955
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
18937
18956
  * return PyArray_MultiIterNew(1, <void*>a)
18938
18957
  *
18939
18958
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18952,7 +18971,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18952
18971
  return __pyx_r;
18953
18972
  }
18954
18973
 
18955
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18974
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18956
18975
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18957
18976
  *
18958
18977
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18969,7 +18988,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18969
18988
  int __pyx_clineno = 0;
18970
18989
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18971
18990
 
18972
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
18991
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
18973
18992
  *
18974
18993
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18975
18994
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18983,7 +19002,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18983
19002
  __pyx_t_1 = 0;
18984
19003
  goto __pyx_L0;
18985
19004
 
18986
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
19005
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
18987
19006
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18988
19007
  *
18989
19008
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19002,7 +19021,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19002
19021
  return __pyx_r;
19003
19022
  }
19004
19023
 
19005
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19024
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19006
19025
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19007
19026
  *
19008
19027
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19019,7 +19038,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19019
19038
  int __pyx_clineno = 0;
19020
19039
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19021
19040
 
19022
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
19041
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
19023
19042
  *
19024
19043
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19025
19044
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19033,7 +19052,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19033
19052
  __pyx_t_1 = 0;
19034
19053
  goto __pyx_L0;
19035
19054
 
19036
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19055
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19037
19056
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19038
19057
  *
19039
19058
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19052,7 +19071,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19052
19071
  return __pyx_r;
19053
19072
  }
19054
19073
 
19055
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19074
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19056
19075
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19057
19076
  *
19058
19077
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19069,7 +19088,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19069
19088
  int __pyx_clineno = 0;
19070
19089
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19071
19090
 
19072
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
19091
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
19073
19092
  *
19074
19093
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19075
19094
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19083,7 +19102,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19083
19102
  __pyx_t_1 = 0;
19084
19103
  goto __pyx_L0;
19085
19104
 
19086
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19105
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19087
19106
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19088
19107
  *
19089
19108
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19102,7 +19121,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19102
19121
  return __pyx_r;
19103
19122
  }
19104
19123
 
19105
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19124
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19106
19125
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19107
19126
  *
19108
19127
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19116,7 +19135,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19116
19135
  int __pyx_t_1;
19117
19136
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19118
19137
 
19119
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19138
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19120
19139
  *
19121
19140
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19122
19141
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19126,7 +19145,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19126
19145
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19127
19146
  if (__pyx_t_1) {
19128
19147
 
19129
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
19148
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
19130
19149
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19131
19150
  * if PyDataType_HASSUBARRAY(d):
19132
19151
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19138,7 +19157,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19138
19157
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19139
19158
  goto __pyx_L0;
19140
19159
 
19141
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19160
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19142
19161
  *
19143
19162
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19144
19163
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19147,7 +19166,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19147
19166
  */
19148
19167
  }
19149
19168
 
19150
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
19169
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
19151
19170
  * return <tuple>d.subarray.shape
19152
19171
  * else:
19153
19172
  * return () # <<<<<<<<<<<<<<
@@ -19161,7 +19180,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19161
19180
  goto __pyx_L0;
19162
19181
  }
19163
19182
 
19164
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19183
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19165
19184
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19166
19185
  *
19167
19186
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19176,7 +19195,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19176
19195
  return __pyx_r;
19177
19196
  }
19178
19197
 
19179
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19198
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19180
19199
  * int _import_umath() except -1
19181
19200
  *
19182
19201
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19190,7 +19209,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19190
19209
  const char *__pyx_filename = NULL;
19191
19210
  int __pyx_clineno = 0;
19192
19211
 
19193
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
19212
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
19194
19213
  *
19195
19214
  * cdef inline void set_array_base(ndarray arr, object base):
19196
19215
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19199,7 +19218,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19199
19218
  */
19200
19219
  Py_INCREF(__pyx_v_base);
19201
19220
 
19202
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
19221
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
19203
19222
  * cdef inline void set_array_base(ndarray arr, object base):
19204
19223
  * Py_INCREF(base) # important to do this before stealing the reference below!
19205
19224
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19208,7 +19227,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19208
19227
  */
19209
19228
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 970, __pyx_L1_error)
19210
19229
 
19211
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19230
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19212
19231
  * int _import_umath() except -1
19213
19232
  *
19214
19233
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19223,7 +19242,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19223
19242
  __pyx_L0:;
19224
19243
  }
19225
19244
 
19226
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19245
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19227
19246
  * PyArray_SetBaseObject(arr, base)
19228
19247
  *
19229
19248
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19238,7 +19257,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19238
19257
  int __pyx_t_1;
19239
19258
  __Pyx_RefNannySetupContext("get_array_base", 1);
19240
19259
 
19241
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
19260
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
19242
19261
  *
19243
19262
  * cdef inline object get_array_base(ndarray arr):
19244
19263
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19247,7 +19266,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19247
19266
  */
19248
19267
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19249
19268
 
19250
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19269
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19251
19270
  * cdef inline object get_array_base(ndarray arr):
19252
19271
  * base = PyArray_BASE(arr)
19253
19272
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19257,7 +19276,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19257
19276
  __pyx_t_1 = (__pyx_v_base == NULL);
19258
19277
  if (__pyx_t_1) {
19259
19278
 
19260
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
19279
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
19261
19280
  * base = PyArray_BASE(arr)
19262
19281
  * if base is NULL:
19263
19282
  * return None # <<<<<<<<<<<<<<
@@ -19268,7 +19287,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19268
19287
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19269
19288
  goto __pyx_L0;
19270
19289
 
19271
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19290
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19272
19291
  * cdef inline object get_array_base(ndarray arr):
19273
19292
  * base = PyArray_BASE(arr)
19274
19293
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19277,7 +19296,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19277
19296
  */
19278
19297
  }
19279
19298
 
19280
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
19299
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
19281
19300
  * if base is NULL:
19282
19301
  * return None
19283
19302
  * return <object>base # <<<<<<<<<<<<<<
@@ -19289,7 +19308,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19289
19308
  __pyx_r = ((PyObject *)__pyx_v_base);
19290
19309
  goto __pyx_L0;
19291
19310
 
19292
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19311
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19293
19312
  * PyArray_SetBaseObject(arr, base)
19294
19313
  *
19295
19314
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19304,7 +19323,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19304
19323
  return __pyx_r;
19305
19324
  }
19306
19325
 
19307
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19326
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19308
19327
  * # Versions of the import_* functions which are more suitable for
19309
19328
  * # Cython code.
19310
19329
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19328,7 +19347,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19328
19347
  int __pyx_clineno = 0;
19329
19348
  __Pyx_RefNannySetupContext("import_array", 1);
19330
19349
 
19331
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19350
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19332
19351
  * # Cython code.
19333
19352
  * cdef inline int import_array() except -1:
19334
19353
  * try: # <<<<<<<<<<<<<<
@@ -19344,7 +19363,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19344
19363
  __Pyx_XGOTREF(__pyx_t_3);
19345
19364
  /*try:*/ {
19346
19365
 
19347
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
19366
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
19348
19367
  * cdef inline int import_array() except -1:
19349
19368
  * try:
19350
19369
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19353,7 +19372,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19353
19372
  */
19354
19373
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
19355
19374
 
19356
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19375
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19357
19376
  * # Cython code.
19358
19377
  * cdef inline int import_array() except -1:
19359
19378
  * try: # <<<<<<<<<<<<<<
@@ -19367,7 +19386,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19367
19386
  goto __pyx_L8_try_end;
19368
19387
  __pyx_L3_error:;
19369
19388
 
19370
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
19389
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
19371
19390
  * try:
19372
19391
  * __pyx_import_array()
19373
19392
  * except Exception: # <<<<<<<<<<<<<<
@@ -19382,7 +19401,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19382
19401
  __Pyx_XGOTREF(__pyx_t_6);
19383
19402
  __Pyx_XGOTREF(__pyx_t_7);
19384
19403
 
19385
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
19404
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
19386
19405
  * __pyx_import_array()
19387
19406
  * except Exception:
19388
19407
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19397,7 +19416,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19397
19416
  }
19398
19417
  goto __pyx_L5_except_error;
19399
19418
 
19400
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19419
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19401
19420
  * # Cython code.
19402
19421
  * cdef inline int import_array() except -1:
19403
19422
  * try: # <<<<<<<<<<<<<<
@@ -19413,7 +19432,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19413
19432
  __pyx_L8_try_end:;
19414
19433
  }
19415
19434
 
19416
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19435
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19417
19436
  * # Versions of the import_* functions which are more suitable for
19418
19437
  * # Cython code.
19419
19438
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19436,7 +19455,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19436
19455
  return __pyx_r;
19437
19456
  }
19438
19457
 
19439
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19458
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19440
19459
  * raise ImportError("numpy.core.multiarray failed to import")
19441
19460
  *
19442
19461
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19460,7 +19479,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19460
19479
  int __pyx_clineno = 0;
19461
19480
  __Pyx_RefNannySetupContext("import_umath", 1);
19462
19481
 
19463
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19482
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19464
19483
  *
19465
19484
  * cdef inline int import_umath() except -1:
19466
19485
  * try: # <<<<<<<<<<<<<<
@@ -19476,7 +19495,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19476
19495
  __Pyx_XGOTREF(__pyx_t_3);
19477
19496
  /*try:*/ {
19478
19497
 
19479
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
19498
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
19480
19499
  * cdef inline int import_umath() except -1:
19481
19500
  * try:
19482
19501
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19485,7 +19504,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19485
19504
  */
19486
19505
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
19487
19506
 
19488
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19507
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19489
19508
  *
19490
19509
  * cdef inline int import_umath() except -1:
19491
19510
  * try: # <<<<<<<<<<<<<<
@@ -19499,7 +19518,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19499
19518
  goto __pyx_L8_try_end;
19500
19519
  __pyx_L3_error:;
19501
19520
 
19502
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
19521
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
19503
19522
  * try:
19504
19523
  * _import_umath()
19505
19524
  * except Exception: # <<<<<<<<<<<<<<
@@ -19514,7 +19533,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19514
19533
  __Pyx_XGOTREF(__pyx_t_6);
19515
19534
  __Pyx_XGOTREF(__pyx_t_7);
19516
19535
 
19517
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
19536
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
19518
19537
  * _import_umath()
19519
19538
  * except Exception:
19520
19539
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19529,7 +19548,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19529
19548
  }
19530
19549
  goto __pyx_L5_except_error;
19531
19550
 
19532
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19551
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19533
19552
  *
19534
19553
  * cdef inline int import_umath() except -1:
19535
19554
  * try: # <<<<<<<<<<<<<<
@@ -19545,7 +19564,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19545
19564
  __pyx_L8_try_end:;
19546
19565
  }
19547
19566
 
19548
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19567
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19549
19568
  * raise ImportError("numpy.core.multiarray failed to import")
19550
19569
  *
19551
19570
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19568,7 +19587,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19568
19587
  return __pyx_r;
19569
19588
  }
19570
19589
 
19571
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19590
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19572
19591
  * raise ImportError("numpy.core.umath failed to import")
19573
19592
  *
19574
19593
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19592,7 +19611,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19592
19611
  int __pyx_clineno = 0;
19593
19612
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19594
19613
 
19595
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19614
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19596
19615
  *
19597
19616
  * cdef inline int import_ufunc() except -1:
19598
19617
  * try: # <<<<<<<<<<<<<<
@@ -19608,7 +19627,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19608
19627
  __Pyx_XGOTREF(__pyx_t_3);
19609
19628
  /*try:*/ {
19610
19629
 
19611
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
19630
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
19612
19631
  * cdef inline int import_ufunc() except -1:
19613
19632
  * try:
19614
19633
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19617,7 +19636,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19617
19636
  */
19618
19637
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
19619
19638
 
19620
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19639
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19621
19640
  *
19622
19641
  * cdef inline int import_ufunc() except -1:
19623
19642
  * try: # <<<<<<<<<<<<<<
@@ -19631,7 +19650,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19631
19650
  goto __pyx_L8_try_end;
19632
19651
  __pyx_L3_error:;
19633
19652
 
19634
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
19653
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
19635
19654
  * try:
19636
19655
  * _import_umath()
19637
19656
  * except Exception: # <<<<<<<<<<<<<<
@@ -19646,7 +19665,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19646
19665
  __Pyx_XGOTREF(__pyx_t_6);
19647
19666
  __Pyx_XGOTREF(__pyx_t_7);
19648
19667
 
19649
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
19668
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
19650
19669
  * _import_umath()
19651
19670
  * except Exception:
19652
19671
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19661,7 +19680,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19661
19680
  }
19662
19681
  goto __pyx_L5_except_error;
19663
19682
 
19664
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19683
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19665
19684
  *
19666
19685
  * cdef inline int import_ufunc() except -1:
19667
19686
  * try: # <<<<<<<<<<<<<<
@@ -19677,7 +19696,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19677
19696
  __pyx_L8_try_end:;
19678
19697
  }
19679
19698
 
19680
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19699
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19681
19700
  * raise ImportError("numpy.core.umath failed to import")
19682
19701
  *
19683
19702
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19700,7 +19719,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19700
19719
  return __pyx_r;
19701
19720
  }
19702
19721
 
19703
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19722
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19704
19723
  *
19705
19724
  *
19706
19725
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19711,7 +19730,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19711
19730
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
19712
19731
  int __pyx_r;
19713
19732
 
19714
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
19733
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
19715
19734
  * bool
19716
19735
  * """
19717
19736
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -19721,7 +19740,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19721
19740
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
19722
19741
  goto __pyx_L0;
19723
19742
 
19724
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19743
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
19725
19744
  *
19726
19745
  *
19727
19746
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -19734,7 +19753,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19734
19753
  return __pyx_r;
19735
19754
  }
19736
19755
 
19737
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19756
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19738
19757
  *
19739
19758
  *
19740
19759
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19745,7 +19764,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
19745
19764
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
19746
19765
  int __pyx_r;
19747
19766
 
19748
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
19767
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
19749
19768
  * bool
19750
19769
  * """
19751
19770
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -19755,7 +19774,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19755
19774
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
19756
19775
  goto __pyx_L0;
19757
19776
 
19758
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19777
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
19759
19778
  *
19760
19779
  *
19761
19780
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -19768,7 +19787,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19768
19787
  return __pyx_r;
19769
19788
  }
19770
19789
 
19771
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19790
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19772
19791
  *
19773
19792
  *
19774
19793
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19779,7 +19798,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
19779
19798
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
19780
19799
  npy_datetime __pyx_r;
19781
19800
 
19782
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
19801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
19783
19802
  * also needed. That can be found using `get_datetime64_unit`.
19784
19803
  * """
19785
19804
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19789,7 +19808,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19789
19808
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
19790
19809
  goto __pyx_L0;
19791
19810
 
19792
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19811
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
19793
19812
  *
19794
19813
  *
19795
19814
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19802,7 +19821,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19802
19821
  return __pyx_r;
19803
19822
  }
19804
19823
 
19805
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19824
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19806
19825
  *
19807
19826
  *
19808
19827
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19813,7 +19832,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19813
19832
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19814
19833
  npy_timedelta __pyx_r;
19815
19834
 
19816
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
19835
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
19817
19836
  * returns the int64 value underlying scalar numpy timedelta64 object
19818
19837
  * """
19819
19838
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19823,7 +19842,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19823
19842
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19824
19843
  goto __pyx_L0;
19825
19844
 
19826
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19845
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
19827
19846
  *
19828
19847
  *
19829
19848
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19836,7 +19855,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19836
19855
  return __pyx_r;
19837
19856
  }
19838
19857
 
19839
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19858
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19840
19859
  *
19841
19860
  *
19842
19861
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19847,7 +19866,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19847
19866
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19848
19867
  NPY_DATETIMEUNIT __pyx_r;
19849
19868
 
19850
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
19869
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
19851
19870
  * returns the unit part of the dtype for a numpy datetime64 object.
19852
19871
  * """
19853
19872
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19855,7 +19874,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19855
19874
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19856
19875
  goto __pyx_L0;
19857
19876
 
19858
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19877
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
19859
19878
  *
19860
19879
  *
19861
19880
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21711,10 +21730,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
21711
21730
  Py_ssize_t __pyx_v_itemsize;
21712
21731
  int __pyx_v_dtype_signed;
21713
21732
  Py_UCS4 __pyx_v_kind;
21714
- int __pyx_v____pyx_uint8_is_signed;
21715
- int __pyx_v____pyx_uint16_is_signed;
21716
- int __pyx_v____pyx_uint32_is_signed;
21717
- int __pyx_v____pyx_uint64_is_signed;
21733
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
21734
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
21735
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
21736
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
21718
21737
  PyObject *__pyx_v_arg = NULL;
21719
21738
  PyObject *__pyx_v_dtype = NULL;
21720
21739
  PyObject *__pyx_v_arg_base = NULL;
@@ -21786,10 +21805,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
21786
21805
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
21787
21806
  __pyx_t_1 = 0;
21788
21807
  __pyx_v_itemsize = -1L;
21789
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint8)-1L) > 0));
21790
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint16)-1L) > 0));
21791
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint32)-1L) > 0));
21792
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint64)-1L) > 0));
21808
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint8)-1L) > 0));
21809
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint16)-1L) > 0));
21810
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint32)-1L) > 0));
21811
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_13localungapped_uint64)-1L) > 0));
21793
21812
  if (unlikely(__pyx_v_args == Py_None)) {
21794
21813
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
21795
21814
  __PYX_ERR(0, 214, __pyx_L1_error)
@@ -21931,7 +21950,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
21931
21950
  __pyx_t_2 = __pyx_t_4;
21932
21951
  goto __pyx_L16_bool_binop_done;
21933
21952
  }
21934
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
21953
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
21935
21954
  __pyx_t_2 = __pyx_t_4;
21936
21955
  __pyx_L16_bool_binop_done:;
21937
21956
  if (__pyx_t_2) {
@@ -21954,7 +21973,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
21954
21973
  __pyx_t_2 = __pyx_t_4;
21955
21974
  goto __pyx_L20_bool_binop_done;
21956
21975
  }
21957
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
21976
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
21958
21977
  __pyx_t_2 = __pyx_t_4;
21959
21978
  __pyx_L20_bool_binop_done:;
21960
21979
  if (__pyx_t_2) {
@@ -21977,7 +21996,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
21977
21996
  __pyx_t_2 = __pyx_t_4;
21978
21997
  goto __pyx_L24_bool_binop_done;
21979
21998
  }
21980
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
21999
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
21981
22000
  __pyx_t_2 = __pyx_t_4;
21982
22001
  __pyx_L24_bool_binop_done:;
21983
22002
  if (__pyx_t_2) {
@@ -22000,7 +22019,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
22000
22019
  __pyx_t_2 = __pyx_t_4;
22001
22020
  goto __pyx_L28_bool_binop_done;
22002
22021
  }
22003
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
22022
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
22004
22023
  __pyx_t_2 = __pyx_t_4;
22005
22024
  __pyx_L28_bool_binop_done:;
22006
22025
  if (__pyx_t_2) {
@@ -22361,7 +22380,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
22361
22380
  __pyx_t_2 = __pyx_t_4;
22362
22381
  goto __pyx_L75_bool_binop_done;
22363
22382
  }
22364
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
22383
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
22365
22384
  __pyx_t_2 = __pyx_t_4;
22366
22385
  __pyx_L75_bool_binop_done:;
22367
22386
  if (__pyx_t_2) {
@@ -22384,7 +22403,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
22384
22403
  __pyx_t_2 = __pyx_t_4;
22385
22404
  goto __pyx_L79_bool_binop_done;
22386
22405
  }
22387
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
22406
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
22388
22407
  __pyx_t_2 = __pyx_t_4;
22389
22408
  __pyx_L79_bool_binop_done:;
22390
22409
  if (__pyx_t_2) {
@@ -22407,7 +22426,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
22407
22426
  __pyx_t_2 = __pyx_t_4;
22408
22427
  goto __pyx_L83_bool_binop_done;
22409
22428
  }
22410
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
22429
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
22411
22430
  __pyx_t_2 = __pyx_t_4;
22412
22431
  __pyx_L83_bool_binop_done:;
22413
22432
  if (__pyx_t_2) {
@@ -22430,7 +22449,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_13localungapped_2_seed_exten
22430
22449
  __pyx_t_2 = __pyx_t_4;
22431
22450
  goto __pyx_L87_bool_binop_done;
22432
22451
  }
22433
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
22452
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
22434
22453
  __pyx_t_2 = __pyx_t_4;
22435
22454
  __pyx_L87_bool_binop_done:;
22436
22455
  if (__pyx_t_2) {
@@ -29714,7 +29733,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
29714
29733
  __Pyx_GOTREF(__pyx_tuple__8);
29715
29734
  __Pyx_GIVEREF(__pyx_tuple__8);
29716
29735
 
29717
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
29736
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
29718
29737
  * __pyx_import_array()
29719
29738
  * except Exception:
29720
29739
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -29725,7 +29744,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
29725
29744
  __Pyx_GOTREF(__pyx_tuple__9);
29726
29745
  __Pyx_GIVEREF(__pyx_tuple__9);
29727
29746
 
29728
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
29747
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
29729
29748
  * _import_umath()
29730
29749
  * except Exception:
29731
29750
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -30170,33 +30189,33 @@ static int __Pyx_modinit_type_import_code(void) {
30170
30189
  /*--- Type import code ---*/
30171
30190
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
30172
30191
  __Pyx_GOTREF(__pyx_t_1);
30173
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
30192
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
30174
30193
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
30175
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
30194
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
30176
30195
  #elif CYTHON_COMPILING_IN_LIMITED_API
30177
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
30196
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
30178
30197
  #else
30179
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
30198
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
30180
30199
  #endif
30181
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
30200
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
30182
30201
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
30183
30202
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
30184
30203
  __Pyx_GOTREF(__pyx_t_1);
30185
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
30186
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
30187
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
30188
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
30189
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
30190
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
30191
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
30192
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
30193
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
30194
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
30195
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
30196
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
30197
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
30198
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
30199
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
30204
+ __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
30205
+ __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
30206
+ __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
30207
+ __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
30208
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
30209
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
30210
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
30211
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
30212
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
30213
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
30214
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
30215
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
30216
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
30217
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
30218
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
30200
30219
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
30201
30220
  __Pyx_RefNannyFinishContext();
30202
30221
  return 0;
@@ -31673,11 +31692,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
31673
31692
  {
31674
31693
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
31675
31694
  if (unlikely(eq != 0)) {
31676
- if (unlikely(eq < 0)) return NULL; // error
31695
+ if (unlikely(eq < 0)) return NULL;
31677
31696
  return kwvalues[i];
31678
31697
  }
31679
31698
  }
31680
- return NULL; // not found (no exception set)
31699
+ return NULL;
31681
31700
  }
31682
31701
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
31683
31702
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -31790,7 +31809,7 @@ static int __Pyx_ParseOptionalKeywords(
31790
31809
  if (*name) {
31791
31810
  values[name-argnames] = value;
31792
31811
  #if CYTHON_AVOID_BORROWED_REFS
31793
- Py_INCREF(value); // transfer ownership of value to values
31812
+ Py_INCREF(value);
31794
31813
  Py_DECREF(key);
31795
31814
  #endif
31796
31815
  key = NULL;
@@ -31809,7 +31828,7 @@ static int __Pyx_ParseOptionalKeywords(
31809
31828
  && _PyString_Eq(**name, key)) {
31810
31829
  values[name-argnames] = value;
31811
31830
  #if CYTHON_AVOID_BORROWED_REFS
31812
- value = NULL; // ownership transferred to values
31831
+ value = NULL;
31813
31832
  #endif
31814
31833
  break;
31815
31834
  }
@@ -31841,7 +31860,7 @@ static int __Pyx_ParseOptionalKeywords(
31841
31860
  if (cmp == 0) {
31842
31861
  values[name-argnames] = value;
31843
31862
  #if CYTHON_AVOID_BORROWED_REFS
31844
- value = NULL; // ownership transferred to values
31863
+ value = NULL;
31845
31864
  #endif
31846
31865
  break;
31847
31866
  }
@@ -33740,9 +33759,10 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_Unicode(PyObject *obj) {
33740
33759
 
33741
33760
  /* IterFinish */
33742
33761
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
33762
+ PyObject* exc_type;
33743
33763
  __Pyx_PyThreadState_declare
33744
33764
  __Pyx_PyThreadState_assign
33745
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
33765
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
33746
33766
  if (unlikely(exc_type)) {
33747
33767
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
33748
33768
  return -1;
@@ -34299,9 +34319,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
34299
34319
 
34300
34320
  /* UnpackUnboundCMethod */
34301
34321
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
34322
+ PyObject *result;
34302
34323
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
34303
34324
  if (unlikely(!selfless_args)) return NULL;
34304
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
34325
+ result = PyObject_Call(method, selfless_args, kwargs);
34305
34326
  Py_DECREF(selfless_args);
34306
34327
  return result;
34307
34328
  }
@@ -35018,10 +35039,10 @@ __PYX_GOOD:
35018
35039
  #endif
35019
35040
 
35020
35041
  /* TypeImport */
35021
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
35022
- #define __PYX_HAVE_RT_ImportType_3_0_7
35023
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
35024
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
35042
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
35043
+ #define __PYX_HAVE_RT_ImportType_3_0_10
35044
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
35045
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
35025
35046
  {
35026
35047
  PyObject *result = 0;
35027
35048
  char warning[200];
@@ -35075,7 +35096,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
35075
35096
  module_name, class_name, size, basicsize+itemsize);
35076
35097
  goto bad;
35077
35098
  }
35078
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
35099
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
35079
35100
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
35080
35101
  PyErr_Format(PyExc_ValueError,
35081
35102
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -35083,7 +35104,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
35083
35104
  module_name, class_name, size, basicsize, basicsize+itemsize);
35084
35105
  goto bad;
35085
35106
  }
35086
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
35107
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
35087
35108
  PyOS_snprintf(warning, sizeof(warning),
35088
35109
  "%s.%s size changed, may indicate binary incompatibility. "
35089
35110
  "Expected %zd from C header, got %zd from PyObject",
@@ -36083,7 +36104,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
36083
36104
  default:
36084
36105
  return NULL;
36085
36106
  }
36086
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
36107
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
36087
36108
  }
36088
36109
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
36089
36110
  {
@@ -36900,7 +36921,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
36900
36921
  #else
36901
36922
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
36902
36923
  #endif
36903
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
36924
+ Py_XDECREF(py_funcname);
36904
36925
  return py_code;
36905
36926
  bad:
36906
36927
  Py_XDECREF(py_funcname);