biotite 0.39.0__cp312-cp312-macosx_11_0_arm64.whl → 0.41.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 (121) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/pubchem/download.py +23 -23
  4. biotite/database/pubchem/query.py +7 -7
  5. biotite/database/rcsb/download.py +19 -14
  6. biotite/file.py +17 -9
  7. biotite/sequence/align/banded.c +256 -235
  8. biotite/sequence/align/banded.cpython-312-darwin.so +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +241 -220
  11. biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
  12. biotite/sequence/align/kmersimilarity.c +213 -194
  13. biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
  14. biotite/sequence/align/kmertable.cpp +231 -203
  15. biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
  16. biotite/sequence/align/localgapped.c +256 -235
  17. biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
  18. biotite/sequence/align/localungapped.c +233 -212
  19. biotite/sequence/align/localungapped.cpython-312-darwin.so +0 -0
  20. biotite/sequence/align/multiple.c +253 -232
  21. biotite/sequence/align/multiple.cpython-312-darwin.so +0 -0
  22. biotite/sequence/align/pairwise.c +272 -251
  23. biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
  24. biotite/sequence/align/permutation.c +213 -194
  25. biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
  26. biotite/sequence/align/selector.c +215 -195
  27. biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
  28. biotite/sequence/align/tracetable.c +213 -193
  29. biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +233 -212
  32. biotite/sequence/codec.cpython-312-darwin.so +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +213 -194
  35. biotite/sequence/phylo/nj.cpython-312-darwin.so +0 -0
  36. biotite/sequence/phylo/tree.c +225 -200
  37. biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
  38. biotite/sequence/phylo/upgma.c +213 -194
  39. biotite/sequence/phylo/upgma.cpython-312-darwin.so +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1435 -1277
  43. biotite/structure/bonds.cpython-312-darwin.so +0 -0
  44. biotite/structure/celllist.c +215 -195
  45. biotite/structure/celllist.cpython-312-darwin.so +0 -0
  46. biotite/structure/charges.c +1050 -1099
  47. biotite/structure/charges.cpython-312-darwin.so +0 -0
  48. biotite/structure/dotbracket.py +2 -0
  49. biotite/structure/filter.py +30 -37
  50. biotite/structure/info/__init__.py +5 -8
  51. biotite/structure/info/atoms.py +31 -68
  52. biotite/structure/info/bonds.py +47 -101
  53. biotite/structure/info/ccd/README.rst +8 -0
  54. biotite/structure/info/ccd/amino_acids.txt +1663 -0
  55. biotite/structure/info/ccd/carbohydrates.txt +1135 -0
  56. biotite/structure/info/ccd/components.bcif +0 -0
  57. biotite/structure/info/ccd/nucleotides.txt +798 -0
  58. biotite/structure/info/ccd.py +95 -0
  59. biotite/structure/info/groups.py +90 -0
  60. biotite/structure/info/masses.py +21 -20
  61. biotite/structure/info/misc.py +78 -25
  62. biotite/structure/info/standardize.py +17 -12
  63. biotite/structure/integrity.py +19 -70
  64. biotite/structure/io/__init__.py +2 -4
  65. biotite/structure/io/ctab.py +12 -106
  66. biotite/structure/io/general.py +167 -181
  67. biotite/structure/io/gro/file.py +16 -16
  68. biotite/structure/io/mmtf/__init__.py +3 -0
  69. biotite/structure/io/mmtf/convertarray.c +217 -196
  70. biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +215 -195
  72. biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so +0 -0
  73. biotite/structure/io/mmtf/decode.c +223 -202
  74. biotite/structure/io/mmtf/decode.cpython-312-darwin.so +0 -0
  75. biotite/structure/io/mmtf/encode.c +213 -194
  76. biotite/structure/io/mmtf/encode.cpython-312-darwin.so +0 -0
  77. biotite/structure/io/mmtf/file.py +34 -26
  78. biotite/structure/io/mol/__init__.py +4 -2
  79. biotite/structure/io/mol/convert.py +71 -7
  80. biotite/structure/io/mol/ctab.py +414 -0
  81. biotite/structure/io/mol/header.py +116 -0
  82. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  83. biotite/structure/io/mol/sdf.py +909 -0
  84. biotite/structure/io/npz/__init__.py +3 -0
  85. biotite/structure/io/npz/file.py +21 -18
  86. biotite/structure/io/pdb/__init__.py +3 -3
  87. biotite/structure/io/pdb/file.py +89 -34
  88. biotite/structure/io/pdb/hybrid36.c +63 -43
  89. biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so +0 -0
  90. biotite/structure/io/pdbqt/file.py +32 -32
  91. biotite/structure/io/pdbx/__init__.py +12 -6
  92. biotite/structure/io/pdbx/bcif.py +648 -0
  93. biotite/structure/io/pdbx/cif.py +1032 -0
  94. biotite/structure/io/pdbx/component.py +246 -0
  95. biotite/structure/io/pdbx/convert.py +858 -386
  96. biotite/structure/io/pdbx/encoding.c +112803 -0
  97. biotite/structure/io/pdbx/encoding.cpython-312-darwin.so +0 -0
  98. biotite/structure/io/pdbx/legacy.py +267 -0
  99. biotite/structure/molecules.py +151 -151
  100. biotite/structure/repair.py +253 -0
  101. biotite/structure/sasa.c +213 -194
  102. biotite/structure/sasa.cpython-312-darwin.so +0 -0
  103. biotite/structure/sequence.py +112 -0
  104. biotite/structure/superimpose.py +618 -116
  105. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
  106. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
  107. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
  108. biotite/structure/info/amino_acids.json +0 -1556
  109. biotite/structure/info/amino_acids.py +0 -42
  110. biotite/structure/info/carbohydrates.json +0 -1122
  111. biotite/structure/info/carbohydrates.py +0 -39
  112. biotite/structure/info/intra_bonds.msgpack +0 -0
  113. biotite/structure/info/link_types.msgpack +0 -1
  114. biotite/structure/info/nucleotides.json +0 -772
  115. biotite/structure/info/nucleotides.py +0 -39
  116. biotite/structure/info/residue_masses.msgpack +0 -0
  117. biotite/structure/info/residue_names.msgpack +0 -3
  118. biotite/structure/info/residues.msgpack +0 -0
  119. biotite/structure/io/pdbx/file.py +0 -652
  120. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  121. {biotite-0.39.0.dist-info → biotite-0.41.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
 
@@ -1286,24 +1321,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1286
1321
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1287
1322
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1288
1323
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1289
- #if CYTHON_COMPILING_IN_LIMITED_API
1290
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1291
- {
1292
- const wchar_t *u_end = u;
1293
- while (*u_end++) ;
1294
- return (size_t)(u_end - u - 1);
1295
- }
1296
- #else
1297
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1298
- {
1299
- const Py_UNICODE *u_end = u;
1300
- while (*u_end++) ;
1301
- return (size_t)(u_end - u - 1);
1302
- }
1303
- #endif
1304
1324
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1305
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1306
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1307
1325
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1308
1326
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1309
1327
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1353,7 +1371,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1353
1371
  #endif
1354
1372
  typedef Py_ssize_t __Pyx_compact_pylong;
1355
1373
  typedef size_t __Pyx_compact_upylong;
1356
- #else // Py < 3.12
1374
+ #else
1357
1375
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1358
1376
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1359
1377
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1507,7 +1525,7 @@ static const char *__pyx_f[] = {
1507
1525
 
1508
1526
  /* #### Code section: numeric_typedefs ### */
1509
1527
 
1510
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1528
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1511
1529
  * # in Cython to enable them only on the right systems.
1512
1530
  *
1513
1531
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1516,7 +1534,7 @@ static const char *__pyx_f[] = {
1516
1534
  */
1517
1535
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1518
1536
 
1519
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1537
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1520
1538
  *
1521
1539
  * ctypedef npy_int8 int8_t
1522
1540
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1525,7 +1543,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1525
1543
  */
1526
1544
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1527
1545
 
1528
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1546
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1529
1547
  * ctypedef npy_int8 int8_t
1530
1548
  * ctypedef npy_int16 int16_t
1531
1549
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1534,7 +1552,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1534
1552
  */
1535
1553
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1536
1554
 
1537
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1555
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1538
1556
  * ctypedef npy_int16 int16_t
1539
1557
  * ctypedef npy_int32 int32_t
1540
1558
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1543,7 +1561,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1543
1561
  */
1544
1562
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1545
1563
 
1546
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1564
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1547
1565
  * #ctypedef npy_int128 int128_t
1548
1566
  *
1549
1567
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1552,7 +1570,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1552
1570
  */
1553
1571
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1554
1572
 
1555
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1573
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1556
1574
  *
1557
1575
  * ctypedef npy_uint8 uint8_t
1558
1576
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1561,7 +1579,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1561
1579
  */
1562
1580
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1563
1581
 
1564
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1582
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1565
1583
  * ctypedef npy_uint8 uint8_t
1566
1584
  * ctypedef npy_uint16 uint16_t
1567
1585
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1570,7 +1588,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1570
1588
  */
1571
1589
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1572
1590
 
1573
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1591
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1574
1592
  * ctypedef npy_uint16 uint16_t
1575
1593
  * ctypedef npy_uint32 uint32_t
1576
1594
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1579,7 +1597,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1579
1597
  */
1580
1598
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1581
1599
 
1582
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1600
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1583
1601
  * #ctypedef npy_uint128 uint128_t
1584
1602
  *
1585
1603
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1588,7 +1606,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1588
1606
  */
1589
1607
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1590
1608
 
1591
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1609
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1592
1610
  *
1593
1611
  * ctypedef npy_float32 float32_t
1594
1612
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1597,7 +1615,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1597
1615
  */
1598
1616
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1599
1617
 
1600
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1618
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1601
1619
  * # The int types are mapped a bit surprising --
1602
1620
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1603
1621
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1606,7 +1624,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1606
1624
  */
1607
1625
  typedef npy_long __pyx_t_5numpy_int_t;
1608
1626
 
1609
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1627
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1610
1628
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1611
1629
  * ctypedef npy_long int_t
1612
1630
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1615,7 +1633,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1615
1633
  */
1616
1634
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1617
1635
 
1618
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1636
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1619
1637
  * ctypedef npy_longlong longlong_t
1620
1638
  *
1621
1639
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1624,7 +1642,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1624
1642
  */
1625
1643
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1626
1644
 
1627
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1645
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1628
1646
  *
1629
1647
  * ctypedef npy_ulong uint_t
1630
1648
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1633,7 +1651,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1633
1651
  */
1634
1652
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1635
1653
 
1636
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1654
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1637
1655
  * ctypedef npy_ulonglong ulonglong_t
1638
1656
  *
1639
1657
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1642,7 +1660,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1642
1660
  */
1643
1661
  typedef npy_intp __pyx_t_5numpy_intp_t;
1644
1662
 
1645
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1663
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1646
1664
  *
1647
1665
  * ctypedef npy_intp intp_t
1648
1666
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1651,7 +1669,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1651
1669
  */
1652
1670
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1653
1671
 
1654
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1672
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1655
1673
  * ctypedef npy_uintp uintp_t
1656
1674
  *
1657
1675
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1660,7 +1678,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1660
1678
  */
1661
1679
  typedef npy_double __pyx_t_5numpy_float_t;
1662
1680
 
1663
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1681
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1664
1682
  *
1665
1683
  * ctypedef npy_double float_t
1666
1684
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1669,7 +1687,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1669
1687
  */
1670
1688
  typedef npy_double __pyx_t_5numpy_double_t;
1671
1689
 
1672
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1690
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1673
1691
  * ctypedef npy_double float_t
1674
1692
  * ctypedef npy_double double_t
1675
1693
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1709,7 +1727,7 @@ struct __pyx_obj_7biotite_8sequence_5phylo_4tree_TreeNode;
1709
1727
  struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph;
1710
1728
  struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr;
1711
1729
 
1712
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1730
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1713
1731
  * ctypedef npy_longdouble longdouble_t
1714
1732
  *
1715
1733
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1718,7 +1736,7 @@ struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr;
1718
1736
  */
1719
1737
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1720
1738
 
1721
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1739
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1722
1740
  *
1723
1741
  * ctypedef npy_cfloat cfloat_t
1724
1742
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1727,7 +1745,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1727
1745
  */
1728
1746
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1729
1747
 
1730
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1748
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1731
1749
  * ctypedef npy_cfloat cfloat_t
1732
1750
  * ctypedef npy_cdouble cdouble_t
1733
1751
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1736,7 +1754,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1736
1754
  */
1737
1755
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1738
1756
 
1739
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1757
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1740
1758
  * ctypedef npy_clongdouble clongdouble_t
1741
1759
  *
1742
1760
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -1998,8 +2016,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
1998
2016
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
1999
2017
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2000
2018
  #else
2001
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2002
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2019
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2020
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2003
2021
  #endif
2004
2022
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2005
2023
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2015,8 +2033,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2015
2033
  #else
2016
2034
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2017
2035
  #endif
2018
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2019
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2036
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2037
+ to have the same reference counting */
2038
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2020
2039
  #else
2021
2040
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2022
2041
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2643,22 +2662,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2643
2662
  #endif
2644
2663
 
2645
2664
  /* TypeImport.proto */
2646
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2647
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2665
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2666
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2648
2667
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2649
2668
  #include <stdalign.h>
2650
2669
  #endif
2651
2670
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2652
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2671
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2653
2672
  #else
2654
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2673
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2655
2674
  #endif
2656
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2657
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2658
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2659
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2675
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2676
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2677
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2678
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2660
2679
  };
2661
- 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);
2680
+ 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);
2662
2681
  #endif
2663
2682
 
2664
2683
  /* Import.proto */
@@ -2769,7 +2788,7 @@ typedef struct {
2769
2788
  #endif
2770
2789
  void *defaults;
2771
2790
  int defaults_pyobjects;
2772
- size_t defaults_size; // used by FusedFunction for copying defaults
2791
+ size_t defaults_size;
2773
2792
  int flags;
2774
2793
  PyObject *defaults_tuple;
2775
2794
  PyObject *defaults_kwdict;
@@ -4795,7 +4814,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
4795
4814
  #define __pyx_codeobj__64 __pyx_mstate_global->__pyx_codeobj__64
4796
4815
  /* #### Code section: module_code ### */
4797
4816
 
4798
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
4817
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
4799
4818
  *
4800
4819
  * @property
4801
4820
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -4806,7 +4825,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
4806
4825
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
4807
4826
  PyObject *__pyx_r;
4808
4827
 
4809
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
4828
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
4810
4829
  * """Returns a borrowed reference to the object owning the data/memory.
4811
4830
  * """
4812
4831
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -4816,7 +4835,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
4816
4835
  __pyx_r = PyArray_BASE(__pyx_v_self);
4817
4836
  goto __pyx_L0;
4818
4837
 
4819
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
4838
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
4820
4839
  *
4821
4840
  * @property
4822
4841
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -4829,7 +4848,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
4829
4848
  return __pyx_r;
4830
4849
  }
4831
4850
 
4832
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
4851
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
4833
4852
  *
4834
4853
  * @property
4835
4854
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -4843,7 +4862,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4843
4862
  PyArray_Descr *__pyx_t_1;
4844
4863
  __Pyx_RefNannySetupContext("descr", 1);
4845
4864
 
4846
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
4865
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
4847
4866
  * """Returns an owned reference to the dtype of the array.
4848
4867
  * """
4849
4868
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -4856,7 +4875,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4856
4875
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
4857
4876
  goto __pyx_L0;
4858
4877
 
4859
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
4878
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
4860
4879
  *
4861
4880
  * @property
4862
4881
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -4871,7 +4890,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4871
4890
  return __pyx_r;
4872
4891
  }
4873
4892
 
4874
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
4893
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
4875
4894
  *
4876
4895
  * @property
4877
4896
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -4882,7 +4901,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
4882
4901
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
4883
4902
  int __pyx_r;
4884
4903
 
4885
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
4904
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
4886
4905
  * """Returns the number of dimensions in the array.
4887
4906
  * """
4888
4907
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -4892,7 +4911,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4892
4911
  __pyx_r = PyArray_NDIM(__pyx_v_self);
4893
4912
  goto __pyx_L0;
4894
4913
 
4895
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
4914
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
4896
4915
  *
4897
4916
  * @property
4898
4917
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -4905,7 +4924,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4905
4924
  return __pyx_r;
4906
4925
  }
4907
4926
 
4908
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
4927
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
4909
4928
  *
4910
4929
  * @property
4911
4930
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4916,7 +4935,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
4916
4935
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
4917
4936
  npy_intp *__pyx_r;
4918
4937
 
4919
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
4938
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
4920
4939
  * Can return NULL for 0-dimensional arrays.
4921
4940
  * """
4922
4941
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -4926,7 +4945,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4926
4945
  __pyx_r = PyArray_DIMS(__pyx_v_self);
4927
4946
  goto __pyx_L0;
4928
4947
 
4929
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
4948
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
4930
4949
  *
4931
4950
  * @property
4932
4951
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -4939,7 +4958,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4939
4958
  return __pyx_r;
4940
4959
  }
4941
4960
 
4942
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
4961
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
4943
4962
  *
4944
4963
  * @property
4945
4964
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4950,7 +4969,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
4950
4969
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
4951
4970
  npy_intp *__pyx_r;
4952
4971
 
4953
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
4972
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
4954
4973
  * The number of elements matches the number of dimensions of the array (ndim).
4955
4974
  * """
4956
4975
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -4960,7 +4979,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4960
4979
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
4961
4980
  goto __pyx_L0;
4962
4981
 
4963
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
4982
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
4964
4983
  *
4965
4984
  * @property
4966
4985
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -4973,7 +4992,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4973
4992
  return __pyx_r;
4974
4993
  }
4975
4994
 
4976
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
4995
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
4977
4996
  *
4978
4997
  * @property
4979
4998
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -4984,7 +5003,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
4984
5003
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
4985
5004
  npy_intp __pyx_r;
4986
5005
 
4987
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
5006
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
4988
5007
  * """Returns the total size (in number of elements) of the array.
4989
5008
  * """
4990
5009
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -4994,7 +5013,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
4994
5013
  __pyx_r = PyArray_SIZE(__pyx_v_self);
4995
5014
  goto __pyx_L0;
4996
5015
 
4997
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
5016
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
4998
5017
  *
4999
5018
  * @property
5000
5019
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -5007,7 +5026,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
5007
5026
  return __pyx_r;
5008
5027
  }
5009
5028
 
5010
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
5029
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
5011
5030
  *
5012
5031
  * @property
5013
5032
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -5018,7 +5037,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
5018
5037
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
5019
5038
  char *__pyx_r;
5020
5039
 
5021
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
5040
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
5022
5041
  * of `PyArray_DATA()` instead, which returns a 'void*'.
5023
5042
  * """
5024
5043
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -5028,7 +5047,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
5028
5047
  __pyx_r = PyArray_BYTES(__pyx_v_self);
5029
5048
  goto __pyx_L0;
5030
5049
 
5031
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
5050
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
5032
5051
  *
5033
5052
  * @property
5034
5053
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -5041,7 +5060,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
5041
5060
  return __pyx_r;
5042
5061
  }
5043
5062
 
5044
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
5063
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
5045
5064
  * ctypedef npy_cdouble complex_t
5046
5065
  *
5047
5066
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -5058,7 +5077,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
5058
5077
  int __pyx_clineno = 0;
5059
5078
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
5060
5079
 
5061
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
5080
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
5062
5081
  *
5063
5082
  * cdef inline object PyArray_MultiIterNew1(a):
5064
5083
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -5072,7 +5091,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
5072
5091
  __pyx_t_1 = 0;
5073
5092
  goto __pyx_L0;
5074
5093
 
5075
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
5094
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
5076
5095
  * ctypedef npy_cdouble complex_t
5077
5096
  *
5078
5097
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -5091,7 +5110,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
5091
5110
  return __pyx_r;
5092
5111
  }
5093
5112
 
5094
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
5113
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
5095
5114
  * return PyArray_MultiIterNew(1, <void*>a)
5096
5115
  *
5097
5116
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -5108,7 +5127,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
5108
5127
  int __pyx_clineno = 0;
5109
5128
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
5110
5129
 
5111
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
5130
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
5112
5131
  *
5113
5132
  * cdef inline object PyArray_MultiIterNew2(a, b):
5114
5133
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -5122,7 +5141,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
5122
5141
  __pyx_t_1 = 0;
5123
5142
  goto __pyx_L0;
5124
5143
 
5125
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
5144
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
5126
5145
  * return PyArray_MultiIterNew(1, <void*>a)
5127
5146
  *
5128
5147
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -5141,7 +5160,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
5141
5160
  return __pyx_r;
5142
5161
  }
5143
5162
 
5144
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
5163
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
5145
5164
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
5146
5165
  *
5147
5166
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -5158,7 +5177,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
5158
5177
  int __pyx_clineno = 0;
5159
5178
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
5160
5179
 
5161
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
5180
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
5162
5181
  *
5163
5182
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
5164
5183
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -5172,7 +5191,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
5172
5191
  __pyx_t_1 = 0;
5173
5192
  goto __pyx_L0;
5174
5193
 
5175
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
5194
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
5176
5195
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
5177
5196
  *
5178
5197
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -5191,7 +5210,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
5191
5210
  return __pyx_r;
5192
5211
  }
5193
5212
 
5194
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
5213
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
5195
5214
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
5196
5215
  *
5197
5216
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -5208,7 +5227,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
5208
5227
  int __pyx_clineno = 0;
5209
5228
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
5210
5229
 
5211
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
5230
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
5212
5231
  *
5213
5232
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
5214
5233
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -5222,7 +5241,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
5222
5241
  __pyx_t_1 = 0;
5223
5242
  goto __pyx_L0;
5224
5243
 
5225
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
5244
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
5226
5245
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
5227
5246
  *
5228
5247
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -5241,7 +5260,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
5241
5260
  return __pyx_r;
5242
5261
  }
5243
5262
 
5244
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
5263
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
5245
5264
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
5246
5265
  *
5247
5266
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -5258,7 +5277,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
5258
5277
  int __pyx_clineno = 0;
5259
5278
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
5260
5279
 
5261
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
5280
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
5262
5281
  *
5263
5282
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
5264
5283
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -5272,7 +5291,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
5272
5291
  __pyx_t_1 = 0;
5273
5292
  goto __pyx_L0;
5274
5293
 
5275
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
5294
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
5276
5295
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
5277
5296
  *
5278
5297
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -5291,7 +5310,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
5291
5310
  return __pyx_r;
5292
5311
  }
5293
5312
 
5294
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
5313
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
5295
5314
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
5296
5315
  *
5297
5316
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -5305,7 +5324,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5305
5324
  int __pyx_t_1;
5306
5325
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
5307
5326
 
5308
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
5327
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
5309
5328
  *
5310
5329
  * cdef inline tuple PyDataType_SHAPE(dtype d):
5311
5330
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -5315,7 +5334,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5315
5334
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
5316
5335
  if (__pyx_t_1) {
5317
5336
 
5318
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
5337
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
5319
5338
  * cdef inline tuple PyDataType_SHAPE(dtype d):
5320
5339
  * if PyDataType_HASSUBARRAY(d):
5321
5340
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -5327,7 +5346,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5327
5346
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
5328
5347
  goto __pyx_L0;
5329
5348
 
5330
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
5349
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
5331
5350
  *
5332
5351
  * cdef inline tuple PyDataType_SHAPE(dtype d):
5333
5352
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -5336,7 +5355,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5336
5355
  */
5337
5356
  }
5338
5357
 
5339
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
5358
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
5340
5359
  * return <tuple>d.subarray.shape
5341
5360
  * else:
5342
5361
  * return () # <<<<<<<<<<<<<<
@@ -5350,7 +5369,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5350
5369
  goto __pyx_L0;
5351
5370
  }
5352
5371
 
5353
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
5372
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
5354
5373
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
5355
5374
  *
5356
5375
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -5365,7 +5384,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
5365
5384
  return __pyx_r;
5366
5385
  }
5367
5386
 
5368
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
5387
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
5369
5388
  * int _import_umath() except -1
5370
5389
  *
5371
5390
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -5379,7 +5398,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
5379
5398
  const char *__pyx_filename = NULL;
5380
5399
  int __pyx_clineno = 0;
5381
5400
 
5382
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
5401
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
5383
5402
  *
5384
5403
  * cdef inline void set_array_base(ndarray arr, object base):
5385
5404
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -5388,7 +5407,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
5388
5407
  */
5389
5408
  Py_INCREF(__pyx_v_base);
5390
5409
 
5391
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
5410
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
5392
5411
  * cdef inline void set_array_base(ndarray arr, object base):
5393
5412
  * Py_INCREF(base) # important to do this before stealing the reference below!
5394
5413
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -5397,7 +5416,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
5397
5416
  */
5398
5417
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 970, __pyx_L1_error)
5399
5418
 
5400
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
5419
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
5401
5420
  * int _import_umath() except -1
5402
5421
  *
5403
5422
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -5412,7 +5431,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
5412
5431
  __pyx_L0:;
5413
5432
  }
5414
5433
 
5415
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
5434
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
5416
5435
  * PyArray_SetBaseObject(arr, base)
5417
5436
  *
5418
5437
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -5427,7 +5446,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5427
5446
  int __pyx_t_1;
5428
5447
  __Pyx_RefNannySetupContext("get_array_base", 1);
5429
5448
 
5430
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
5449
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
5431
5450
  *
5432
5451
  * cdef inline object get_array_base(ndarray arr):
5433
5452
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -5436,7 +5455,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5436
5455
  */
5437
5456
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
5438
5457
 
5439
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
5458
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
5440
5459
  * cdef inline object get_array_base(ndarray arr):
5441
5460
  * base = PyArray_BASE(arr)
5442
5461
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -5446,7 +5465,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5446
5465
  __pyx_t_1 = (__pyx_v_base == NULL);
5447
5466
  if (__pyx_t_1) {
5448
5467
 
5449
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
5468
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
5450
5469
  * base = PyArray_BASE(arr)
5451
5470
  * if base is NULL:
5452
5471
  * return None # <<<<<<<<<<<<<<
@@ -5457,7 +5476,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5457
5476
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
5458
5477
  goto __pyx_L0;
5459
5478
 
5460
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
5479
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
5461
5480
  * cdef inline object get_array_base(ndarray arr):
5462
5481
  * base = PyArray_BASE(arr)
5463
5482
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -5466,7 +5485,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5466
5485
  */
5467
5486
  }
5468
5487
 
5469
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
5488
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
5470
5489
  * if base is NULL:
5471
5490
  * return None
5472
5491
  * return <object>base # <<<<<<<<<<<<<<
@@ -5478,7 +5497,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5478
5497
  __pyx_r = ((PyObject *)__pyx_v_base);
5479
5498
  goto __pyx_L0;
5480
5499
 
5481
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
5500
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
5482
5501
  * PyArray_SetBaseObject(arr, base)
5483
5502
  *
5484
5503
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -5493,7 +5512,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
5493
5512
  return __pyx_r;
5494
5513
  }
5495
5514
 
5496
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
5515
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
5497
5516
  * # Versions of the import_* functions which are more suitable for
5498
5517
  * # Cython code.
5499
5518
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -5517,7 +5536,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5517
5536
  int __pyx_clineno = 0;
5518
5537
  __Pyx_RefNannySetupContext("import_array", 1);
5519
5538
 
5520
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
5539
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
5521
5540
  * # Cython code.
5522
5541
  * cdef inline int import_array() except -1:
5523
5542
  * try: # <<<<<<<<<<<<<<
@@ -5533,7 +5552,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5533
5552
  __Pyx_XGOTREF(__pyx_t_3);
5534
5553
  /*try:*/ {
5535
5554
 
5536
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
5555
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
5537
5556
  * cdef inline int import_array() except -1:
5538
5557
  * try:
5539
5558
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -5542,7 +5561,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5542
5561
  */
5543
5562
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 982, __pyx_L3_error)
5544
5563
 
5545
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
5564
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
5546
5565
  * # Cython code.
5547
5566
  * cdef inline int import_array() except -1:
5548
5567
  * try: # <<<<<<<<<<<<<<
@@ -5556,7 +5575,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5556
5575
  goto __pyx_L8_try_end;
5557
5576
  __pyx_L3_error:;
5558
5577
 
5559
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
5578
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
5560
5579
  * try:
5561
5580
  * __pyx_import_array()
5562
5581
  * except Exception: # <<<<<<<<<<<<<<
@@ -5571,7 +5590,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5571
5590
  __Pyx_XGOTREF(__pyx_t_6);
5572
5591
  __Pyx_XGOTREF(__pyx_t_7);
5573
5592
 
5574
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
5593
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
5575
5594
  * __pyx_import_array()
5576
5595
  * except Exception:
5577
5596
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -5586,7 +5605,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5586
5605
  }
5587
5606
  goto __pyx_L5_except_error;
5588
5607
 
5589
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
5608
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
5590
5609
  * # Cython code.
5591
5610
  * cdef inline int import_array() except -1:
5592
5611
  * try: # <<<<<<<<<<<<<<
@@ -5602,7 +5621,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5602
5621
  __pyx_L8_try_end:;
5603
5622
  }
5604
5623
 
5605
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
5624
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
5606
5625
  * # Versions of the import_* functions which are more suitable for
5607
5626
  * # Cython code.
5608
5627
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -5625,7 +5644,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
5625
5644
  return __pyx_r;
5626
5645
  }
5627
5646
 
5628
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
5647
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
5629
5648
  * raise ImportError("numpy.core.multiarray failed to import")
5630
5649
  *
5631
5650
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -5649,7 +5668,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5649
5668
  int __pyx_clineno = 0;
5650
5669
  __Pyx_RefNannySetupContext("import_umath", 1);
5651
5670
 
5652
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
5671
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
5653
5672
  *
5654
5673
  * cdef inline int import_umath() except -1:
5655
5674
  * try: # <<<<<<<<<<<<<<
@@ -5665,7 +5684,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5665
5684
  __Pyx_XGOTREF(__pyx_t_3);
5666
5685
  /*try:*/ {
5667
5686
 
5668
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
5687
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
5669
5688
  * cdef inline int import_umath() except -1:
5670
5689
  * try:
5671
5690
  * _import_umath() # <<<<<<<<<<<<<<
@@ -5674,7 +5693,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5674
5693
  */
5675
5694
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 988, __pyx_L3_error)
5676
5695
 
5677
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
5696
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
5678
5697
  *
5679
5698
  * cdef inline int import_umath() except -1:
5680
5699
  * try: # <<<<<<<<<<<<<<
@@ -5688,7 +5707,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5688
5707
  goto __pyx_L8_try_end;
5689
5708
  __pyx_L3_error:;
5690
5709
 
5691
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
5710
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
5692
5711
  * try:
5693
5712
  * _import_umath()
5694
5713
  * except Exception: # <<<<<<<<<<<<<<
@@ -5703,7 +5722,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5703
5722
  __Pyx_XGOTREF(__pyx_t_6);
5704
5723
  __Pyx_XGOTREF(__pyx_t_7);
5705
5724
 
5706
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
5725
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
5707
5726
  * _import_umath()
5708
5727
  * except Exception:
5709
5728
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -5718,7 +5737,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5718
5737
  }
5719
5738
  goto __pyx_L5_except_error;
5720
5739
 
5721
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
5740
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
5722
5741
  *
5723
5742
  * cdef inline int import_umath() except -1:
5724
5743
  * try: # <<<<<<<<<<<<<<
@@ -5734,7 +5753,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5734
5753
  __pyx_L8_try_end:;
5735
5754
  }
5736
5755
 
5737
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
5756
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
5738
5757
  * raise ImportError("numpy.core.multiarray failed to import")
5739
5758
  *
5740
5759
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -5757,7 +5776,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
5757
5776
  return __pyx_r;
5758
5777
  }
5759
5778
 
5760
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
5779
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
5761
5780
  * raise ImportError("numpy.core.umath failed to import")
5762
5781
  *
5763
5782
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -5781,7 +5800,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5781
5800
  int __pyx_clineno = 0;
5782
5801
  __Pyx_RefNannySetupContext("import_ufunc", 1);
5783
5802
 
5784
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
5803
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
5785
5804
  *
5786
5805
  * cdef inline int import_ufunc() except -1:
5787
5806
  * try: # <<<<<<<<<<<<<<
@@ -5797,7 +5816,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5797
5816
  __Pyx_XGOTREF(__pyx_t_3);
5798
5817
  /*try:*/ {
5799
5818
 
5800
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
5819
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
5801
5820
  * cdef inline int import_ufunc() except -1:
5802
5821
  * try:
5803
5822
  * _import_umath() # <<<<<<<<<<<<<<
@@ -5806,7 +5825,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5806
5825
  */
5807
5826
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 994, __pyx_L3_error)
5808
5827
 
5809
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
5828
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
5810
5829
  *
5811
5830
  * cdef inline int import_ufunc() except -1:
5812
5831
  * try: # <<<<<<<<<<<<<<
@@ -5820,7 +5839,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5820
5839
  goto __pyx_L8_try_end;
5821
5840
  __pyx_L3_error:;
5822
5841
 
5823
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
5842
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
5824
5843
  * try:
5825
5844
  * _import_umath()
5826
5845
  * except Exception: # <<<<<<<<<<<<<<
@@ -5835,7 +5854,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5835
5854
  __Pyx_XGOTREF(__pyx_t_6);
5836
5855
  __Pyx_XGOTREF(__pyx_t_7);
5837
5856
 
5838
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
5857
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
5839
5858
  * _import_umath()
5840
5859
  * except Exception:
5841
5860
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -5850,7 +5869,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5850
5869
  }
5851
5870
  goto __pyx_L5_except_error;
5852
5871
 
5853
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
5872
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
5854
5873
  *
5855
5874
  * cdef inline int import_ufunc() except -1:
5856
5875
  * try: # <<<<<<<<<<<<<<
@@ -5866,7 +5885,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5866
5885
  __pyx_L8_try_end:;
5867
5886
  }
5868
5887
 
5869
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
5888
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
5870
5889
  * raise ImportError("numpy.core.umath failed to import")
5871
5890
  *
5872
5891
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -5889,7 +5908,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5889
5908
  return __pyx_r;
5890
5909
  }
5891
5910
 
5892
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
5911
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
5893
5912
  *
5894
5913
  *
5895
5914
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -5900,7 +5919,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
5900
5919
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
5901
5920
  int __pyx_r;
5902
5921
 
5903
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
5922
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
5904
5923
  * bool
5905
5924
  * """
5906
5925
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -5910,7 +5929,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5910
5929
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
5911
5930
  goto __pyx_L0;
5912
5931
 
5913
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
5932
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
5914
5933
  *
5915
5934
  *
5916
5935
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -5923,7 +5942,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5923
5942
  return __pyx_r;
5924
5943
  }
5925
5944
 
5926
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
5945
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
5927
5946
  *
5928
5947
  *
5929
5948
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5934,7 +5953,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
5934
5953
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
5935
5954
  int __pyx_r;
5936
5955
 
5937
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
5956
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
5938
5957
  * bool
5939
5958
  * """
5940
5959
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -5944,7 +5963,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5944
5963
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
5945
5964
  goto __pyx_L0;
5946
5965
 
5947
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
5966
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
5948
5967
  *
5949
5968
  *
5950
5969
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -5957,7 +5976,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5957
5976
  return __pyx_r;
5958
5977
  }
5959
5978
 
5960
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
5979
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
5961
5980
  *
5962
5981
  *
5963
5982
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5968,7 +5987,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
5968
5987
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
5969
5988
  npy_datetime __pyx_r;
5970
5989
 
5971
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
5990
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
5972
5991
  * also needed. That can be found using `get_datetime64_unit`.
5973
5992
  * """
5974
5993
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -5978,7 +5997,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5978
5997
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
5979
5998
  goto __pyx_L0;
5980
5999
 
5981
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
6000
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
5982
6001
  *
5983
6002
  *
5984
6003
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5991,7 +6010,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
5991
6010
  return __pyx_r;
5992
6011
  }
5993
6012
 
5994
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
6013
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
5995
6014
  *
5996
6015
  *
5997
6016
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -6002,7 +6021,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
6002
6021
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
6003
6022
  npy_timedelta __pyx_r;
6004
6023
 
6005
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
6024
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
6006
6025
  * returns the int64 value underlying scalar numpy timedelta64 object
6007
6026
  * """
6008
6027
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -6012,7 +6031,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
6012
6031
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
6013
6032
  goto __pyx_L0;
6014
6033
 
6015
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
6034
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
6016
6035
  *
6017
6036
  *
6018
6037
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -6025,7 +6044,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
6025
6044
  return __pyx_r;
6026
6045
  }
6027
6046
 
6028
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
6047
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
6029
6048
  *
6030
6049
  *
6031
6050
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -6036,7 +6055,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
6036
6055
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
6037
6056
  NPY_DATETIMEUNIT __pyx_r;
6038
6057
 
6039
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
6058
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
6040
6059
  * returns the unit part of the dtype for a numpy datetime64 object.
6041
6060
  * """
6042
6061
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -6044,7 +6063,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
6044
6063
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
6045
6064
  goto __pyx_L0;
6046
6065
 
6047
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
6066
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
6048
6067
  *
6049
6068
  *
6050
6069
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -18558,8 +18577,10 @@ static PyTypeObject __pyx_type_7biotite_8sequence_5phylo_4tree_TreeNode = {
18558
18577
  };
18559
18578
  #endif
18560
18579
 
18580
+ #if CYTHON_USE_FREELISTS
18561
18581
  static struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph *__pyx_freelist_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph[8];
18562
18582
  static int __pyx_freecount_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph = 0;
18583
+ #endif
18563
18584
 
18564
18585
  static PyObject *__pyx_tp_new_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
18565
18586
  PyObject *o;
@@ -18567,7 +18588,7 @@ static PyObject *__pyx_tp_new_7biotite_8sequence_5phylo_4tree___pyx_scope_struct
18567
18588
  allocfunc alloc_func = (allocfunc)PyType_GetSlot(t, Py_tp_alloc);
18568
18589
  o = alloc_func(t, 0);
18569
18590
  #else
18570
- #if CYTHON_COMPILING_IN_CPYTHON
18591
+ #if CYTHON_USE_FREELISTS
18571
18592
  if (likely((int)(__pyx_freecount_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph > 0) & (int)(t->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph)))) {
18572
18593
  o = (PyObject*)__pyx_freelist_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph[--__pyx_freecount_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph];
18573
18594
  memset(o, 0, sizeof(struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph));
@@ -18594,7 +18615,7 @@ static void __pyx_tp_dealloc_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_
18594
18615
  #endif
18595
18616
  PyObject_GC_UnTrack(o);
18596
18617
  Py_CLEAR(p->__pyx_v_node_repr);
18597
- #if CYTHON_COMPILING_IN_CPYTHON
18618
+ #if CYTHON_USE_FREELISTS
18598
18619
  if (((int)(__pyx_freecount_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph < 8) & (int)(Py_TYPE(o)->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph)))) {
18599
18620
  __pyx_freelist_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph[__pyx_freecount_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph++] = ((struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct__as_graph *)o);
18600
18621
  } else
@@ -18727,8 +18748,10 @@ static PyTypeObject __pyx_type_7biotite_8sequence_5phylo_4tree___pyx_scope_struc
18727
18748
  };
18728
18749
  #endif
18729
18750
 
18751
+ #if CYTHON_USE_FREELISTS
18730
18752
  static struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr *__pyx_freelist_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr[8];
18731
18753
  static int __pyx_freecount_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr = 0;
18754
+ #endif
18732
18755
 
18733
18756
  static PyObject *__pyx_tp_new_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) {
18734
18757
  PyObject *o;
@@ -18736,7 +18759,7 @@ static PyObject *__pyx_tp_new_7biotite_8sequence_5phylo_4tree___pyx_scope_struct
18736
18759
  allocfunc alloc_func = (allocfunc)PyType_GetSlot(t, Py_tp_alloc);
18737
18760
  o = alloc_func(t, 0);
18738
18761
  #else
18739
- #if CYTHON_COMPILING_IN_CPYTHON
18762
+ #if CYTHON_USE_FREELISTS
18740
18763
  if (likely((int)(__pyx_freecount_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr > 0) & (int)(t->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr)))) {
18741
18764
  o = (PyObject*)__pyx_freelist_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr[--__pyx_freecount_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr];
18742
18765
  memset(o, 0, sizeof(struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr));
@@ -18766,7 +18789,7 @@ static void __pyx_tp_dealloc_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_
18766
18789
  Py_CLEAR(p->__pyx_genexpr_arg_0);
18767
18790
  Py_CLEAR(p->__pyx_v_child);
18768
18791
  Py_CLEAR(p->__pyx_t_0);
18769
- #if CYTHON_COMPILING_IN_CPYTHON
18792
+ #if CYTHON_USE_FREELISTS
18770
18793
  if (((int)(__pyx_freecount_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr < 8) & (int)(Py_TYPE(o)->tp_basicsize == sizeof(struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr)))) {
18771
18794
  __pyx_freelist_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr[__pyx_freecount_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr++] = ((struct __pyx_obj_7biotite_8sequence_5phylo_4tree___pyx_scope_struct_1_genexpr *)o);
18772
18795
  } else
@@ -19163,7 +19186,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
19163
19186
  __Pyx_RefNannyDeclarations
19164
19187
  __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
19165
19188
 
19166
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
19189
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
19167
19190
  * __pyx_import_array()
19168
19191
  * except Exception:
19169
19192
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19174,7 +19197,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
19174
19197
  __Pyx_GOTREF(__pyx_tuple_);
19175
19198
  __Pyx_GIVEREF(__pyx_tuple_);
19176
19199
 
19177
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
19200
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4zd8_pj9/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
19178
19201
  * _import_umath()
19179
19202
  * except Exception:
19180
19203
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19693,33 +19716,33 @@ static int __Pyx_modinit_type_import_code(void) {
19693
19716
  /*--- Type import code ---*/
19694
19717
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
19695
19718
  __Pyx_GOTREF(__pyx_t_1);
19696
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
19719
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
19697
19720
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
19698
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
19721
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
19699
19722
  #elif CYTHON_COMPILING_IN_LIMITED_API
19700
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
19723
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
19701
19724
  #else
19702
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
19725
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
19703
19726
  #endif
19704
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
19727
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
19705
19728
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
19706
19729
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 202, __pyx_L1_error)
19707
19730
  __Pyx_GOTREF(__pyx_t_1);
19708
- __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(1, 202, __pyx_L1_error)
19709
- __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(1, 225, __pyx_L1_error)
19710
- __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(1, 229, __pyx_L1_error)
19711
- __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(1, 238, __pyx_L1_error)
19712
- __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(1, 809, __pyx_L1_error)
19713
- __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(1, 811, __pyx_L1_error)
19714
- __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(1, 813, __pyx_L1_error)
19715
- __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(1, 815, __pyx_L1_error)
19716
- __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(1, 817, __pyx_L1_error)
19717
- __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(1, 819, __pyx_L1_error)
19718
- __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(1, 821, __pyx_L1_error)
19719
- __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(1, 823, __pyx_L1_error)
19720
- __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(1, 825, __pyx_L1_error)
19721
- __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(1, 827, __pyx_L1_error)
19722
- __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(1, 866, __pyx_L1_error)
19731
+ __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(1, 202, __pyx_L1_error)
19732
+ __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(1, 225, __pyx_L1_error)
19733
+ __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(1, 229, __pyx_L1_error)
19734
+ __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(1, 238, __pyx_L1_error)
19735
+ __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(1, 809, __pyx_L1_error)
19736
+ __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(1, 811, __pyx_L1_error)
19737
+ __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(1, 813, __pyx_L1_error)
19738
+ __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(1, 815, __pyx_L1_error)
19739
+ __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(1, 817, __pyx_L1_error)
19740
+ __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(1, 819, __pyx_L1_error)
19741
+ __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(1, 821, __pyx_L1_error)
19742
+ __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(1, 823, __pyx_L1_error)
19743
+ __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(1, 825, __pyx_L1_error)
19744
+ __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(1, 827, __pyx_L1_error)
19745
+ __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(1, 866, __pyx_L1_error)
19723
19746
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
19724
19747
  __Pyx_RefNannyFinishContext();
19725
19748
  return 0;
@@ -21420,11 +21443,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
21420
21443
  {
21421
21444
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
21422
21445
  if (unlikely(eq != 0)) {
21423
- if (unlikely(eq < 0)) return NULL; // error
21446
+ if (unlikely(eq < 0)) return NULL;
21424
21447
  return kwvalues[i];
21425
21448
  }
21426
21449
  }
21427
- return NULL; // not found (no exception set)
21450
+ return NULL;
21428
21451
  }
21429
21452
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
21430
21453
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -21537,7 +21560,7 @@ static int __Pyx_ParseOptionalKeywords(
21537
21560
  if (*name) {
21538
21561
  values[name-argnames] = value;
21539
21562
  #if CYTHON_AVOID_BORROWED_REFS
21540
- Py_INCREF(value); // transfer ownership of value to values
21563
+ Py_INCREF(value);
21541
21564
  Py_DECREF(key);
21542
21565
  #endif
21543
21566
  key = NULL;
@@ -21556,7 +21579,7 @@ static int __Pyx_ParseOptionalKeywords(
21556
21579
  && _PyString_Eq(**name, key)) {
21557
21580
  values[name-argnames] = value;
21558
21581
  #if CYTHON_AVOID_BORROWED_REFS
21559
- value = NULL; // ownership transferred to values
21582
+ value = NULL;
21560
21583
  #endif
21561
21584
  break;
21562
21585
  }
@@ -21588,7 +21611,7 @@ static int __Pyx_ParseOptionalKeywords(
21588
21611
  if (cmp == 0) {
21589
21612
  values[name-argnames] = value;
21590
21613
  #if CYTHON_AVOID_BORROWED_REFS
21591
- value = NULL; // ownership transferred to values
21614
+ value = NULL;
21592
21615
  #endif
21593
21616
  break;
21594
21617
  }
@@ -22543,9 +22566,10 @@ static PyObject *__Pyx_PyObject_GetItem(PyObject *obj, PyObject *key) {
22543
22566
 
22544
22567
  /* UnpackUnboundCMethod */
22545
22568
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
22569
+ PyObject *result;
22546
22570
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
22547
22571
  if (unlikely(!selfless_args)) return NULL;
22548
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
22572
+ result = PyObject_Call(method, selfless_args, kwargs);
22549
22573
  Py_DECREF(selfless_args);
22550
22574
  return result;
22551
22575
  }
@@ -22682,9 +22706,10 @@ static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) {
22682
22706
 
22683
22707
  /* IterFinish */
22684
22708
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
22709
+ PyObject* exc_type;
22685
22710
  __Pyx_PyThreadState_declare
22686
22711
  __Pyx_PyThreadState_assign
22687
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
22712
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
22688
22713
  if (unlikely(exc_type)) {
22689
22714
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
22690
22715
  return -1;
@@ -23697,10 +23722,10 @@ __PYX_GOOD:
23697
23722
  #endif
23698
23723
 
23699
23724
  /* TypeImport */
23700
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
23701
- #define __PYX_HAVE_RT_ImportType_3_0_7
23702
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
23703
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
23725
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
23726
+ #define __PYX_HAVE_RT_ImportType_3_0_10
23727
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
23728
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
23704
23729
  {
23705
23730
  PyObject *result = 0;
23706
23731
  char warning[200];
@@ -23754,7 +23779,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
23754
23779
  module_name, class_name, size, basicsize+itemsize);
23755
23780
  goto bad;
23756
23781
  }
23757
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
23782
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
23758
23783
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
23759
23784
  PyErr_Format(PyExc_ValueError,
23760
23785
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -23762,7 +23787,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
23762
23787
  module_name, class_name, size, basicsize, basicsize+itemsize);
23763
23788
  goto bad;
23764
23789
  }
23765
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
23790
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
23766
23791
  PyOS_snprintf(warning, sizeof(warning),
23767
23792
  "%s.%s size changed, may indicate binary incompatibility. "
23768
23793
  "Expected %zd from C header, got %zd from PyObject",
@@ -25109,7 +25134,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
25109
25134
  default:
25110
25135
  return NULL;
25111
25136
  }
25112
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
25137
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
25113
25138
  }
25114
25139
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
25115
25140
  {
@@ -25822,7 +25847,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
25822
25847
  #else
25823
25848
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
25824
25849
  #endif
25825
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
25850
+ Py_XDECREF(py_funcname);
25826
25851
  return py_code;
25827
25852
  bad:
25828
25853
  Py_XDECREF(py_funcname);