biotite 0.39.0__cp311-cp311-macosx_11_0_arm64.whl → 0.41.0__cp311-cp311-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 +258 -237
  8. biotite/sequence/align/banded.cpython-311-darwin.so +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +243 -222
  11. biotite/sequence/align/kmeralphabet.cpython-311-darwin.so +0 -0
  12. biotite/sequence/align/kmersimilarity.c +215 -196
  13. biotite/sequence/align/kmersimilarity.cpython-311-darwin.so +0 -0
  14. biotite/sequence/align/kmertable.cpp +233 -205
  15. biotite/sequence/align/kmertable.cpython-311-darwin.so +0 -0
  16. biotite/sequence/align/localgapped.c +258 -237
  17. biotite/sequence/align/localgapped.cpython-311-darwin.so +0 -0
  18. biotite/sequence/align/localungapped.c +235 -214
  19. biotite/sequence/align/localungapped.cpython-311-darwin.so +0 -0
  20. biotite/sequence/align/multiple.c +255 -234
  21. biotite/sequence/align/multiple.cpython-311-darwin.so +0 -0
  22. biotite/sequence/align/pairwise.c +274 -253
  23. biotite/sequence/align/pairwise.cpython-311-darwin.so +0 -0
  24. biotite/sequence/align/permutation.c +215 -196
  25. biotite/sequence/align/permutation.cpython-311-darwin.so +0 -0
  26. biotite/sequence/align/selector.c +217 -197
  27. biotite/sequence/align/selector.cpython-311-darwin.so +0 -0
  28. biotite/sequence/align/tracetable.c +215 -195
  29. biotite/sequence/align/tracetable.cpython-311-darwin.so +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +235 -214
  32. biotite/sequence/codec.cpython-311-darwin.so +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +215 -196
  35. biotite/sequence/phylo/nj.cpython-311-darwin.so +0 -0
  36. biotite/sequence/phylo/tree.c +227 -202
  37. biotite/sequence/phylo/tree.cpython-311-darwin.so +0 -0
  38. biotite/sequence/phylo/upgma.c +215 -196
  39. biotite/sequence/phylo/upgma.cpython-311-darwin.so +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1437 -1279
  43. biotite/structure/bonds.cpython-311-darwin.so +0 -0
  44. biotite/structure/celllist.c +217 -197
  45. biotite/structure/celllist.cpython-311-darwin.so +0 -0
  46. biotite/structure/charges.c +1052 -1101
  47. biotite/structure/charges.cpython-311-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 +219 -198
  70. biotite/structure/io/mmtf/convertarray.cpython-311-darwin.so +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +217 -197
  72. biotite/structure/io/mmtf/convertfile.cpython-311-darwin.so +0 -0
  73. biotite/structure/io/mmtf/decode.c +225 -204
  74. biotite/structure/io/mmtf/decode.cpython-311-darwin.so +0 -0
  75. biotite/structure/io/mmtf/encode.c +215 -196
  76. biotite/structure/io/mmtf/encode.cpython-311-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-311-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 +112813 -0
  97. biotite/structure/io/pdbx/encoding.cpython-311-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 +215 -196
  102. biotite/structure/sasa.cpython-311-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
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":731
1666
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":731
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":732
1675
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":732
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":733
1684
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":733
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":734
1693
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":734
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":738
1702
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":738
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":739
1711
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":739
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":740
1720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":740
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":741
1729
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":741
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
1738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
1747
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":755
1756
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":755
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":756
1765
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":756
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_long_t;
1755
1773
 
1756
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":757
1757
1775
  * ctypedef npy_long int_t
1758
1776
  * ctypedef npy_longlong long_t
1759
1777
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
1762
1780
  */
1763
1781
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1764
1782
 
1765
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":759
1783
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":759
1766
1784
  * ctypedef npy_longlong longlong_t
1767
1785
  *
1768
1786
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1771
1789
  */
1772
1790
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1773
1791
 
1774
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":760
1775
1793
  *
1776
1794
  * ctypedef npy_ulong uint_t
1777
1795
  * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1780
1798
  */
1781
1799
  typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1782
1800
 
1783
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
1784
1802
  * ctypedef npy_ulong uint_t
1785
1803
  * ctypedef npy_ulonglong ulong_t
1786
1804
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
1789
1807
  */
1790
1808
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1791
1809
 
1792
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":763
1793
1811
  * ctypedef npy_ulonglong ulonglong_t
1794
1812
  *
1795
1813
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1798
1816
  */
1799
1817
  typedef npy_intp __pyx_t_5numpy_intp_t;
1800
1818
 
1801
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
1802
1820
  *
1803
1821
  * ctypedef npy_intp intp_t
1804
1822
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1807
1825
  */
1808
1826
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1809
1827
 
1810
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":766
1828
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":766
1811
1829
  * ctypedef npy_uintp uintp_t
1812
1830
  *
1813
1831
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1816
1834
  */
1817
1835
  typedef npy_double __pyx_t_5numpy_float_t;
1818
1836
 
1819
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
1837
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
1820
1838
  *
1821
1839
  * ctypedef npy_double float_t
1822
1840
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1825
1843
  */
1826
1844
  typedef npy_double __pyx_t_5numpy_double_t;
1827
1845
 
1828
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
1846
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
1829
1847
  * ctypedef npy_double float_t
1830
1848
  * ctypedef npy_double double_t
1831
1849
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1920,7 +1938,7 @@ struct __pyx_MemviewEnum_obj;
1920
1938
  struct __pyx_memoryview_obj;
1921
1939
  struct __pyx_memoryviewslice_obj;
1922
1940
 
1923
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
1941
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
1924
1942
  * ctypedef npy_longdouble longdouble_t
1925
1943
  *
1926
1944
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1929,7 +1947,7 @@ struct __pyx_memoryviewslice_obj;
1929
1947
  */
1930
1948
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1931
1949
 
1932
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
1950
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
1933
1951
  *
1934
1952
  * ctypedef npy_cfloat cfloat_t
1935
1953
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1938,7 +1956,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1938
1956
  */
1939
1957
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1940
1958
 
1941
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
1959
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
1942
1960
  * ctypedef npy_cfloat cfloat_t
1943
1961
  * ctypedef npy_cdouble cdouble_t
1944
1962
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1947,7 +1965,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1947
1965
  */
1948
1966
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1949
1967
 
1950
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
1968
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
1951
1969
  * ctypedef npy_clongdouble clongdouble_t
1952
1970
  *
1953
1971
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2307,8 +2325,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2307
2325
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2308
2326
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2309
2327
  #else
2310
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2311
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2328
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2329
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2312
2330
  #endif
2313
2331
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2314
2332
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2324,8 +2342,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2324
2342
  #else
2325
2343
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2326
2344
  #endif
2327
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2328
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2345
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2346
+ to have the same reference counting */
2347
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2329
2348
  #else
2330
2349
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2331
2350
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2978,22 +2997,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2978
2997
  #endif
2979
2998
 
2980
2999
  /* TypeImport.proto */
2981
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2982
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
3000
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
3001
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2983
3002
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2984
3003
  #include <stdalign.h>
2985
3004
  #endif
2986
3005
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2987
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
3006
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2988
3007
  #else
2989
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
3008
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2990
3009
  #endif
2991
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2992
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2993
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2994
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
3010
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
3011
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
3012
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
3013
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2995
3014
  };
2996
- 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);
3015
+ 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);
2997
3016
  #endif
2998
3017
 
2999
3018
  /* FetchSharedCythonModule.proto */
@@ -3086,7 +3105,7 @@ typedef struct {
3086
3105
  #endif
3087
3106
  void *defaults;
3088
3107
  int defaults_pyobjects;
3089
- size_t defaults_size; // used by FusedFunction for copying defaults
3108
+ size_t defaults_size;
3090
3109
  int flags;
3091
3110
  PyObject *defaults_tuple;
3092
3111
  PyObject *defaults_kwdict;
@@ -3455,7 +3474,7 @@ static unsigned long __Pyx_get_runtime_version(void);
3455
3474
  static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer);
3456
3475
 
3457
3476
  /* FunctionImport.proto */
3458
- static int __Pyx_ImportFunction_3_0_7(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
3477
+ static int __Pyx_ImportFunction_3_0_10(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
3459
3478
 
3460
3479
  /* InitStrings.proto */
3461
3480
  static int __Pyx_InitStrings(__Pyx_StringTabEntry *t);
@@ -19263,7 +19282,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19263
19282
  return __pyx_r;
19264
19283
  }
19265
19284
 
19266
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
19285
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
19267
19286
  *
19268
19287
  * @property
19269
19288
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19274,7 +19293,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19274
19293
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
19275
19294
  PyObject *__pyx_r;
19276
19295
 
19277
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
19296
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
19278
19297
  * """Returns a borrowed reference to the object owning the data/memory.
19279
19298
  * """
19280
19299
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -19284,7 +19303,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19284
19303
  __pyx_r = PyArray_BASE(__pyx_v_self);
19285
19304
  goto __pyx_L0;
19286
19305
 
19287
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
19306
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
19288
19307
  *
19289
19308
  * @property
19290
19309
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19297,7 +19316,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19297
19316
  return __pyx_r;
19298
19317
  }
19299
19318
 
19300
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
19319
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
19301
19320
  *
19302
19321
  * @property
19303
19322
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19311,7 +19330,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19311
19330
  PyArray_Descr *__pyx_t_1;
19312
19331
  __Pyx_RefNannySetupContext("descr", 1);
19313
19332
 
19314
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
19333
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
19315
19334
  * """Returns an owned reference to the dtype of the array.
19316
19335
  * """
19317
19336
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -19324,7 +19343,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19324
19343
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
19325
19344
  goto __pyx_L0;
19326
19345
 
19327
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
19346
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
19328
19347
  *
19329
19348
  * @property
19330
19349
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19339,7 +19358,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19339
19358
  return __pyx_r;
19340
19359
  }
19341
19360
 
19342
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
19361
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
19343
19362
  *
19344
19363
  * @property
19345
19364
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19350,7 +19369,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19350
19369
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
19351
19370
  int __pyx_r;
19352
19371
 
19353
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
19372
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
19354
19373
  * """Returns the number of dimensions in the array.
19355
19374
  * """
19356
19375
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -19360,7 +19379,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19360
19379
  __pyx_r = PyArray_NDIM(__pyx_v_self);
19361
19380
  goto __pyx_L0;
19362
19381
 
19363
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
19382
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
19364
19383
  *
19365
19384
  * @property
19366
19385
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19373,7 +19392,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19373
19392
  return __pyx_r;
19374
19393
  }
19375
19394
 
19376
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
19395
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
19377
19396
  *
19378
19397
  * @property
19379
19398
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19384,7 +19403,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19384
19403
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
19385
19404
  npy_intp *__pyx_r;
19386
19405
 
19387
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
19406
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
19388
19407
  * Can return NULL for 0-dimensional arrays.
19389
19408
  * """
19390
19409
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -19394,7 +19413,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19394
19413
  __pyx_r = PyArray_DIMS(__pyx_v_self);
19395
19414
  goto __pyx_L0;
19396
19415
 
19397
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
19416
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
19398
19417
  *
19399
19418
  * @property
19400
19419
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19407,7 +19426,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19407
19426
  return __pyx_r;
19408
19427
  }
19409
19428
 
19410
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
19429
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
19411
19430
  *
19412
19431
  * @property
19413
19432
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19418,7 +19437,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19418
19437
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
19419
19438
  npy_intp *__pyx_r;
19420
19439
 
19421
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
19440
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
19422
19441
  * The number of elements matches the number of dimensions of the array (ndim).
19423
19442
  * """
19424
19443
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -19428,7 +19447,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19428
19447
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
19429
19448
  goto __pyx_L0;
19430
19449
 
19431
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
19450
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
19432
19451
  *
19433
19452
  * @property
19434
19453
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19441,7 +19460,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19441
19460
  return __pyx_r;
19442
19461
  }
19443
19462
 
19444
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
19463
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
19445
19464
  *
19446
19465
  * @property
19447
19466
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19452,7 +19471,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19452
19471
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
19453
19472
  npy_intp __pyx_r;
19454
19473
 
19455
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
19474
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
19456
19475
  * """Returns the total size (in number of elements) of the array.
19457
19476
  * """
19458
19477
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -19462,7 +19481,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19462
19481
  __pyx_r = PyArray_SIZE(__pyx_v_self);
19463
19482
  goto __pyx_L0;
19464
19483
 
19465
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
19484
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
19466
19485
  *
19467
19486
  * @property
19468
19487
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19475,7 +19494,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19475
19494
  return __pyx_r;
19476
19495
  }
19477
19496
 
19478
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
19497
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
19479
19498
  *
19480
19499
  * @property
19481
19500
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19486,7 +19505,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19486
19505
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
19487
19506
  char *__pyx_r;
19488
19507
 
19489
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
19508
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
19490
19509
  * of `PyArray_DATA()` instead, which returns a 'void*'.
19491
19510
  * """
19492
19511
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -19496,7 +19515,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19496
19515
  __pyx_r = PyArray_BYTES(__pyx_v_self);
19497
19516
  goto __pyx_L0;
19498
19517
 
19499
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
19518
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
19500
19519
  *
19501
19520
  * @property
19502
19521
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19509,7 +19528,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19509
19528
  return __pyx_r;
19510
19529
  }
19511
19530
 
19512
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
19531
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
19513
19532
  * ctypedef npy_cdouble complex_t
19514
19533
  *
19515
19534
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19526,7 +19545,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19526
19545
  int __pyx_clineno = 0;
19527
19546
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
19528
19547
 
19529
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
19548
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
19530
19549
  *
19531
19550
  * cdef inline object PyArray_MultiIterNew1(a):
19532
19551
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -19540,7 +19559,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19540
19559
  __pyx_t_1 = 0;
19541
19560
  goto __pyx_L0;
19542
19561
 
19543
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
19562
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
19544
19563
  * ctypedef npy_cdouble complex_t
19545
19564
  *
19546
19565
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19559,7 +19578,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19559
19578
  return __pyx_r;
19560
19579
  }
19561
19580
 
19562
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
19581
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
19563
19582
  * return PyArray_MultiIterNew(1, <void*>a)
19564
19583
  *
19565
19584
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19576,7 +19595,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19576
19595
  int __pyx_clineno = 0;
19577
19596
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
19578
19597
 
19579
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
19598
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
19580
19599
  *
19581
19600
  * cdef inline object PyArray_MultiIterNew2(a, b):
19582
19601
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -19590,7 +19609,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19590
19609
  __pyx_t_1 = 0;
19591
19610
  goto __pyx_L0;
19592
19611
 
19593
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
19612
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
19594
19613
  * return PyArray_MultiIterNew(1, <void*>a)
19595
19614
  *
19596
19615
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19609,7 +19628,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19609
19628
  return __pyx_r;
19610
19629
  }
19611
19630
 
19612
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
19631
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
19613
19632
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19614
19633
  *
19615
19634
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19626,7 +19645,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19626
19645
  int __pyx_clineno = 0;
19627
19646
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
19628
19647
 
19629
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
19648
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
19630
19649
  *
19631
19650
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
19632
19651
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19640,7 +19659,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19640
19659
  __pyx_t_1 = 0;
19641
19660
  goto __pyx_L0;
19642
19661
 
19643
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
19662
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
19644
19663
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19645
19664
  *
19646
19665
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19659,7 +19678,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19659
19678
  return __pyx_r;
19660
19679
  }
19661
19680
 
19662
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
19681
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
19663
19682
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19664
19683
  *
19665
19684
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19676,7 +19695,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19676
19695
  int __pyx_clineno = 0;
19677
19696
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19678
19697
 
19679
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
19698
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
19680
19699
  *
19681
19700
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19682
19701
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19690,7 +19709,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19690
19709
  __pyx_t_1 = 0;
19691
19710
  goto __pyx_L0;
19692
19711
 
19693
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
19712
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
19694
19713
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19695
19714
  *
19696
19715
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19709,7 +19728,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19709
19728
  return __pyx_r;
19710
19729
  }
19711
19730
 
19712
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
19731
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
19713
19732
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19714
19733
  *
19715
19734
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19726,7 +19745,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19726
19745
  int __pyx_clineno = 0;
19727
19746
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19728
19747
 
19729
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
19748
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
19730
19749
  *
19731
19750
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19732
19751
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19740,7 +19759,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19740
19759
  __pyx_t_1 = 0;
19741
19760
  goto __pyx_L0;
19742
19761
 
19743
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
19762
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
19744
19763
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19745
19764
  *
19746
19765
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19759,7 +19778,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19759
19778
  return __pyx_r;
19760
19779
  }
19761
19780
 
19762
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
19781
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
19763
19782
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19764
19783
  *
19765
19784
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19773,7 +19792,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19773
19792
  int __pyx_t_1;
19774
19793
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19775
19794
 
19776
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
19795
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
19777
19796
  *
19778
19797
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19779
19798
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19783,7 +19802,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19783
19802
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19784
19803
  if (__pyx_t_1) {
19785
19804
 
19786
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
19805
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
19787
19806
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19788
19807
  * if PyDataType_HASSUBARRAY(d):
19789
19808
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19795,7 +19814,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19795
19814
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19796
19815
  goto __pyx_L0;
19797
19816
 
19798
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
19817
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
19799
19818
  *
19800
19819
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19801
19820
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19804,7 +19823,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19804
19823
  */
19805
19824
  }
19806
19825
 
19807
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
19826
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
19808
19827
  * return <tuple>d.subarray.shape
19809
19828
  * else:
19810
19829
  * return () # <<<<<<<<<<<<<<
@@ -19818,7 +19837,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19818
19837
  goto __pyx_L0;
19819
19838
  }
19820
19839
 
19821
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
19840
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
19822
19841
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19823
19842
  *
19824
19843
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19833,7 +19852,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19833
19852
  return __pyx_r;
19834
19853
  }
19835
19854
 
19836
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
19855
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
19837
19856
  * int _import_umath() except -1
19838
19857
  *
19839
19858
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19843,7 +19862,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19843
19862
 
19844
19863
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
19845
19864
 
19846
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
19865
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
19847
19866
  *
19848
19867
  * cdef inline void set_array_base(ndarray arr, object base):
19849
19868
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19852,7 +19871,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19852
19871
  */
19853
19872
  Py_INCREF(__pyx_v_base);
19854
19873
 
19855
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
19874
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
19856
19875
  * cdef inline void set_array_base(ndarray arr, object base):
19857
19876
  * Py_INCREF(base) # important to do this before stealing the reference below!
19858
19877
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19861,7 +19880,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19861
19880
  */
19862
19881
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
19863
19882
 
19864
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
19883
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
19865
19884
  * int _import_umath() except -1
19866
19885
  *
19867
19886
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19872,7 +19891,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19872
19891
  /* function exit code */
19873
19892
  }
19874
19893
 
19875
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
19894
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
19876
19895
  * PyArray_SetBaseObject(arr, base)
19877
19896
  *
19878
19897
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19887,7 +19906,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19887
19906
  int __pyx_t_1;
19888
19907
  __Pyx_RefNannySetupContext("get_array_base", 1);
19889
19908
 
19890
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
19909
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
19891
19910
  *
19892
19911
  * cdef inline object get_array_base(ndarray arr):
19893
19912
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19896,7 +19915,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19896
19915
  */
19897
19916
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19898
19917
 
19899
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19918
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19900
19919
  * cdef inline object get_array_base(ndarray arr):
19901
19920
  * base = PyArray_BASE(arr)
19902
19921
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19906,7 +19925,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19906
19925
  __pyx_t_1 = (__pyx_v_base == NULL);
19907
19926
  if (__pyx_t_1) {
19908
19927
 
19909
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
19928
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
19910
19929
  * base = PyArray_BASE(arr)
19911
19930
  * if base is NULL:
19912
19931
  * return None # <<<<<<<<<<<<<<
@@ -19917,7 +19936,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19917
19936
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19918
19937
  goto __pyx_L0;
19919
19938
 
19920
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19939
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
19921
19940
  * cdef inline object get_array_base(ndarray arr):
19922
19941
  * base = PyArray_BASE(arr)
19923
19942
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19926,7 +19945,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19926
19945
  */
19927
19946
  }
19928
19947
 
19929
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
19948
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
19930
19949
  * if base is NULL:
19931
19950
  * return None
19932
19951
  * return <object>base # <<<<<<<<<<<<<<
@@ -19938,7 +19957,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19938
19957
  __pyx_r = ((PyObject *)__pyx_v_base);
19939
19958
  goto __pyx_L0;
19940
19959
 
19941
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
19960
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
19942
19961
  * PyArray_SetBaseObject(arr, base)
19943
19962
  *
19944
19963
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19953,7 +19972,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19953
19972
  return __pyx_r;
19954
19973
  }
19955
19974
 
19956
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
19975
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
19957
19976
  * # Versions of the import_* functions which are more suitable for
19958
19977
  * # Cython code.
19959
19978
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19977,7 +19996,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19977
19996
  int __pyx_clineno = 0;
19978
19997
  __Pyx_RefNannySetupContext("import_array", 1);
19979
19998
 
19980
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19999
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
19981
20000
  * # Cython code.
19982
20001
  * cdef inline int import_array() except -1:
19983
20002
  * try: # <<<<<<<<<<<<<<
@@ -19993,7 +20012,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19993
20012
  __Pyx_XGOTREF(__pyx_t_3);
19994
20013
  /*try:*/ {
19995
20014
 
19996
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
20015
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
19997
20016
  * cdef inline int import_array() except -1:
19998
20017
  * try:
19999
20018
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -20002,7 +20021,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20002
20021
  */
20003
20022
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
20004
20023
 
20005
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
20024
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
20006
20025
  * # Cython code.
20007
20026
  * cdef inline int import_array() except -1:
20008
20027
  * try: # <<<<<<<<<<<<<<
@@ -20016,7 +20035,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20016
20035
  goto __pyx_L8_try_end;
20017
20036
  __pyx_L3_error:;
20018
20037
 
20019
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
20038
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
20020
20039
  * try:
20021
20040
  * __pyx_import_array()
20022
20041
  * except Exception: # <<<<<<<<<<<<<<
@@ -20031,7 +20050,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20031
20050
  __Pyx_XGOTREF(__pyx_t_6);
20032
20051
  __Pyx_XGOTREF(__pyx_t_7);
20033
20052
 
20034
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
20053
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
20035
20054
  * __pyx_import_array()
20036
20055
  * except Exception:
20037
20056
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -20046,7 +20065,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20046
20065
  }
20047
20066
  goto __pyx_L5_except_error;
20048
20067
 
20049
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
20068
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
20050
20069
  * # Cython code.
20051
20070
  * cdef inline int import_array() except -1:
20052
20071
  * try: # <<<<<<<<<<<<<<
@@ -20062,7 +20081,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20062
20081
  __pyx_L8_try_end:;
20063
20082
  }
20064
20083
 
20065
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
20084
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
20066
20085
  * # Versions of the import_* functions which are more suitable for
20067
20086
  * # Cython code.
20068
20087
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -20085,7 +20104,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
20085
20104
  return __pyx_r;
20086
20105
  }
20087
20106
 
20088
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
20107
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
20089
20108
  * raise ImportError("numpy.core.multiarray failed to import")
20090
20109
  *
20091
20110
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20109,7 +20128,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20109
20128
  int __pyx_clineno = 0;
20110
20129
  __Pyx_RefNannySetupContext("import_umath", 1);
20111
20130
 
20112
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
20131
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
20113
20132
  *
20114
20133
  * cdef inline int import_umath() except -1:
20115
20134
  * try: # <<<<<<<<<<<<<<
@@ -20125,7 +20144,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20125
20144
  __Pyx_XGOTREF(__pyx_t_3);
20126
20145
  /*try:*/ {
20127
20146
 
20128
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
20147
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
20129
20148
  * cdef inline int import_umath() except -1:
20130
20149
  * try:
20131
20150
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20134,7 +20153,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20134
20153
  */
20135
20154
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
20136
20155
 
20137
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
20156
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
20138
20157
  *
20139
20158
  * cdef inline int import_umath() except -1:
20140
20159
  * try: # <<<<<<<<<<<<<<
@@ -20148,7 +20167,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20148
20167
  goto __pyx_L8_try_end;
20149
20168
  __pyx_L3_error:;
20150
20169
 
20151
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
20170
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
20152
20171
  * try:
20153
20172
  * _import_umath()
20154
20173
  * except Exception: # <<<<<<<<<<<<<<
@@ -20163,7 +20182,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20163
20182
  __Pyx_XGOTREF(__pyx_t_6);
20164
20183
  __Pyx_XGOTREF(__pyx_t_7);
20165
20184
 
20166
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
20185
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
20167
20186
  * _import_umath()
20168
20187
  * except Exception:
20169
20188
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20178,7 +20197,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20178
20197
  }
20179
20198
  goto __pyx_L5_except_error;
20180
20199
 
20181
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
20200
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
20182
20201
  *
20183
20202
  * cdef inline int import_umath() except -1:
20184
20203
  * try: # <<<<<<<<<<<<<<
@@ -20194,7 +20213,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20194
20213
  __pyx_L8_try_end:;
20195
20214
  }
20196
20215
 
20197
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
20216
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
20198
20217
  * raise ImportError("numpy.core.multiarray failed to import")
20199
20218
  *
20200
20219
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20217,7 +20236,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20217
20236
  return __pyx_r;
20218
20237
  }
20219
20238
 
20220
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
20239
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
20221
20240
  * raise ImportError("numpy.core.umath failed to import")
20222
20241
  *
20223
20242
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20241,7 +20260,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20241
20260
  int __pyx_clineno = 0;
20242
20261
  __Pyx_RefNannySetupContext("import_ufunc", 1);
20243
20262
 
20244
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
20263
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
20245
20264
  *
20246
20265
  * cdef inline int import_ufunc() except -1:
20247
20266
  * try: # <<<<<<<<<<<<<<
@@ -20257,7 +20276,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20257
20276
  __Pyx_XGOTREF(__pyx_t_3);
20258
20277
  /*try:*/ {
20259
20278
 
20260
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
20279
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
20261
20280
  * cdef inline int import_ufunc() except -1:
20262
20281
  * try:
20263
20282
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20266,7 +20285,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20266
20285
  */
20267
20286
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
20268
20287
 
20269
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
20288
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
20270
20289
  *
20271
20290
  * cdef inline int import_ufunc() except -1:
20272
20291
  * try: # <<<<<<<<<<<<<<
@@ -20280,7 +20299,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20280
20299
  goto __pyx_L8_try_end;
20281
20300
  __pyx_L3_error:;
20282
20301
 
20283
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
20302
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
20284
20303
  * try:
20285
20304
  * _import_umath()
20286
20305
  * except Exception: # <<<<<<<<<<<<<<
@@ -20295,7 +20314,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20295
20314
  __Pyx_XGOTREF(__pyx_t_6);
20296
20315
  __Pyx_XGOTREF(__pyx_t_7);
20297
20316
 
20298
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
20317
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
20299
20318
  * _import_umath()
20300
20319
  * except Exception:
20301
20320
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20310,7 +20329,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20310
20329
  }
20311
20330
  goto __pyx_L5_except_error;
20312
20331
 
20313
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
20332
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
20314
20333
  *
20315
20334
  * cdef inline int import_ufunc() except -1:
20316
20335
  * try: # <<<<<<<<<<<<<<
@@ -20326,7 +20345,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20326
20345
  __pyx_L8_try_end:;
20327
20346
  }
20328
20347
 
20329
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
20348
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
20330
20349
  * raise ImportError("numpy.core.umath failed to import")
20331
20350
  *
20332
20351
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20349,7 +20368,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20349
20368
  return __pyx_r;
20350
20369
  }
20351
20370
 
20352
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
20371
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
20353
20372
  *
20354
20373
  *
20355
20374
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20360,7 +20379,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20360
20379
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
20361
20380
  int __pyx_r;
20362
20381
 
20363
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
20382
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
20364
20383
  * bool
20365
20384
  * """
20366
20385
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -20370,7 +20389,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20370
20389
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
20371
20390
  goto __pyx_L0;
20372
20391
 
20373
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
20392
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
20374
20393
  *
20375
20394
  *
20376
20395
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20383,7 +20402,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20383
20402
  return __pyx_r;
20384
20403
  }
20385
20404
 
20386
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
20405
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
20387
20406
  *
20388
20407
  *
20389
20408
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20394,7 +20413,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20394
20413
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
20395
20414
  int __pyx_r;
20396
20415
 
20397
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
20416
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
20398
20417
  * bool
20399
20418
  * """
20400
20419
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -20404,7 +20423,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20404
20423
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
20405
20424
  goto __pyx_L0;
20406
20425
 
20407
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
20426
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
20408
20427
  *
20409
20428
  *
20410
20429
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20417,7 +20436,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20417
20436
  return __pyx_r;
20418
20437
  }
20419
20438
 
20420
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
20439
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
20421
20440
  *
20422
20441
  *
20423
20442
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20428,7 +20447,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20428
20447
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
20429
20448
  npy_datetime __pyx_r;
20430
20449
 
20431
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
20450
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
20432
20451
  * also needed. That can be found using `get_datetime64_unit`.
20433
20452
  * """
20434
20453
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20438,7 +20457,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20438
20457
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
20439
20458
  goto __pyx_L0;
20440
20459
 
20441
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
20460
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
20442
20461
  *
20443
20462
  *
20444
20463
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20451,7 +20470,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20451
20470
  return __pyx_r;
20452
20471
  }
20453
20472
 
20454
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
20473
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
20455
20474
  *
20456
20475
  *
20457
20476
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20462,7 +20481,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20462
20481
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
20463
20482
  npy_timedelta __pyx_r;
20464
20483
 
20465
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
20484
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
20466
20485
  * returns the int64 value underlying scalar numpy timedelta64 object
20467
20486
  * """
20468
20487
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20472,7 +20491,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20472
20491
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
20473
20492
  goto __pyx_L0;
20474
20493
 
20475
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
20494
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
20476
20495
  *
20477
20496
  *
20478
20497
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20485,7 +20504,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20485
20504
  return __pyx_r;
20486
20505
  }
20487
20506
 
20488
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
20507
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
20489
20508
  *
20490
20509
  *
20491
20510
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20496,7 +20515,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20496
20515
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
20497
20516
  NPY_DATETIMEUNIT __pyx_r;
20498
20517
 
20499
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
20518
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
20500
20519
  * returns the unit part of the dtype for a numpy datetime64 object.
20501
20520
  * """
20502
20521
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -20504,7 +20523,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
20504
20523
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
20505
20524
  goto __pyx_L0;
20506
20525
 
20507
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
20526
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
20508
20527
  *
20509
20528
  *
20510
20529
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -25486,10 +25505,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
25486
25505
  Py_ssize_t __pyx_v_itemsize;
25487
25506
  int __pyx_v_dtype_signed;
25488
25507
  Py_UCS4 __pyx_v_kind;
25489
- int __pyx_v____pyx_uint8_is_signed;
25490
- int __pyx_v____pyx_uint16_is_signed;
25491
- int __pyx_v____pyx_uint32_is_signed;
25492
- int __pyx_v____pyx_uint64_is_signed;
25508
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
25509
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
25510
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
25511
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
25493
25512
  PyObject *__pyx_v_arg = NULL;
25494
25513
  PyObject *__pyx_v_dtype = NULL;
25495
25514
  PyObject *__pyx_v_arg_base = NULL;
@@ -25561,10 +25580,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
25561
25580
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
25562
25581
  __pyx_t_1 = 0;
25563
25582
  __pyx_v_itemsize = -1L;
25564
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint8)-1L) > 0));
25565
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint16)-1L) > 0));
25566
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint32)-1L) > 0));
25567
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint64)-1L) > 0));
25583
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint8)-1L) > 0));
25584
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint16)-1L) > 0));
25585
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint32)-1L) > 0));
25586
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint64)-1L) > 0));
25568
25587
  if (unlikely(__pyx_v_args == Py_None)) {
25569
25588
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
25570
25589
  __PYX_ERR(0, 479, __pyx_L1_error)
@@ -25706,7 +25725,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
25706
25725
  __pyx_t_2 = __pyx_t_4;
25707
25726
  goto __pyx_L16_bool_binop_done;
25708
25727
  }
25709
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
25728
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
25710
25729
  __pyx_t_2 = __pyx_t_4;
25711
25730
  __pyx_L16_bool_binop_done:;
25712
25731
  if (__pyx_t_2) {
@@ -25729,7 +25748,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
25729
25748
  __pyx_t_2 = __pyx_t_4;
25730
25749
  goto __pyx_L20_bool_binop_done;
25731
25750
  }
25732
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
25751
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
25733
25752
  __pyx_t_2 = __pyx_t_4;
25734
25753
  __pyx_L20_bool_binop_done:;
25735
25754
  if (__pyx_t_2) {
@@ -25752,7 +25771,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
25752
25771
  __pyx_t_2 = __pyx_t_4;
25753
25772
  goto __pyx_L24_bool_binop_done;
25754
25773
  }
25755
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
25774
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
25756
25775
  __pyx_t_2 = __pyx_t_4;
25757
25776
  __pyx_L24_bool_binop_done:;
25758
25777
  if (__pyx_t_2) {
@@ -25775,7 +25794,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
25775
25794
  __pyx_t_2 = __pyx_t_4;
25776
25795
  goto __pyx_L28_bool_binop_done;
25777
25796
  }
25778
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
25797
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
25779
25798
  __pyx_t_2 = __pyx_t_4;
25780
25799
  __pyx_L28_bool_binop_done:;
25781
25800
  if (__pyx_t_2) {
@@ -26136,7 +26155,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
26136
26155
  __pyx_t_2 = __pyx_t_4;
26137
26156
  goto __pyx_L75_bool_binop_done;
26138
26157
  }
26139
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
26158
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
26140
26159
  __pyx_t_2 = __pyx_t_4;
26141
26160
  __pyx_L75_bool_binop_done:;
26142
26161
  if (__pyx_t_2) {
@@ -26159,7 +26178,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
26159
26178
  __pyx_t_2 = __pyx_t_4;
26160
26179
  goto __pyx_L79_bool_binop_done;
26161
26180
  }
26162
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
26181
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
26163
26182
  __pyx_t_2 = __pyx_t_4;
26164
26183
  __pyx_L79_bool_binop_done:;
26165
26184
  if (__pyx_t_2) {
@@ -26182,7 +26201,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
26182
26201
  __pyx_t_2 = __pyx_t_4;
26183
26202
  goto __pyx_L83_bool_binop_done;
26184
26203
  }
26185
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
26204
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
26186
26205
  __pyx_t_2 = __pyx_t_4;
26187
26206
  __pyx_L83_bool_binop_done:;
26188
26207
  if (__pyx_t_2) {
@@ -26205,7 +26224,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_4_fill_align_t
26205
26224
  __pyx_t_2 = __pyx_t_4;
26206
26225
  goto __pyx_L87_bool_binop_done;
26207
26226
  }
26208
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
26227
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
26209
26228
  __pyx_t_2 = __pyx_t_4;
26210
26229
  __pyx_L87_bool_binop_done:;
26211
26230
  if (__pyx_t_2) {
@@ -51318,10 +51337,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
51318
51337
  Py_ssize_t __pyx_v_itemsize;
51319
51338
  int __pyx_v_dtype_signed;
51320
51339
  Py_UCS4 __pyx_v_kind;
51321
- int __pyx_v____pyx_uint8_is_signed;
51322
- int __pyx_v____pyx_uint16_is_signed;
51323
- int __pyx_v____pyx_uint32_is_signed;
51324
- int __pyx_v____pyx_uint64_is_signed;
51340
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
51341
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
51342
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
51343
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
51325
51344
  PyObject *__pyx_v_arg = NULL;
51326
51345
  PyObject *__pyx_v_dtype = NULL;
51327
51346
  PyObject *__pyx_v_arg_base = NULL;
@@ -51393,10 +51412,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
51393
51412
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
51394
51413
  __pyx_t_1 = 0;
51395
51414
  __pyx_v_itemsize = -1L;
51396
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint8)-1L) > 0));
51397
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint16)-1L) > 0));
51398
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint32)-1L) > 0));
51399
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint64)-1L) > 0));
51415
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint8)-1L) > 0));
51416
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint16)-1L) > 0));
51417
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint32)-1L) > 0));
51418
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_11localgapped_uint64)-1L) > 0));
51400
51419
  if (unlikely(__pyx_v_args == Py_None)) {
51401
51420
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
51402
51421
  __PYX_ERR(0, 647, __pyx_L1_error)
@@ -51538,7 +51557,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
51538
51557
  __pyx_t_2 = __pyx_t_4;
51539
51558
  goto __pyx_L16_bool_binop_done;
51540
51559
  }
51541
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
51560
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
51542
51561
  __pyx_t_2 = __pyx_t_4;
51543
51562
  __pyx_L16_bool_binop_done:;
51544
51563
  if (__pyx_t_2) {
@@ -51561,7 +51580,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
51561
51580
  __pyx_t_2 = __pyx_t_4;
51562
51581
  goto __pyx_L20_bool_binop_done;
51563
51582
  }
51564
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
51583
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
51565
51584
  __pyx_t_2 = __pyx_t_4;
51566
51585
  __pyx_L20_bool_binop_done:;
51567
51586
  if (__pyx_t_2) {
@@ -51584,7 +51603,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
51584
51603
  __pyx_t_2 = __pyx_t_4;
51585
51604
  goto __pyx_L24_bool_binop_done;
51586
51605
  }
51587
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
51606
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
51588
51607
  __pyx_t_2 = __pyx_t_4;
51589
51608
  __pyx_L24_bool_binop_done:;
51590
51609
  if (__pyx_t_2) {
@@ -51607,7 +51626,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
51607
51626
  __pyx_t_2 = __pyx_t_4;
51608
51627
  goto __pyx_L28_bool_binop_done;
51609
51628
  }
51610
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
51629
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
51611
51630
  __pyx_t_2 = __pyx_t_4;
51612
51631
  __pyx_L28_bool_binop_done:;
51613
51632
  if (__pyx_t_2) {
@@ -51968,7 +51987,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
51968
51987
  __pyx_t_2 = __pyx_t_4;
51969
51988
  goto __pyx_L75_bool_binop_done;
51970
51989
  }
51971
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
51990
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
51972
51991
  __pyx_t_2 = __pyx_t_4;
51973
51992
  __pyx_L75_bool_binop_done:;
51974
51993
  if (__pyx_t_2) {
@@ -51991,7 +52010,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
51991
52010
  __pyx_t_2 = __pyx_t_4;
51992
52011
  goto __pyx_L79_bool_binop_done;
51993
52012
  }
51994
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
52013
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
51995
52014
  __pyx_t_2 = __pyx_t_4;
51996
52015
  __pyx_L79_bool_binop_done:;
51997
52016
  if (__pyx_t_2) {
@@ -52014,7 +52033,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
52014
52033
  __pyx_t_2 = __pyx_t_4;
52015
52034
  goto __pyx_L83_bool_binop_done;
52016
52035
  }
52017
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
52036
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
52018
52037
  __pyx_t_2 = __pyx_t_4;
52019
52038
  __pyx_L83_bool_binop_done:;
52020
52039
  if (__pyx_t_2) {
@@ -52037,7 +52056,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_11localgapped_6_fill_align_t
52037
52056
  __pyx_t_2 = __pyx_t_4;
52038
52057
  goto __pyx_L87_bool_binop_done;
52039
52058
  }
52040
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
52059
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
52041
52060
  __pyx_t_2 = __pyx_t_4;
52042
52061
  __pyx_L87_bool_binop_done:;
52043
52062
  if (__pyx_t_2) {
@@ -92294,7 +92313,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
92294
92313
  __Pyx_GOTREF(__pyx_tuple__8);
92295
92314
  __Pyx_GIVEREF(__pyx_tuple__8);
92296
92315
 
92297
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
92316
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
92298
92317
  * __pyx_import_array()
92299
92318
  * except Exception:
92300
92319
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -92305,7 +92324,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
92305
92324
  __Pyx_GOTREF(__pyx_tuple__9);
92306
92325
  __Pyx_GIVEREF(__pyx_tuple__9);
92307
92326
 
92308
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-h96wp5_b/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
92327
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-egmwxkzt/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
92309
92328
  * _import_umath()
92310
92329
  * except Exception:
92311
92330
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -92902,33 +92921,33 @@ static int __Pyx_modinit_type_import_code(void) {
92902
92921
  /*--- Type import code ---*/
92903
92922
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
92904
92923
  __Pyx_GOTREF(__pyx_t_1);
92905
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
92924
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
92906
92925
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
92907
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
92926
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
92908
92927
  #elif CYTHON_COMPILING_IN_LIMITED_API
92909
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
92928
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
92910
92929
  #else
92911
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
92930
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
92912
92931
  #endif
92913
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
92932
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
92914
92933
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
92915
92934
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
92916
92935
  __Pyx_GOTREF(__pyx_t_1);
92917
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
92918
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
92919
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
92920
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
92921
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 812, __pyx_L1_error)
92922
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 814, __pyx_L1_error)
92923
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 816, __pyx_L1_error)
92924
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 818, __pyx_L1_error)
92925
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 820, __pyx_L1_error)
92926
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 822, __pyx_L1_error)
92927
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 824, __pyx_L1_error)
92928
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 826, __pyx_L1_error)
92929
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 828, __pyx_L1_error)
92930
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 830, __pyx_L1_error)
92931
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 868, __pyx_L1_error)
92936
+ __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
92937
+ __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
92938
+ __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
92939
+ __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
92940
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 812, __pyx_L1_error)
92941
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 814, __pyx_L1_error)
92942
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 816, __pyx_L1_error)
92943
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 818, __pyx_L1_error)
92944
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 820, __pyx_L1_error)
92945
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 822, __pyx_L1_error)
92946
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 824, __pyx_L1_error)
92947
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 826, __pyx_L1_error)
92948
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 828, __pyx_L1_error)
92949
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 830, __pyx_L1_error)
92950
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 868, __pyx_L1_error)
92932
92951
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
92933
92952
  __Pyx_RefNannyFinishContext();
92934
92953
  return 0;
@@ -92956,9 +92975,9 @@ static int __Pyx_modinit_function_import_code(void) {
92956
92975
  /*--- Function import code ---*/
92957
92976
  __pyx_t_1 = PyImport_ImportModule("biotite.sequence.align.tracetable"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
92958
92977
  __Pyx_GOTREF(__pyx_t_1);
92959
- if (__Pyx_ImportFunction_3_0_7(__pyx_t_1, "get_trace_linear", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_get_trace_linear, "__pyx_t_5numpy_uint8_t (__pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
92960
- if (__Pyx_ImportFunction_3_0_7(__pyx_t_1, "get_trace_affine", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_get_trace_affine, "__pyx_t_5numpy_uint8_t (__pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t *, __pyx_t_5numpy_int32_t *, __pyx_t_5numpy_int32_t *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
92961
- if (__Pyx_ImportFunction_3_0_7(__pyx_t_1, "follow_trace", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_follow_trace, "int (__Pyx_memviewslice, int, int, int, int, __Pyx_memviewslice, PyObject *, int, int *, int, int, int)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
92978
+ if (__Pyx_ImportFunction_3_0_10(__pyx_t_1, "get_trace_linear", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_get_trace_linear, "__pyx_t_5numpy_uint8_t (__pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
92979
+ if (__Pyx_ImportFunction_3_0_10(__pyx_t_1, "get_trace_affine", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_get_trace_affine, "__pyx_t_5numpy_uint8_t (__pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t, __pyx_t_5numpy_int32_t *, __pyx_t_5numpy_int32_t *, __pyx_t_5numpy_int32_t *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
92980
+ if (__Pyx_ImportFunction_3_0_10(__pyx_t_1, "follow_trace", (void (**)(void))&__pyx_f_7biotite_8sequence_5align_10tracetable_follow_trace, "int (__Pyx_memviewslice, int, int, int, int, __Pyx_memviewslice, PyObject *, int, int *, int, int, int)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
92962
92981
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
92963
92982
  __Pyx_RefNannyFinishContext();
92964
92983
  return 0;
@@ -94536,11 +94555,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
94536
94555
  {
94537
94556
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
94538
94557
  if (unlikely(eq != 0)) {
94539
- if (unlikely(eq < 0)) return NULL; // error
94558
+ if (unlikely(eq < 0)) return NULL;
94540
94559
  return kwvalues[i];
94541
94560
  }
94542
94561
  }
94543
- return NULL; // not found (no exception set)
94562
+ return NULL;
94544
94563
  }
94545
94564
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
94546
94565
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -94653,7 +94672,7 @@ static int __Pyx_ParseOptionalKeywords(
94653
94672
  if (*name) {
94654
94673
  values[name-argnames] = value;
94655
94674
  #if CYTHON_AVOID_BORROWED_REFS
94656
- Py_INCREF(value); // transfer ownership of value to values
94675
+ Py_INCREF(value);
94657
94676
  Py_DECREF(key);
94658
94677
  #endif
94659
94678
  key = NULL;
@@ -94672,7 +94691,7 @@ static int __Pyx_ParseOptionalKeywords(
94672
94691
  && _PyString_Eq(**name, key)) {
94673
94692
  values[name-argnames] = value;
94674
94693
  #if CYTHON_AVOID_BORROWED_REFS
94675
- value = NULL; // ownership transferred to values
94694
+ value = NULL;
94676
94695
  #endif
94677
94696
  break;
94678
94697
  }
@@ -94704,7 +94723,7 @@ static int __Pyx_ParseOptionalKeywords(
94704
94723
  if (cmp == 0) {
94705
94724
  values[name-argnames] = value;
94706
94725
  #if CYTHON_AVOID_BORROWED_REFS
94707
- value = NULL; // ownership transferred to values
94726
+ value = NULL;
94708
94727
  #endif
94709
94728
  break;
94710
94729
  }
@@ -96596,9 +96615,10 @@ static CYTHON_INLINE int __Pyx_HasAttr(PyObject *o, PyObject *n) {
96596
96615
 
96597
96616
  /* IterFinish */
96598
96617
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
96618
+ PyObject* exc_type;
96599
96619
  __Pyx_PyThreadState_declare
96600
96620
  __Pyx_PyThreadState_assign
96601
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
96621
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
96602
96622
  if (unlikely(exc_type)) {
96603
96623
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
96604
96624
  return -1;
@@ -97668,9 +97688,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
97668
97688
 
97669
97689
  /* UnpackUnboundCMethod */
97670
97690
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
97691
+ PyObject *result;
97671
97692
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
97672
97693
  if (unlikely(!selfless_args)) return NULL;
97673
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
97694
+ result = PyObject_Call(method, selfless_args, kwargs);
97674
97695
  Py_DECREF(selfless_args);
97675
97696
  return result;
97676
97697
  }
@@ -98387,10 +98408,10 @@ __PYX_GOOD:
98387
98408
  #endif
98388
98409
 
98389
98410
  /* TypeImport */
98390
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
98391
- #define __PYX_HAVE_RT_ImportType_3_0_7
98392
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
98393
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
98411
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
98412
+ #define __PYX_HAVE_RT_ImportType_3_0_10
98413
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
98414
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
98394
98415
  {
98395
98416
  PyObject *result = 0;
98396
98417
  char warning[200];
@@ -98444,7 +98465,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
98444
98465
  module_name, class_name, size, basicsize+itemsize);
98445
98466
  goto bad;
98446
98467
  }
98447
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
98468
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
98448
98469
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
98449
98470
  PyErr_Format(PyExc_ValueError,
98450
98471
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -98452,7 +98473,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
98452
98473
  module_name, class_name, size, basicsize, basicsize+itemsize);
98453
98474
  goto bad;
98454
98475
  }
98455
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
98476
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
98456
98477
  PyOS_snprintf(warning, sizeof(warning),
98457
98478
  "%s.%s size changed, may indicate binary incompatibility. "
98458
98479
  "Expected %zd from C header, got %zd from PyObject",
@@ -99452,7 +99473,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
99452
99473
  default:
99453
99474
  return NULL;
99454
99475
  }
99455
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
99476
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
99456
99477
  }
99457
99478
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
99458
99479
  {
@@ -100269,7 +100290,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
100269
100290
  #else
100270
100291
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
100271
100292
  #endif
100272
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
100293
+ Py_XDECREF(py_funcname);
100273
100294
  return py_code;
100274
100295
  bad:
100275
100296
  Py_XDECREF(py_funcname);
@@ -104027,9 +104048,9 @@ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt
104027
104048
  }
104028
104049
 
104029
104050
  /* FunctionImport */
104030
- #ifndef __PYX_HAVE_RT_ImportFunction_3_0_7
104031
- #define __PYX_HAVE_RT_ImportFunction_3_0_7
104032
- static int __Pyx_ImportFunction_3_0_7(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
104051
+ #ifndef __PYX_HAVE_RT_ImportFunction_3_0_10
104052
+ #define __PYX_HAVE_RT_ImportFunction_3_0_10
104053
+ static int __Pyx_ImportFunction_3_0_10(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
104033
104054
  PyObject *d = 0;
104034
104055
  PyObject *cobj = 0;
104035
104056
  union {