biotite 0.39.0__cp311-cp311-win_amd64.whl → 0.41.0__cp311-cp311-win_amd64.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.cp311-win_amd64.pyd +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +243 -222
  11. biotite/sequence/align/kmeralphabet.cp311-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmersimilarity.c +215 -196
  13. biotite/sequence/align/kmersimilarity.cp311-win_amd64.pyd +0 -0
  14. biotite/sequence/align/kmertable.cp311-win_amd64.pyd +0 -0
  15. biotite/sequence/align/kmertable.cpp +233 -205
  16. biotite/sequence/align/localgapped.c +258 -237
  17. biotite/sequence/align/localgapped.cp311-win_amd64.pyd +0 -0
  18. biotite/sequence/align/localungapped.c +235 -214
  19. biotite/sequence/align/localungapped.cp311-win_amd64.pyd +0 -0
  20. biotite/sequence/align/multiple.c +255 -234
  21. biotite/sequence/align/multiple.cp311-win_amd64.pyd +0 -0
  22. biotite/sequence/align/pairwise.c +274 -253
  23. biotite/sequence/align/pairwise.cp311-win_amd64.pyd +0 -0
  24. biotite/sequence/align/permutation.c +215 -196
  25. biotite/sequence/align/permutation.cp311-win_amd64.pyd +0 -0
  26. biotite/sequence/align/selector.c +217 -197
  27. biotite/sequence/align/selector.cp311-win_amd64.pyd +0 -0
  28. biotite/sequence/align/tracetable.c +215 -195
  29. biotite/sequence/align/tracetable.cp311-win_amd64.pyd +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +235 -214
  32. biotite/sequence/codec.cp311-win_amd64.pyd +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +215 -196
  35. biotite/sequence/phylo/nj.cp311-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.c +227 -202
  37. biotite/sequence/phylo/tree.cp311-win_amd64.pyd +0 -0
  38. biotite/sequence/phylo/upgma.c +215 -196
  39. biotite/sequence/phylo/upgma.cp311-win_amd64.pyd +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.cp311-win_amd64.pyd +0 -0
  44. biotite/structure/celllist.c +217 -197
  45. biotite/structure/celllist.cp311-win_amd64.pyd +0 -0
  46. biotite/structure/charges.c +1052 -1101
  47. biotite/structure/charges.cp311-win_amd64.pyd +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.cp311-win_amd64.pyd +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +217 -197
  72. biotite/structure/io/mmtf/convertfile.cp311-win_amd64.pyd +0 -0
  73. biotite/structure/io/mmtf/decode.c +225 -204
  74. biotite/structure/io/mmtf/decode.cp311-win_amd64.pyd +0 -0
  75. biotite/structure/io/mmtf/encode.c +215 -196
  76. biotite/structure/io/mmtf/encode.cp311-win_amd64.pyd +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.cp311-win_amd64.pyd +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.cp311-win_amd64.pyd +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.cp311-win_amd64.pyd +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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":734
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":741
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":746
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":756
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":759
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":766
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1837
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1846
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":770
1941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1950
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":772
1959
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1968
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
1951
1969
  * ctypedef npy_clongdouble clongdouble_t
1952
1970
  *
1953
1971
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2312,8 +2330,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2312
2330
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2313
2331
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2314
2332
  #else
2315
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2316
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2333
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2334
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2317
2335
  #endif
2318
2336
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2319
2337
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2329,8 +2347,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2329
2347
  #else
2330
2348
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2331
2349
  #endif
2332
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2333
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2350
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2351
+ to have the same reference counting */
2352
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2334
2353
  #else
2335
2354
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2336
2355
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2966,22 +2985,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2966
2985
  #endif
2967
2986
 
2968
2987
  /* TypeImport.proto */
2969
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2970
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2988
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2989
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2971
2990
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2972
2991
  #include <stdalign.h>
2973
2992
  #endif
2974
2993
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2975
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2994
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2976
2995
  #else
2977
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2996
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2978
2997
  #endif
2979
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2980
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2981
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2982
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2998
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2999
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
3000
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
3001
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2983
3002
  };
2984
- 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);
3003
+ 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);
2985
3004
  #endif
2986
3005
 
2987
3006
  /* FetchSharedCythonModule.proto */
@@ -3074,7 +3093,7 @@ typedef struct {
3074
3093
  #endif
3075
3094
  void *defaults;
3076
3095
  int defaults_pyobjects;
3077
- size_t defaults_size; // used by FusedFunction for copying defaults
3096
+ size_t defaults_size;
3078
3097
  int flags;
3079
3098
  PyObject *defaults_tuple;
3080
3099
  PyObject *defaults_kwdict;
@@ -3426,7 +3445,7 @@ static unsigned long __Pyx_get_runtime_version(void);
3426
3445
  static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt_version, int allow_newer);
3427
3446
 
3428
3447
  /* FunctionImport.proto */
3429
- static int __Pyx_ImportFunction_3_0_7(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
3448
+ static int __Pyx_ImportFunction_3_0_10(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
3430
3449
 
3431
3450
  /* InitStrings.proto */
3432
3451
  static int __Pyx_InitStrings(__Pyx_StringTabEntry *t);
@@ -19087,7 +19106,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19087
19106
  return __pyx_r;
19088
19107
  }
19089
19108
 
19090
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19109
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19091
19110
  *
19092
19111
  * @property
19093
19112
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19098,7 +19117,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
19098
19117
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
19099
19118
  PyObject *__pyx_r;
19100
19119
 
19101
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
19120
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
19102
19121
  * """Returns a borrowed reference to the object owning the data/memory.
19103
19122
  * """
19104
19123
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -19108,7 +19127,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19108
19127
  __pyx_r = PyArray_BASE(__pyx_v_self);
19109
19128
  goto __pyx_L0;
19110
19129
 
19111
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19130
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
19112
19131
  *
19113
19132
  * @property
19114
19133
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -19121,7 +19140,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
19121
19140
  return __pyx_r;
19122
19141
  }
19123
19142
 
19124
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19143
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19125
19144
  *
19126
19145
  * @property
19127
19146
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19135,7 +19154,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19135
19154
  PyArray_Descr *__pyx_t_1;
19136
19155
  __Pyx_RefNannySetupContext("descr", 1);
19137
19156
 
19138
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
19157
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
19139
19158
  * """Returns an owned reference to the dtype of the array.
19140
19159
  * """
19141
19160
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -19148,7 +19167,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19148
19167
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
19149
19168
  goto __pyx_L0;
19150
19169
 
19151
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19170
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
19152
19171
  *
19153
19172
  * @property
19154
19173
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19163,7 +19182,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19163
19182
  return __pyx_r;
19164
19183
  }
19165
19184
 
19166
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19185
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19167
19186
  *
19168
19187
  * @property
19169
19188
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19174,7 +19193,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19174
19193
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
19175
19194
  int __pyx_r;
19176
19195
 
19177
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
19196
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
19178
19197
  * """Returns the number of dimensions in the array.
19179
19198
  * """
19180
19199
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -19184,7 +19203,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19184
19203
  __pyx_r = PyArray_NDIM(__pyx_v_self);
19185
19204
  goto __pyx_L0;
19186
19205
 
19187
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19206
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
19188
19207
  *
19189
19208
  * @property
19190
19209
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19197,7 +19216,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19197
19216
  return __pyx_r;
19198
19217
  }
19199
19218
 
19200
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19219
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19201
19220
  *
19202
19221
  * @property
19203
19222
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19208,7 +19227,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19208
19227
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
19209
19228
  npy_intp *__pyx_r;
19210
19229
 
19211
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
19230
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
19212
19231
  * Can return NULL for 0-dimensional arrays.
19213
19232
  * """
19214
19233
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -19218,7 +19237,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19218
19237
  __pyx_r = PyArray_DIMS(__pyx_v_self);
19219
19238
  goto __pyx_L0;
19220
19239
 
19221
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19240
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
19222
19241
  *
19223
19242
  * @property
19224
19243
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19231,7 +19250,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19231
19250
  return __pyx_r;
19232
19251
  }
19233
19252
 
19234
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19253
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19235
19254
  *
19236
19255
  * @property
19237
19256
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19242,7 +19261,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19242
19261
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
19243
19262
  npy_intp *__pyx_r;
19244
19263
 
19245
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
19264
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
19246
19265
  * The number of elements matches the number of dimensions of the array (ndim).
19247
19266
  * """
19248
19267
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -19252,7 +19271,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19252
19271
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
19253
19272
  goto __pyx_L0;
19254
19273
 
19255
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19274
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
19256
19275
  *
19257
19276
  * @property
19258
19277
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19265,7 +19284,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19265
19284
  return __pyx_r;
19266
19285
  }
19267
19286
 
19268
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19287
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19269
19288
  *
19270
19289
  * @property
19271
19290
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19276,7 +19295,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19276
19295
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
19277
19296
  npy_intp __pyx_r;
19278
19297
 
19279
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
19298
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
19280
19299
  * """Returns the total size (in number of elements) of the array.
19281
19300
  * """
19282
19301
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -19286,7 +19305,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19286
19305
  __pyx_r = PyArray_SIZE(__pyx_v_self);
19287
19306
  goto __pyx_L0;
19288
19307
 
19289
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19308
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
19290
19309
  *
19291
19310
  * @property
19292
19311
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19299,7 +19318,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19299
19318
  return __pyx_r;
19300
19319
  }
19301
19320
 
19302
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19321
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19303
19322
  *
19304
19323
  * @property
19305
19324
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19310,7 +19329,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19310
19329
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
19311
19330
  char *__pyx_r;
19312
19331
 
19313
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19332
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
19314
19333
  * of `PyArray_DATA()` instead, which returns a 'void*'.
19315
19334
  * """
19316
19335
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -19320,7 +19339,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19320
19339
  __pyx_r = PyArray_BYTES(__pyx_v_self);
19321
19340
  goto __pyx_L0;
19322
19341
 
19323
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19342
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
19324
19343
  *
19325
19344
  * @property
19326
19345
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19333,7 +19352,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19333
19352
  return __pyx_r;
19334
19353
  }
19335
19354
 
19336
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19355
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19337
19356
  * ctypedef npy_cdouble complex_t
19338
19357
  *
19339
19358
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19350,7 +19369,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19350
19369
  int __pyx_clineno = 0;
19351
19370
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
19352
19371
 
19353
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19372
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
19354
19373
  *
19355
19374
  * cdef inline object PyArray_MultiIterNew1(a):
19356
19375
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -19364,7 +19383,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19364
19383
  __pyx_t_1 = 0;
19365
19384
  goto __pyx_L0;
19366
19385
 
19367
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19386
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
19368
19387
  * ctypedef npy_cdouble complex_t
19369
19388
  *
19370
19389
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19383,7 +19402,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19383
19402
  return __pyx_r;
19384
19403
  }
19385
19404
 
19386
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19405
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19387
19406
  * return PyArray_MultiIterNew(1, <void*>a)
19388
19407
  *
19389
19408
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19400,7 +19419,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19400
19419
  int __pyx_clineno = 0;
19401
19420
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
19402
19421
 
19403
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19422
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
19404
19423
  *
19405
19424
  * cdef inline object PyArray_MultiIterNew2(a, b):
19406
19425
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -19414,7 +19433,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19414
19433
  __pyx_t_1 = 0;
19415
19434
  goto __pyx_L0;
19416
19435
 
19417
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19436
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
19418
19437
  * return PyArray_MultiIterNew(1, <void*>a)
19419
19438
  *
19420
19439
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19433,7 +19452,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19433
19452
  return __pyx_r;
19434
19453
  }
19435
19454
 
19436
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19455
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19437
19456
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19438
19457
  *
19439
19458
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19450,7 +19469,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19450
19469
  int __pyx_clineno = 0;
19451
19470
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
19452
19471
 
19453
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19472
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
19454
19473
  *
19455
19474
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
19456
19475
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19464,7 +19483,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19464
19483
  __pyx_t_1 = 0;
19465
19484
  goto __pyx_L0;
19466
19485
 
19467
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19486
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
19468
19487
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19469
19488
  *
19470
19489
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19483,7 +19502,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19483
19502
  return __pyx_r;
19484
19503
  }
19485
19504
 
19486
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19505
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19487
19506
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19488
19507
  *
19489
19508
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19500,7 +19519,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19500
19519
  int __pyx_clineno = 0;
19501
19520
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19502
19521
 
19503
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19522
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
19504
19523
  *
19505
19524
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19506
19525
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19514,7 +19533,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19514
19533
  __pyx_t_1 = 0;
19515
19534
  goto __pyx_L0;
19516
19535
 
19517
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19536
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
19518
19537
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19519
19538
  *
19520
19539
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19533,7 +19552,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19533
19552
  return __pyx_r;
19534
19553
  }
19535
19554
 
19536
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19555
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19537
19556
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19538
19557
  *
19539
19558
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19550,7 +19569,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19550
19569
  int __pyx_clineno = 0;
19551
19570
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19552
19571
 
19553
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19572
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
19554
19573
  *
19555
19574
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19556
19575
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19564,7 +19583,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19564
19583
  __pyx_t_1 = 0;
19565
19584
  goto __pyx_L0;
19566
19585
 
19567
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19586
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
19568
19587
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19569
19588
  *
19570
19589
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19583,7 +19602,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19583
19602
  return __pyx_r;
19584
19603
  }
19585
19604
 
19586
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19605
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19587
19606
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19588
19607
  *
19589
19608
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19597,7 +19616,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19597
19616
  int __pyx_t_1;
19598
19617
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19599
19618
 
19600
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19619
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19601
19620
  *
19602
19621
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19603
19622
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19607,7 +19626,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19607
19626
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19608
19627
  if (__pyx_t_1) {
19609
19628
 
19610
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
19629
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":793
19611
19630
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19612
19631
  * if PyDataType_HASSUBARRAY(d):
19613
19632
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19619,7 +19638,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19619
19638
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19620
19639
  goto __pyx_L0;
19621
19640
 
19622
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19641
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
19623
19642
  *
19624
19643
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19625
19644
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19628,7 +19647,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19628
19647
  */
19629
19648
  }
19630
19649
 
19631
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
19650
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":795
19632
19651
  * return <tuple>d.subarray.shape
19633
19652
  * else:
19634
19653
  * return () # <<<<<<<<<<<<<<
@@ -19642,7 +19661,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19642
19661
  goto __pyx_L0;
19643
19662
  }
19644
19663
 
19645
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19664
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":791
19646
19665
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19647
19666
  *
19648
19667
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19657,7 +19676,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19657
19676
  return __pyx_r;
19658
19677
  }
19659
19678
 
19660
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19679
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19661
19680
  * int _import_umath() except -1
19662
19681
  *
19663
19682
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19667,7 +19686,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19667
19686
 
19668
19687
  static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
19669
19688
 
19670
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
19689
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":971
19671
19690
  *
19672
19691
  * cdef inline void set_array_base(ndarray arr, object base):
19673
19692
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19676,7 +19695,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19676
19695
  */
19677
19696
  Py_INCREF(__pyx_v_base);
19678
19697
 
19679
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19698
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
19680
19699
  * cdef inline void set_array_base(ndarray arr, object base):
19681
19700
  * Py_INCREF(base) # important to do this before stealing the reference below!
19682
19701
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19685,7 +19704,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19685
19704
  */
19686
19705
  (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
19687
19706
 
19688
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19707
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
19689
19708
  * int _import_umath() except -1
19690
19709
  *
19691
19710
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19696,7 +19715,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19696
19715
  /* function exit code */
19697
19716
  }
19698
19717
 
19699
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19718
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19700
19719
  * PyArray_SetBaseObject(arr, base)
19701
19720
  *
19702
19721
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19711,7 +19730,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19711
19730
  int __pyx_t_1;
19712
19731
  __Pyx_RefNannySetupContext("get_array_base", 1);
19713
19732
 
19714
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19733
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
19715
19734
  *
19716
19735
  * cdef inline object get_array_base(ndarray arr):
19717
19736
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19720,7 +19739,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19720
19739
  */
19721
19740
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19722
19741
 
19723
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19742
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19724
19743
  * cdef inline object get_array_base(ndarray arr):
19725
19744
  * base = PyArray_BASE(arr)
19726
19745
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19730,7 +19749,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19730
19749
  __pyx_t_1 = (__pyx_v_base == NULL);
19731
19750
  if (__pyx_t_1) {
19732
19751
 
19733
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
19752
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":977
19734
19753
  * base = PyArray_BASE(arr)
19735
19754
  * if base is NULL:
19736
19755
  * return None # <<<<<<<<<<<<<<
@@ -19741,7 +19760,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19741
19760
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19742
19761
  goto __pyx_L0;
19743
19762
 
19744
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19763
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
19745
19764
  * cdef inline object get_array_base(ndarray arr):
19746
19765
  * base = PyArray_BASE(arr)
19747
19766
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19750,7 +19769,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19750
19769
  */
19751
19770
  }
19752
19771
 
19753
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
19772
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":978
19754
19773
  * if base is NULL:
19755
19774
  * return None
19756
19775
  * return <object>base # <<<<<<<<<<<<<<
@@ -19762,7 +19781,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19762
19781
  __pyx_r = ((PyObject *)__pyx_v_base);
19763
19782
  goto __pyx_L0;
19764
19783
 
19765
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19784
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
19766
19785
  * PyArray_SetBaseObject(arr, base)
19767
19786
  *
19768
19787
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19777,7 +19796,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19777
19796
  return __pyx_r;
19778
19797
  }
19779
19798
 
19780
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19799
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19781
19800
  * # Versions of the import_* functions which are more suitable for
19782
19801
  * # Cython code.
19783
19802
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19801,7 +19820,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19801
19820
  int __pyx_clineno = 0;
19802
19821
  __Pyx_RefNannySetupContext("import_array", 1);
19803
19822
 
19804
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19823
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19805
19824
  * # Cython code.
19806
19825
  * cdef inline int import_array() except -1:
19807
19826
  * try: # <<<<<<<<<<<<<<
@@ -19817,7 +19836,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19817
19836
  __Pyx_XGOTREF(__pyx_t_3);
19818
19837
  /*try:*/ {
19819
19838
 
19820
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19839
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
19821
19840
  * cdef inline int import_array() except -1:
19822
19841
  * try:
19823
19842
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19826,7 +19845,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19826
19845
  */
19827
19846
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
19828
19847
 
19829
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19848
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19830
19849
  * # Cython code.
19831
19850
  * cdef inline int import_array() except -1:
19832
19851
  * try: # <<<<<<<<<<<<<<
@@ -19840,7 +19859,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19840
19859
  goto __pyx_L8_try_end;
19841
19860
  __pyx_L3_error:;
19842
19861
 
19843
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
19862
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":985
19844
19863
  * try:
19845
19864
  * __pyx_import_array()
19846
19865
  * except Exception: # <<<<<<<<<<<<<<
@@ -19855,7 +19874,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19855
19874
  __Pyx_XGOTREF(__pyx_t_6);
19856
19875
  __Pyx_XGOTREF(__pyx_t_7);
19857
19876
 
19858
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19877
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
19859
19878
  * __pyx_import_array()
19860
19879
  * except Exception:
19861
19880
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19870,7 +19889,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19870
19889
  }
19871
19890
  goto __pyx_L5_except_error;
19872
19891
 
19873
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19892
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
19874
19893
  * # Cython code.
19875
19894
  * cdef inline int import_array() except -1:
19876
19895
  * try: # <<<<<<<<<<<<<<
@@ -19886,7 +19905,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19886
19905
  __pyx_L8_try_end:;
19887
19906
  }
19888
19907
 
19889
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19908
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
19890
19909
  * # Versions of the import_* functions which are more suitable for
19891
19910
  * # Cython code.
19892
19911
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19909,7 +19928,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19909
19928
  return __pyx_r;
19910
19929
  }
19911
19930
 
19912
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19931
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
19913
19932
  * raise ImportError("numpy.core.multiarray failed to import")
19914
19933
  *
19915
19934
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19933,7 +19952,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19933
19952
  int __pyx_clineno = 0;
19934
19953
  __Pyx_RefNannySetupContext("import_umath", 1);
19935
19954
 
19936
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19955
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19937
19956
  *
19938
19957
  * cdef inline int import_umath() except -1:
19939
19958
  * try: # <<<<<<<<<<<<<<
@@ -19949,7 +19968,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19949
19968
  __Pyx_XGOTREF(__pyx_t_3);
19950
19969
  /*try:*/ {
19951
19970
 
19952
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19971
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
19953
19972
  * cdef inline int import_umath() except -1:
19954
19973
  * try:
19955
19974
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19958,7 +19977,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19958
19977
  */
19959
19978
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
19960
19979
 
19961
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19980
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
19962
19981
  *
19963
19982
  * cdef inline int import_umath() except -1:
19964
19983
  * try: # <<<<<<<<<<<<<<
@@ -19972,7 +19991,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19972
19991
  goto __pyx_L8_try_end;
19973
19992
  __pyx_L3_error:;
19974
19993
 
19975
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19994
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":991
19976
19995
  * try:
19977
19996
  * _import_umath()
19978
19997
  * except Exception: # <<<<<<<<<<<<<<
@@ -19987,7 +20006,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19987
20006
  __Pyx_XGOTREF(__pyx_t_6);
19988
20007
  __Pyx_XGOTREF(__pyx_t_7);
19989
20008
 
19990
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
20009
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
19991
20010
  * _import_umath()
19992
20011
  * except Exception:
19993
20012
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20002,7 +20021,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20002
20021
  }
20003
20022
  goto __pyx_L5_except_error;
20004
20023
 
20005
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
20024
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
20006
20025
  *
20007
20026
  * cdef inline int import_umath() except -1:
20008
20027
  * try: # <<<<<<<<<<<<<<
@@ -20018,7 +20037,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20018
20037
  __pyx_L8_try_end:;
20019
20038
  }
20020
20039
 
20021
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
20040
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
20022
20041
  * raise ImportError("numpy.core.multiarray failed to import")
20023
20042
  *
20024
20043
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -20041,7 +20060,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
20041
20060
  return __pyx_r;
20042
20061
  }
20043
20062
 
20044
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20063
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20045
20064
  * raise ImportError("numpy.core.umath failed to import")
20046
20065
  *
20047
20066
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20065,7 +20084,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20065
20084
  int __pyx_clineno = 0;
20066
20085
  __Pyx_RefNannySetupContext("import_ufunc", 1);
20067
20086
 
20068
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20087
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20069
20088
  *
20070
20089
  * cdef inline int import_ufunc() except -1:
20071
20090
  * try: # <<<<<<<<<<<<<<
@@ -20081,7 +20100,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20081
20100
  __Pyx_XGOTREF(__pyx_t_3);
20082
20101
  /*try:*/ {
20083
20102
 
20084
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
20103
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
20085
20104
  * cdef inline int import_ufunc() except -1:
20086
20105
  * try:
20087
20106
  * _import_umath() # <<<<<<<<<<<<<<
@@ -20090,7 +20109,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20090
20109
  */
20091
20110
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
20092
20111
 
20093
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20112
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20094
20113
  *
20095
20114
  * cdef inline int import_ufunc() except -1:
20096
20115
  * try: # <<<<<<<<<<<<<<
@@ -20104,7 +20123,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20104
20123
  goto __pyx_L8_try_end;
20105
20124
  __pyx_L3_error:;
20106
20125
 
20107
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
20126
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":997
20108
20127
  * try:
20109
20128
  * _import_umath()
20110
20129
  * except Exception: # <<<<<<<<<<<<<<
@@ -20119,7 +20138,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20119
20138
  __Pyx_XGOTREF(__pyx_t_6);
20120
20139
  __Pyx_XGOTREF(__pyx_t_7);
20121
20140
 
20122
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
20141
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":998
20123
20142
  * _import_umath()
20124
20143
  * except Exception:
20125
20144
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20134,7 +20153,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20134
20153
  }
20135
20154
  goto __pyx_L5_except_error;
20136
20155
 
20137
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20156
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
20138
20157
  *
20139
20158
  * cdef inline int import_ufunc() except -1:
20140
20159
  * try: # <<<<<<<<<<<<<<
@@ -20150,7 +20169,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20150
20169
  __pyx_L8_try_end:;
20151
20170
  }
20152
20171
 
20153
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20172
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
20154
20173
  * raise ImportError("numpy.core.umath failed to import")
20155
20174
  *
20156
20175
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20173,7 +20192,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20173
20192
  return __pyx_r;
20174
20193
  }
20175
20194
 
20176
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
20195
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
20177
20196
  *
20178
20197
  *
20179
20198
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20184,7 +20203,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20184
20203
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
20185
20204
  int __pyx_r;
20186
20205
 
20187
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
20206
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1013
20188
20207
  * bool
20189
20208
  * """
20190
20209
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -20194,7 +20213,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20194
20213
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
20195
20214
  goto __pyx_L0;
20196
20215
 
20197
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
20216
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1001
20198
20217
  *
20199
20218
  *
20200
20219
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20207,7 +20226,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20207
20226
  return __pyx_r;
20208
20227
  }
20209
20228
 
20210
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
20229
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
20211
20230
  *
20212
20231
  *
20213
20232
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20218,7 +20237,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20218
20237
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
20219
20238
  int __pyx_r;
20220
20239
 
20221
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
20240
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1028
20222
20241
  * bool
20223
20242
  * """
20224
20243
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -20228,7 +20247,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20228
20247
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
20229
20248
  goto __pyx_L0;
20230
20249
 
20231
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
20250
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1016
20232
20251
  *
20233
20252
  *
20234
20253
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20241,7 +20260,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20241
20260
  return __pyx_r;
20242
20261
  }
20243
20262
 
20244
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
20263
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
20245
20264
  *
20246
20265
  *
20247
20266
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20252,7 +20271,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20252
20271
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
20253
20272
  npy_datetime __pyx_r;
20254
20273
 
20255
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
20274
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1038
20256
20275
  * also needed. That can be found using `get_datetime64_unit`.
20257
20276
  * """
20258
20277
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20262,7 +20281,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20262
20281
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
20263
20282
  goto __pyx_L0;
20264
20283
 
20265
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
20284
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1031
20266
20285
  *
20267
20286
  *
20268
20287
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20275,7 +20294,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20275
20294
  return __pyx_r;
20276
20295
  }
20277
20296
 
20278
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
20297
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
20279
20298
  *
20280
20299
  *
20281
20300
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20286,7 +20305,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20286
20305
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
20287
20306
  npy_timedelta __pyx_r;
20288
20307
 
20289
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
20308
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1045
20290
20309
  * returns the int64 value underlying scalar numpy timedelta64 object
20291
20310
  * """
20292
20311
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20296,7 +20315,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20296
20315
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
20297
20316
  goto __pyx_L0;
20298
20317
 
20299
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
20318
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1041
20300
20319
  *
20301
20320
  *
20302
20321
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20309,7 +20328,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20309
20328
  return __pyx_r;
20310
20329
  }
20311
20330
 
20312
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
20331
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
20313
20332
  *
20314
20333
  *
20315
20334
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20320,7 +20339,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20320
20339
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
20321
20340
  NPY_DATETIMEUNIT __pyx_r;
20322
20341
 
20323
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
20342
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1052
20324
20343
  * returns the unit part of the dtype for a numpy datetime64 object.
20325
20344
  * """
20326
20345
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -20328,7 +20347,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
20328
20347
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
20329
20348
  goto __pyx_L0;
20330
20349
 
20331
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
20350
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1048
20332
20351
  *
20333
20352
  *
20334
20353
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -21292,10 +21311,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_2_add_scores(CYTHO
21292
21311
  Py_ssize_t __pyx_v_itemsize;
21293
21312
  int __pyx_v_dtype_signed;
21294
21313
  Py_UCS4 __pyx_v_kind;
21295
- int __pyx_v____pyx_uint8_is_signed;
21296
- int __pyx_v____pyx_uint16_is_signed;
21297
- int __pyx_v____pyx_uint32_is_signed;
21298
- int __pyx_v____pyx_uint64_is_signed;
21314
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
21315
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
21316
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
21317
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
21299
21318
  PyObject *__pyx_v_arg = NULL;
21300
21319
  PyObject *__pyx_v_dtype = NULL;
21301
21320
  PyObject *__pyx_v_arg_base = NULL;
@@ -21367,10 +21386,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_2_add_scores(CYTHO
21367
21386
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
21368
21387
  __pyx_t_1 = 0;
21369
21388
  __pyx_v_itemsize = -1L;
21370
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint8)-1L) > 0));
21371
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint16)-1L) > 0));
21372
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint32)-1L) > 0));
21373
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint64)-1L) > 0));
21389
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint8)-1L) > 0));
21390
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint16)-1L) > 0));
21391
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint32)-1L) > 0));
21392
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint64)-1L) > 0));
21374
21393
  if (unlikely(__pyx_v_args == Py_None)) {
21375
21394
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
21376
21395
  __PYX_ERR(0, 87, __pyx_L1_error)
@@ -21512,7 +21531,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_2_add_scores(CYTHO
21512
21531
  __pyx_t_2 = __pyx_t_4;
21513
21532
  goto __pyx_L16_bool_binop_done;
21514
21533
  }
21515
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
21534
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
21516
21535
  __pyx_t_2 = __pyx_t_4;
21517
21536
  __pyx_L16_bool_binop_done:;
21518
21537
  if (__pyx_t_2) {
@@ -21535,7 +21554,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_2_add_scores(CYTHO
21535
21554
  __pyx_t_2 = __pyx_t_4;
21536
21555
  goto __pyx_L20_bool_binop_done;
21537
21556
  }
21538
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
21557
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
21539
21558
  __pyx_t_2 = __pyx_t_4;
21540
21559
  __pyx_L20_bool_binop_done:;
21541
21560
  if (__pyx_t_2) {
@@ -21558,7 +21577,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_2_add_scores(CYTHO
21558
21577
  __pyx_t_2 = __pyx_t_4;
21559
21578
  goto __pyx_L24_bool_binop_done;
21560
21579
  }
21561
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
21580
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
21562
21581
  __pyx_t_2 = __pyx_t_4;
21563
21582
  __pyx_L24_bool_binop_done:;
21564
21583
  if (__pyx_t_2) {
@@ -21581,7 +21600,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_2_add_scores(CYTHO
21581
21600
  __pyx_t_2 = __pyx_t_4;
21582
21601
  goto __pyx_L28_bool_binop_done;
21583
21602
  }
21584
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
21603
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
21585
21604
  __pyx_t_2 = __pyx_t_4;
21586
21605
  __pyx_L28_bool_binop_done:;
21587
21606
  if (__pyx_t_2) {
@@ -21942,7 +21961,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_2_add_scores(CYTHO
21942
21961
  __pyx_t_2 = __pyx_t_4;
21943
21962
  goto __pyx_L75_bool_binop_done;
21944
21963
  }
21945
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
21964
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
21946
21965
  __pyx_t_2 = __pyx_t_4;
21947
21966
  __pyx_L75_bool_binop_done:;
21948
21967
  if (__pyx_t_2) {
@@ -21965,7 +21984,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_2_add_scores(CYTHO
21965
21984
  __pyx_t_2 = __pyx_t_4;
21966
21985
  goto __pyx_L79_bool_binop_done;
21967
21986
  }
21968
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
21987
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
21969
21988
  __pyx_t_2 = __pyx_t_4;
21970
21989
  __pyx_L79_bool_binop_done:;
21971
21990
  if (__pyx_t_2) {
@@ -21988,7 +22007,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_2_add_scores(CYTHO
21988
22007
  __pyx_t_2 = __pyx_t_4;
21989
22008
  goto __pyx_L83_bool_binop_done;
21990
22009
  }
21991
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
22010
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
21992
22011
  __pyx_t_2 = __pyx_t_4;
21993
22012
  __pyx_L83_bool_binop_done:;
21994
22013
  if (__pyx_t_2) {
@@ -22011,7 +22030,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_2_add_scores(CYTHO
22011
22030
  __pyx_t_2 = __pyx_t_4;
22012
22031
  goto __pyx_L87_bool_binop_done;
22013
22032
  }
22014
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
22033
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
22015
22034
  __pyx_t_2 = __pyx_t_4;
22016
22035
  __pyx_L87_bool_binop_done:;
22017
22036
  if (__pyx_t_2) {
@@ -29754,10 +29773,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_6_fill_align_table
29754
29773
  Py_ssize_t __pyx_v_itemsize;
29755
29774
  int __pyx_v_dtype_signed;
29756
29775
  Py_UCS4 __pyx_v_kind;
29757
- int __pyx_v____pyx_uint8_is_signed;
29758
- int __pyx_v____pyx_uint16_is_signed;
29759
- int __pyx_v____pyx_uint32_is_signed;
29760
- int __pyx_v____pyx_uint64_is_signed;
29776
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
29777
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
29778
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
29779
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
29761
29780
  PyObject *__pyx_v_arg = NULL;
29762
29781
  PyObject *__pyx_v_dtype = NULL;
29763
29782
  PyObject *__pyx_v_arg_base = NULL;
@@ -29829,10 +29848,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_6_fill_align_table
29829
29848
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
29830
29849
  __pyx_t_1 = 0;
29831
29850
  __pyx_v_itemsize = -1L;
29832
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint8)-1L) > 0));
29833
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint16)-1L) > 0));
29834
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint32)-1L) > 0));
29835
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint64)-1L) > 0));
29851
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint8)-1L) > 0));
29852
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint16)-1L) > 0));
29853
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint32)-1L) > 0));
29854
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint64)-1L) > 0));
29836
29855
  if (unlikely(__pyx_v_args == Py_None)) {
29837
29856
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
29838
29857
  __PYX_ERR(0, 374, __pyx_L1_error)
@@ -29974,7 +29993,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_6_fill_align_table
29974
29993
  __pyx_t_2 = __pyx_t_4;
29975
29994
  goto __pyx_L16_bool_binop_done;
29976
29995
  }
29977
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
29996
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
29978
29997
  __pyx_t_2 = __pyx_t_4;
29979
29998
  __pyx_L16_bool_binop_done:;
29980
29999
  if (__pyx_t_2) {
@@ -29997,7 +30016,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_6_fill_align_table
29997
30016
  __pyx_t_2 = __pyx_t_4;
29998
30017
  goto __pyx_L20_bool_binop_done;
29999
30018
  }
30000
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
30019
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
30001
30020
  __pyx_t_2 = __pyx_t_4;
30002
30021
  __pyx_L20_bool_binop_done:;
30003
30022
  if (__pyx_t_2) {
@@ -30020,7 +30039,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_6_fill_align_table
30020
30039
  __pyx_t_2 = __pyx_t_4;
30021
30040
  goto __pyx_L24_bool_binop_done;
30022
30041
  }
30023
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
30042
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
30024
30043
  __pyx_t_2 = __pyx_t_4;
30025
30044
  __pyx_L24_bool_binop_done:;
30026
30045
  if (__pyx_t_2) {
@@ -30043,7 +30062,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_6_fill_align_table
30043
30062
  __pyx_t_2 = __pyx_t_4;
30044
30063
  goto __pyx_L28_bool_binop_done;
30045
30064
  }
30046
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
30065
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
30047
30066
  __pyx_t_2 = __pyx_t_4;
30048
30067
  __pyx_L28_bool_binop_done:;
30049
30068
  if (__pyx_t_2) {
@@ -30404,7 +30423,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_6_fill_align_table
30404
30423
  __pyx_t_2 = __pyx_t_4;
30405
30424
  goto __pyx_L75_bool_binop_done;
30406
30425
  }
30407
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
30426
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
30408
30427
  __pyx_t_2 = __pyx_t_4;
30409
30428
  __pyx_L75_bool_binop_done:;
30410
30429
  if (__pyx_t_2) {
@@ -30427,7 +30446,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_6_fill_align_table
30427
30446
  __pyx_t_2 = __pyx_t_4;
30428
30447
  goto __pyx_L79_bool_binop_done;
30429
30448
  }
30430
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
30449
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
30431
30450
  __pyx_t_2 = __pyx_t_4;
30432
30451
  __pyx_L79_bool_binop_done:;
30433
30452
  if (__pyx_t_2) {
@@ -30450,7 +30469,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_6_fill_align_table
30450
30469
  __pyx_t_2 = __pyx_t_4;
30451
30470
  goto __pyx_L83_bool_binop_done;
30452
30471
  }
30453
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
30472
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
30454
30473
  __pyx_t_2 = __pyx_t_4;
30455
30474
  __pyx_L83_bool_binop_done:;
30456
30475
  if (__pyx_t_2) {
@@ -30473,7 +30492,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_6_fill_align_table
30473
30492
  __pyx_t_2 = __pyx_t_4;
30474
30493
  goto __pyx_L87_bool_binop_done;
30475
30494
  }
30476
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
30495
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
30477
30496
  __pyx_t_2 = __pyx_t_4;
30478
30497
  __pyx_L87_bool_binop_done:;
30479
30498
  if (__pyx_t_2) {
@@ -39698,10 +39717,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_8_fill_align_table
39698
39717
  Py_ssize_t __pyx_v_itemsize;
39699
39718
  int __pyx_v_dtype_signed;
39700
39719
  Py_UCS4 __pyx_v_kind;
39701
- int __pyx_v____pyx_uint8_is_signed;
39702
- int __pyx_v____pyx_uint16_is_signed;
39703
- int __pyx_v____pyx_uint32_is_signed;
39704
- int __pyx_v____pyx_uint64_is_signed;
39720
+ int __pyx_v___pyx_fused_dtype_uint8_is_signed;
39721
+ int __pyx_v___pyx_fused_dtype_uint16_is_signed;
39722
+ int __pyx_v___pyx_fused_dtype_uint32_is_signed;
39723
+ int __pyx_v___pyx_fused_dtype_uint64_is_signed;
39705
39724
  PyObject *__pyx_v_arg = NULL;
39706
39725
  PyObject *__pyx_v_dtype = NULL;
39707
39726
  PyObject *__pyx_v_arg_base = NULL;
@@ -39773,10 +39792,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_8_fill_align_table
39773
39792
  __pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
39774
39793
  __pyx_t_1 = 0;
39775
39794
  __pyx_v_itemsize = -1L;
39776
- __pyx_v____pyx_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint8)-1L) > 0));
39777
- __pyx_v____pyx_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint16)-1L) > 0));
39778
- __pyx_v____pyx_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint32)-1L) > 0));
39779
- __pyx_v____pyx_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint64)-1L) > 0));
39795
+ __pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint8)-1L) > 0));
39796
+ __pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint16)-1L) > 0));
39797
+ __pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint32)-1L) > 0));
39798
+ __pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_8pairwise_uint64)-1L) > 0));
39780
39799
  if (unlikely(__pyx_v_args == Py_None)) {
39781
39800
  PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
39782
39801
  __PYX_ERR(0, 456, __pyx_L1_error)
@@ -39918,7 +39937,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_8_fill_align_table
39918
39937
  __pyx_t_2 = __pyx_t_4;
39919
39938
  goto __pyx_L16_bool_binop_done;
39920
39939
  }
39921
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
39940
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
39922
39941
  __pyx_t_2 = __pyx_t_4;
39923
39942
  __pyx_L16_bool_binop_done:;
39924
39943
  if (__pyx_t_2) {
@@ -39941,7 +39960,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_8_fill_align_table
39941
39960
  __pyx_t_2 = __pyx_t_4;
39942
39961
  goto __pyx_L20_bool_binop_done;
39943
39962
  }
39944
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
39963
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
39945
39964
  __pyx_t_2 = __pyx_t_4;
39946
39965
  __pyx_L20_bool_binop_done:;
39947
39966
  if (__pyx_t_2) {
@@ -39964,7 +39983,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_8_fill_align_table
39964
39983
  __pyx_t_2 = __pyx_t_4;
39965
39984
  goto __pyx_L24_bool_binop_done;
39966
39985
  }
39967
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
39986
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
39968
39987
  __pyx_t_2 = __pyx_t_4;
39969
39988
  __pyx_L24_bool_binop_done:;
39970
39989
  if (__pyx_t_2) {
@@ -39987,7 +40006,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_8_fill_align_table
39987
40006
  __pyx_t_2 = __pyx_t_4;
39988
40007
  goto __pyx_L28_bool_binop_done;
39989
40008
  }
39990
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
40009
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
39991
40010
  __pyx_t_2 = __pyx_t_4;
39992
40011
  __pyx_L28_bool_binop_done:;
39993
40012
  if (__pyx_t_2) {
@@ -40348,7 +40367,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_8_fill_align_table
40348
40367
  __pyx_t_2 = __pyx_t_4;
40349
40368
  goto __pyx_L75_bool_binop_done;
40350
40369
  }
40351
- __pyx_t_4 = (!(__pyx_v____pyx_uint8_is_signed ^ __pyx_v_dtype_signed));
40370
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
40352
40371
  __pyx_t_2 = __pyx_t_4;
40353
40372
  __pyx_L75_bool_binop_done:;
40354
40373
  if (__pyx_t_2) {
@@ -40371,7 +40390,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_8_fill_align_table
40371
40390
  __pyx_t_2 = __pyx_t_4;
40372
40391
  goto __pyx_L79_bool_binop_done;
40373
40392
  }
40374
- __pyx_t_4 = (!(__pyx_v____pyx_uint16_is_signed ^ __pyx_v_dtype_signed));
40393
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
40375
40394
  __pyx_t_2 = __pyx_t_4;
40376
40395
  __pyx_L79_bool_binop_done:;
40377
40396
  if (__pyx_t_2) {
@@ -40394,7 +40413,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_8_fill_align_table
40394
40413
  __pyx_t_2 = __pyx_t_4;
40395
40414
  goto __pyx_L83_bool_binop_done;
40396
40415
  }
40397
- __pyx_t_4 = (!(__pyx_v____pyx_uint32_is_signed ^ __pyx_v_dtype_signed));
40416
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
40398
40417
  __pyx_t_2 = __pyx_t_4;
40399
40418
  __pyx_L83_bool_binop_done:;
40400
40419
  if (__pyx_t_2) {
@@ -40417,7 +40436,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_8pairwise_8_fill_align_table
40417
40436
  __pyx_t_2 = __pyx_t_4;
40418
40437
  goto __pyx_L87_bool_binop_done;
40419
40438
  }
40420
- __pyx_t_4 = (!(__pyx_v____pyx_uint64_is_signed ^ __pyx_v_dtype_signed));
40439
+ __pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
40421
40440
  __pyx_t_2 = __pyx_t_4;
40422
40441
  __pyx_L87_bool_binop_done:;
40423
40442
  if (__pyx_t_2) {
@@ -55072,7 +55091,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
55072
55091
  __Pyx_GOTREF(__pyx_tuple__8);
55073
55092
  __Pyx_GIVEREF(__pyx_tuple__8);
55074
55093
 
55075
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
55094
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
55076
55095
  * __pyx_import_array()
55077
55096
  * except Exception:
55078
55097
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -55083,7 +55102,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
55083
55102
  __Pyx_GOTREF(__pyx_tuple__9);
55084
55103
  __Pyx_GIVEREF(__pyx_tuple__9);
55085
55104
 
55086
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-2ntvm5yr/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
55105
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-99p1w3uq/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
55087
55106
  * _import_umath()
55088
55107
  * except Exception:
55089
55108
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -55701,33 +55720,33 @@ static int __Pyx_modinit_type_import_code(void) {
55701
55720
  /*--- Type import code ---*/
55702
55721
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
55703
55722
  __Pyx_GOTREF(__pyx_t_1);
55704
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
55723
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
55705
55724
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
55706
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
55725
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
55707
55726
  #elif CYTHON_COMPILING_IN_LIMITED_API
55708
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
55727
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
55709
55728
  #else
55710
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
55729
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
55711
55730
  #endif
55712
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
55731
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
55713
55732
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
55714
55733
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
55715
55734
  __Pyx_GOTREF(__pyx_t_1);
55716
- __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)
55717
- __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)
55718
- __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)
55719
- __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)
55720
- __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)
55721
- __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)
55722
- __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)
55723
- __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)
55724
- __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)
55725
- __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)
55726
- __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)
55727
- __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)
55728
- __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)
55729
- __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)
55730
- __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)
55735
+ __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)
55736
+ __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)
55737
+ __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)
55738
+ __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)
55739
+ __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)
55740
+ __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)
55741
+ __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)
55742
+ __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)
55743
+ __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)
55744
+ __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)
55745
+ __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)
55746
+ __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)
55747
+ __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)
55748
+ __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)
55749
+ __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)
55731
55750
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
55732
55751
  __Pyx_RefNannyFinishContext();
55733
55752
  return 0;
@@ -55755,9 +55774,9 @@ static int __Pyx_modinit_function_import_code(void) {
55755
55774
  /*--- Function import code ---*/
55756
55775
  __pyx_t_1 = PyImport_ImportModule("biotite.sequence.align.tracetable"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
55757
55776
  __Pyx_GOTREF(__pyx_t_1);
55758
- 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)
55759
- 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)
55760
- 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)
55777
+ 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)
55778
+ 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)
55779
+ 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)
55761
55780
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
55762
55781
  __Pyx_RefNannyFinishContext();
55763
55782
  return 0;
@@ -57410,11 +57429,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
57410
57429
  {
57411
57430
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
57412
57431
  if (unlikely(eq != 0)) {
57413
- if (unlikely(eq < 0)) return NULL; // error
57432
+ if (unlikely(eq < 0)) return NULL;
57414
57433
  return kwvalues[i];
57415
57434
  }
57416
57435
  }
57417
- return NULL; // not found (no exception set)
57436
+ return NULL;
57418
57437
  }
57419
57438
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
57420
57439
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -57527,7 +57546,7 @@ static int __Pyx_ParseOptionalKeywords(
57527
57546
  if (*name) {
57528
57547
  values[name-argnames] = value;
57529
57548
  #if CYTHON_AVOID_BORROWED_REFS
57530
- Py_INCREF(value); // transfer ownership of value to values
57549
+ Py_INCREF(value);
57531
57550
  Py_DECREF(key);
57532
57551
  #endif
57533
57552
  key = NULL;
@@ -57546,7 +57565,7 @@ static int __Pyx_ParseOptionalKeywords(
57546
57565
  && _PyString_Eq(**name, key)) {
57547
57566
  values[name-argnames] = value;
57548
57567
  #if CYTHON_AVOID_BORROWED_REFS
57549
- value = NULL; // ownership transferred to values
57568
+ value = NULL;
57550
57569
  #endif
57551
57570
  break;
57552
57571
  }
@@ -57578,7 +57597,7 @@ static int __Pyx_ParseOptionalKeywords(
57578
57597
  if (cmp == 0) {
57579
57598
  values[name-argnames] = value;
57580
57599
  #if CYTHON_AVOID_BORROWED_REFS
57581
- value = NULL; // ownership transferred to values
57600
+ value = NULL;
57582
57601
  #endif
57583
57602
  break;
57584
57603
  }
@@ -59593,9 +59612,10 @@ static int __Pyx_PyMemoryView_Get_ndim(PyObject *obj) {
59593
59612
 
59594
59613
  /* IterFinish */
59595
59614
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
59615
+ PyObject* exc_type;
59596
59616
  __Pyx_PyThreadState_declare
59597
59617
  __Pyx_PyThreadState_assign
59598
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
59618
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
59599
59619
  if (unlikely(exc_type)) {
59600
59620
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
59601
59621
  return -1;
@@ -59919,9 +59939,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
59919
59939
 
59920
59940
  /* UnpackUnboundCMethod */
59921
59941
  static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
59942
+ PyObject *result;
59922
59943
  PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
59923
59944
  if (unlikely(!selfless_args)) return NULL;
59924
- PyObject *result = PyObject_Call(method, selfless_args, kwargs);
59945
+ result = PyObject_Call(method, selfless_args, kwargs);
59925
59946
  Py_DECREF(selfless_args);
59926
59947
  return result;
59927
59948
  }
@@ -60938,10 +60959,10 @@ __PYX_GOOD:
60938
60959
  #endif
60939
60960
 
60940
60961
  /* TypeImport */
60941
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
60942
- #define __PYX_HAVE_RT_ImportType_3_0_7
60943
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
60944
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
60962
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
60963
+ #define __PYX_HAVE_RT_ImportType_3_0_10
60964
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
60965
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
60945
60966
  {
60946
60967
  PyObject *result = 0;
60947
60968
  char warning[200];
@@ -60995,7 +61016,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
60995
61016
  module_name, class_name, size, basicsize+itemsize);
60996
61017
  goto bad;
60997
61018
  }
60998
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
61019
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
60999
61020
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
61000
61021
  PyErr_Format(PyExc_ValueError,
61001
61022
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -61003,7 +61024,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
61003
61024
  module_name, class_name, size, basicsize, basicsize+itemsize);
61004
61025
  goto bad;
61005
61026
  }
61006
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
61027
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
61007
61028
  PyOS_snprintf(warning, sizeof(warning),
61008
61029
  "%s.%s size changed, may indicate binary incompatibility. "
61009
61030
  "Expected %zd from C header, got %zd from PyObject",
@@ -62003,7 +62024,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
62003
62024
  default:
62004
62025
  return NULL;
62005
62026
  }
62006
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
62027
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
62007
62028
  }
62008
62029
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
62009
62030
  {
@@ -62820,7 +62841,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
62820
62841
  #else
62821
62842
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
62822
62843
  #endif
62823
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
62844
+ Py_XDECREF(py_funcname);
62824
62845
  return py_code;
62825
62846
  bad:
62826
62847
  Py_XDECREF(py_funcname);
@@ -65735,9 +65756,9 @@ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt
65735
65756
  }
65736
65757
 
65737
65758
  /* FunctionImport */
65738
- #ifndef __PYX_HAVE_RT_ImportFunction_3_0_7
65739
- #define __PYX_HAVE_RT_ImportFunction_3_0_7
65740
- static int __Pyx_ImportFunction_3_0_7(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
65759
+ #ifndef __PYX_HAVE_RT_ImportFunction_3_0_10
65760
+ #define __PYX_HAVE_RT_ImportFunction_3_0_10
65761
+ static int __Pyx_ImportFunction_3_0_10(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
65741
65762
  PyObject *d = 0;
65742
65763
  PyObject *cobj = 0;
65743
65764
  union {