biotite 0.39.0__cp310-cp310-macosx_11_0_arm64.whl → 0.40.0__cp310-cp310-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biotite might be problematic. Click here for more details.
- biotite/__init__.py +3 -3
- biotite/application/dssp/app.py +18 -18
- biotite/database/rcsb/download.py +19 -14
- biotite/sequence/align/banded.c +258 -237
- biotite/sequence/align/banded.cpython-310-darwin.so +0 -0
- biotite/sequence/align/kmeralphabet.c +243 -222
- biotite/sequence/align/kmeralphabet.cpython-310-darwin.so +0 -0
- biotite/sequence/align/kmersimilarity.c +215 -196
- biotite/sequence/align/kmersimilarity.cpython-310-darwin.so +0 -0
- biotite/sequence/align/kmertable.cpp +233 -205
- biotite/sequence/align/kmertable.cpython-310-darwin.so +0 -0
- biotite/sequence/align/localgapped.c +258 -237
- biotite/sequence/align/localgapped.cpython-310-darwin.so +0 -0
- biotite/sequence/align/localungapped.c +235 -214
- biotite/sequence/align/localungapped.cpython-310-darwin.so +0 -0
- biotite/sequence/align/multiple.c +255 -234
- biotite/sequence/align/multiple.cpython-310-darwin.so +0 -0
- biotite/sequence/align/pairwise.c +274 -253
- biotite/sequence/align/pairwise.cpython-310-darwin.so +0 -0
- biotite/sequence/align/permutation.c +215 -196
- biotite/sequence/align/permutation.cpython-310-darwin.so +0 -0
- biotite/sequence/align/selector.c +217 -197
- biotite/sequence/align/selector.cpython-310-darwin.so +0 -0
- biotite/sequence/align/tracetable.c +215 -195
- biotite/sequence/align/tracetable.cpython-310-darwin.so +0 -0
- biotite/sequence/codec.c +235 -214
- biotite/sequence/codec.cpython-310-darwin.so +0 -0
- biotite/sequence/phylo/nj.c +215 -196
- biotite/sequence/phylo/nj.cpython-310-darwin.so +0 -0
- biotite/sequence/phylo/tree.c +227 -202
- biotite/sequence/phylo/tree.cpython-310-darwin.so +0 -0
- biotite/sequence/phylo/upgma.c +215 -196
- biotite/sequence/phylo/upgma.cpython-310-darwin.so +0 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1175 -1226
- biotite/structure/bonds.cpython-310-darwin.so +0 -0
- biotite/structure/celllist.c +217 -197
- biotite/structure/celllist.cpython-310-darwin.so +0 -0
- biotite/structure/charges.c +1052 -1101
- biotite/structure/charges.cpython-310-darwin.so +0 -0
- biotite/structure/filter.py +30 -37
- biotite/structure/info/__init__.py +5 -8
- biotite/structure/info/atoms.py +25 -67
- biotite/structure/info/bonds.py +46 -100
- biotite/structure/info/ccd/README.rst +8 -0
- biotite/structure/info/ccd/amino_acids.txt +1646 -0
- biotite/structure/info/ccd/carbohydrates.txt +1133 -0
- biotite/structure/info/ccd/components.bcif +0 -0
- biotite/structure/info/ccd/nucleotides.txt +797 -0
- biotite/structure/info/ccd.py +95 -0
- biotite/structure/info/groups.py +90 -0
- biotite/structure/info/masses.py +21 -20
- biotite/structure/info/misc.py +11 -22
- biotite/structure/info/standardize.py +17 -12
- biotite/structure/io/__init__.py +2 -4
- biotite/structure/io/ctab.py +1 -1
- biotite/structure/io/general.py +37 -43
- biotite/structure/io/mmtf/__init__.py +3 -0
- biotite/structure/io/mmtf/convertarray.c +219 -198
- biotite/structure/io/mmtf/convertarray.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/convertfile.c +217 -197
- biotite/structure/io/mmtf/convertfile.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/decode.c +225 -204
- biotite/structure/io/mmtf/decode.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/encode.c +215 -196
- biotite/structure/io/mmtf/encode.cpython-310-darwin.so +0 -0
- biotite/structure/io/mmtf/file.py +34 -26
- biotite/structure/io/npz/__init__.py +3 -0
- biotite/structure/io/npz/file.py +21 -18
- biotite/structure/io/pdb/__init__.py +3 -3
- biotite/structure/io/pdb/file.py +5 -3
- biotite/structure/io/pdb/hybrid36.c +63 -43
- biotite/structure/io/pdb/hybrid36.cpython-310-darwin.so +0 -0
- biotite/structure/io/pdbqt/file.py +32 -32
- biotite/structure/io/pdbx/__init__.py +13 -6
- biotite/structure/io/pdbx/bcif.py +649 -0
- biotite/structure/io/pdbx/cif.py +1028 -0
- biotite/structure/io/pdbx/component.py +243 -0
- biotite/structure/io/pdbx/convert.py +707 -359
- biotite/structure/io/pdbx/encoding.c +112813 -0
- biotite/structure/io/pdbx/encoding.cpython-310-darwin.so +0 -0
- biotite/structure/io/pdbx/error.py +14 -0
- biotite/structure/io/pdbx/legacy.py +267 -0
- biotite/structure/molecules.py +151 -151
- biotite/structure/sasa.c +215 -196
- biotite/structure/sasa.cpython-310-darwin.so +0 -0
- biotite/structure/superimpose.py +158 -115
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
- biotite/structure/info/amino_acids.json +0 -1556
- biotite/structure/info/amino_acids.py +0 -42
- biotite/structure/info/carbohydrates.json +0 -1122
- biotite/structure/info/carbohydrates.py +0 -39
- biotite/structure/info/intra_bonds.msgpack +0 -0
- biotite/structure/info/link_types.msgpack +0 -1
- biotite/structure/info/nucleotides.json +0 -772
- biotite/structure/info/nucleotides.py +0 -39
- biotite/structure/info/residue_masses.msgpack +0 -0
- biotite/structure/info/residue_names.msgpack +0 -3
- biotite/structure/info/residues.msgpack +0 -0
- biotite/structure/io/pdbx/file.py +0 -652
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
- {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.0.
|
|
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 "
|
|
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
|
|
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;
|
|
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;
|
|
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);
|
|
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
|
-
#
|
|
737
|
-
#define
|
|
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
|
|
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__;
|
|
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
|
|
1376
|
+
#else
|
|
1359
1377
|
#define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
|
|
1360
1378
|
#define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
|
|
1361
1379
|
#define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
|
|
@@ -1645,7 +1663,7 @@ typedef struct {
|
|
|
1645
1663
|
|
|
1646
1664
|
/* #### Code section: numeric_typedefs ### */
|
|
1647
1665
|
|
|
1648
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1666
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1649
1667
|
* # in Cython to enable them only on the right systems.
|
|
1650
1668
|
*
|
|
1651
1669
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1654,7 +1672,7 @@ typedef struct {
|
|
|
1654
1672
|
*/
|
|
1655
1673
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1656
1674
|
|
|
1657
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1675
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1658
1676
|
*
|
|
1659
1677
|
* ctypedef npy_int8 int8_t
|
|
1660
1678
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1663
1681
|
*/
|
|
1664
1682
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1665
1683
|
|
|
1666
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1684
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":734
|
|
1667
1685
|
* ctypedef npy_int8 int8_t
|
|
1668
1686
|
* ctypedef npy_int16 int16_t
|
|
1669
1687
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1672
1690
|
*/
|
|
1673
1691
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1674
1692
|
|
|
1675
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1693
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":735
|
|
1676
1694
|
* ctypedef npy_int16 int16_t
|
|
1677
1695
|
* ctypedef npy_int32 int32_t
|
|
1678
1696
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1681
1699
|
*/
|
|
1682
1700
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1683
1701
|
|
|
1684
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1702
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1685
1703
|
* #ctypedef npy_int128 int128_t
|
|
1686
1704
|
*
|
|
1687
1705
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1690
1708
|
*/
|
|
1691
1709
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1692
1710
|
|
|
1693
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1711
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1694
1712
|
*
|
|
1695
1713
|
* ctypedef npy_uint8 uint8_t
|
|
1696
1714
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1699
1717
|
*/
|
|
1700
1718
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1701
1719
|
|
|
1702
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1720
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":741
|
|
1703
1721
|
* ctypedef npy_uint8 uint8_t
|
|
1704
1722
|
* ctypedef npy_uint16 uint16_t
|
|
1705
1723
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1708
1726
|
*/
|
|
1709
1727
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1710
1728
|
|
|
1711
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1729
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":742
|
|
1712
1730
|
* ctypedef npy_uint16 uint16_t
|
|
1713
1731
|
* ctypedef npy_uint32 uint32_t
|
|
1714
1732
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1717
1735
|
*/
|
|
1718
1736
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1719
1737
|
|
|
1720
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1738
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":746
|
|
1721
1739
|
* #ctypedef npy_uint128 uint128_t
|
|
1722
1740
|
*
|
|
1723
1741
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1726
1744
|
*/
|
|
1727
1745
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1728
1746
|
|
|
1729
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1747
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":747
|
|
1730
1748
|
*
|
|
1731
1749
|
* ctypedef npy_float32 float32_t
|
|
1732
1750
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1735
1753
|
*/
|
|
1736
1754
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1737
1755
|
|
|
1738
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1756
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":756
|
|
1739
1757
|
* # The int types are mapped a bit surprising --
|
|
1740
1758
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1741
1759
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1744
1762
|
*/
|
|
1745
1763
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1746
1764
|
|
|
1747
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1765
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1748
1766
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1749
1767
|
* ctypedef npy_long int_t
|
|
1750
1768
|
* ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
|
|
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1753
1771
|
*/
|
|
1754
1772
|
typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
1755
1773
|
|
|
1756
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1774
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":758
|
|
1757
1775
|
* ctypedef npy_long int_t
|
|
1758
1776
|
* ctypedef npy_longlong long_t
|
|
1759
1777
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
|
1762
1780
|
*/
|
|
1763
1781
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1764
1782
|
|
|
1765
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1783
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1766
1784
|
* ctypedef npy_longlong longlong_t
|
|
1767
1785
|
*
|
|
1768
1786
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1771
1789
|
*/
|
|
1772
1790
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1773
1791
|
|
|
1774
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1792
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1775
1793
|
*
|
|
1776
1794
|
* ctypedef npy_ulong uint_t
|
|
1777
1795
|
* ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
|
|
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1780
1798
|
*/
|
|
1781
1799
|
typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
1782
1800
|
|
|
1783
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1801
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":762
|
|
1784
1802
|
* ctypedef npy_ulong uint_t
|
|
1785
1803
|
* ctypedef npy_ulonglong ulong_t
|
|
1786
1804
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
|
1789
1807
|
*/
|
|
1790
1808
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1791
1809
|
|
|
1792
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1810
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1793
1811
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1794
1812
|
*
|
|
1795
1813
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1798
1816
|
*/
|
|
1799
1817
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1800
1818
|
|
|
1801
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1819
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1802
1820
|
*
|
|
1803
1821
|
* ctypedef npy_intp intp_t
|
|
1804
1822
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1807
1825
|
*/
|
|
1808
1826
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1809
1827
|
|
|
1810
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1828
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1811
1829
|
* ctypedef npy_uintp uintp_t
|
|
1812
1830
|
*
|
|
1813
1831
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1816
1834
|
*/
|
|
1817
1835
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1818
1836
|
|
|
1819
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1837
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1820
1838
|
*
|
|
1821
1839
|
* ctypedef npy_double float_t
|
|
1822
1840
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1825
1843
|
*/
|
|
1826
1844
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1827
1845
|
|
|
1828
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1846
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1829
1847
|
* ctypedef npy_double float_t
|
|
1830
1848
|
* ctypedef npy_double double_t
|
|
1831
1849
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1920,7 +1938,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1920
1938
|
struct __pyx_memoryview_obj;
|
|
1921
1939
|
struct __pyx_memoryviewslice_obj;
|
|
1922
1940
|
|
|
1923
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1941
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1924
1942
|
* ctypedef npy_longdouble longdouble_t
|
|
1925
1943
|
*
|
|
1926
1944
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1929,7 +1947,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1929
1947
|
*/
|
|
1930
1948
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
1931
1949
|
|
|
1932
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1950
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1933
1951
|
*
|
|
1934
1952
|
* ctypedef npy_cfloat cfloat_t
|
|
1935
1953
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1938,7 +1956,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1938
1956
|
*/
|
|
1939
1957
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
1940
1958
|
|
|
1941
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1959
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
|
|
1942
1960
|
* ctypedef npy_cfloat cfloat_t
|
|
1943
1961
|
* ctypedef npy_cdouble cdouble_t
|
|
1944
1962
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1947,7 +1965,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1947
1965
|
*/
|
|
1948
1966
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
|
|
1949
1967
|
|
|
1950
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1968
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":775
|
|
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
|
|
2316
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
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
|
|
2333
|
-
|
|
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
|
|
2970
|
-
#define
|
|
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
|
|
2994
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2976
2995
|
#else
|
|
2977
|
-
#define
|
|
2996
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2978
2997
|
#endif
|
|
2979
|
-
enum
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
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 *
|
|
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;
|
|
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
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19109
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":246
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19120
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":249
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19130
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":246
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19143
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":252
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19157
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":255
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19170
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":252
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19185
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":258
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19196
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":261
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19206
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":258
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19219
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":264
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19230
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":269
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19240
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":264
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19253
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":272
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19264
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":276
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19274
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":272
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19287
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":279
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19298
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":282
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19308
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":279
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19321
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":285
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19332
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":291
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19342
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":285
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19355
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19372
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":778
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19386
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19405
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19422
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":781
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19436
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19455
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19472
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":784
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19486
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19505
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19522
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":787
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19536
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19555
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19572
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":790
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19586
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19605
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19619
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":793
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19629
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":794
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19641
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":793
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19650
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":796
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19664
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19679
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":971
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19689
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19698
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":973
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19707
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":971
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19718
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19733
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":976
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19742
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":977
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19752
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":978
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19763
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":977
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19772
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":979
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19784
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19799
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19823
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19839
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":985
|
|
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, 985, __pyx_L3_error)
|
|
19828
19847
|
|
|
19829
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19848
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19862
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19877
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19892
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19908
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19931
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19955
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19971
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":991
|
|
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, 991, __pyx_L3_error)
|
|
19960
19979
|
|
|
19961
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19980
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19994
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20009
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20024
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20040
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20063
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20087
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20103
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":997
|
|
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, 997, __pyx_L3_error)
|
|
20092
20111
|
|
|
20093
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20112
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20126
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":998
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20141
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20156
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20172
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20195
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20206
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20216
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20229
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20240
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20250
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1017
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20263
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20274
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20284
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1032
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20297
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20308
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20318
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1042
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20331
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20342
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1053
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20350
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1049
|
|
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
|
|
21296
|
-
int
|
|
21297
|
-
int
|
|
21298
|
-
int
|
|
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
|
-
|
|
21371
|
-
|
|
21372
|
-
|
|
21373
|
-
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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
|
|
29758
|
-
int
|
|
29759
|
-
int
|
|
29760
|
-
int
|
|
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
|
-
|
|
29833
|
-
|
|
29834
|
-
|
|
29835
|
-
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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
|
|
39702
|
-
int
|
|
39703
|
-
int
|
|
39704
|
-
int
|
|
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
|
-
|
|
39777
|
-
|
|
39778
|
-
|
|
39779
|
-
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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 = (!(
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
55094
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
|
|
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
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
55105
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-920dofd5/overlay/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
|
|
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 =
|
|
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),
|
|
55725
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
55707
55726
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
55708
|
-
sizeof(PyTypeObject),
|
|
55727
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
55709
55728
|
#else
|
|
55710
|
-
sizeof(PyHeapTypeObject),
|
|
55729
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
55711
55730
|
#endif
|
|
55712
|
-
|
|
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, 203, __pyx_L1_error)
|
|
55715
55734
|
__Pyx_GOTREF(__pyx_t_1);
|
|
55716
|
-
__pyx_ptype_5numpy_dtype =
|
|
55717
|
-
__pyx_ptype_5numpy_flatiter =
|
|
55718
|
-
__pyx_ptype_5numpy_broadcast =
|
|
55719
|
-
__pyx_ptype_5numpy_ndarray =
|
|
55720
|
-
__pyx_ptype_5numpy_generic =
|
|
55721
|
-
__pyx_ptype_5numpy_number =
|
|
55722
|
-
__pyx_ptype_5numpy_integer =
|
|
55723
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
55724
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
55725
|
-
__pyx_ptype_5numpy_inexact =
|
|
55726
|
-
__pyx_ptype_5numpy_floating =
|
|
55727
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
55728
|
-
__pyx_ptype_5numpy_flexible =
|
|
55729
|
-
__pyx_ptype_5numpy_character =
|
|
55730
|
-
__pyx_ptype_5numpy_ufunc =
|
|
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, 203, __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, 226, __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, 230, __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, 239, __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, 813, __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, 815, __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, 817, __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, 819, __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, 821, __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, 823, __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, 825, __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, 827, __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, 829, __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, 831, __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, 869, __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 (
|
|
55759
|
-
if (
|
|
55760
|
-
if (
|
|
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;
|
|
57432
|
+
if (unlikely(eq < 0)) return NULL;
|
|
57414
57433
|
return kwvalues[i];
|
|
57415
57434
|
}
|
|
57416
57435
|
}
|
|
57417
|
-
return NULL;
|
|
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);
|
|
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;
|
|
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;
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
60942
|
-
#define
|
|
60943
|
-
static PyTypeObject *
|
|
60944
|
-
size_t size, size_t alignment, enum
|
|
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 ==
|
|
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 ==
|
|
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 ((
|
|
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);
|
|
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
|
|
65739
|
-
#define
|
|
65740
|
-
static int
|
|
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 {
|