biotite 0.39.0__cp311-cp311-macosx_11_0_arm64.whl → 0.40.0__cp311-cp311-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of biotite might be problematic. Click here for more details.
- 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-311-darwin.so +0 -0
- biotite/sequence/align/kmeralphabet.c +243 -222
- biotite/sequence/align/kmeralphabet.cpython-311-darwin.so +0 -0
- biotite/sequence/align/kmersimilarity.c +215 -196
- biotite/sequence/align/kmersimilarity.cpython-311-darwin.so +0 -0
- biotite/sequence/align/kmertable.cpp +233 -205
- biotite/sequence/align/kmertable.cpython-311-darwin.so +0 -0
- biotite/sequence/align/localgapped.c +258 -237
- biotite/sequence/align/localgapped.cpython-311-darwin.so +0 -0
- biotite/sequence/align/localungapped.c +235 -214
- biotite/sequence/align/localungapped.cpython-311-darwin.so +0 -0
- biotite/sequence/align/multiple.c +255 -234
- biotite/sequence/align/multiple.cpython-311-darwin.so +0 -0
- biotite/sequence/align/pairwise.c +274 -253
- biotite/sequence/align/pairwise.cpython-311-darwin.so +0 -0
- biotite/sequence/align/permutation.c +215 -196
- biotite/sequence/align/permutation.cpython-311-darwin.so +0 -0
- biotite/sequence/align/selector.c +217 -197
- biotite/sequence/align/selector.cpython-311-darwin.so +0 -0
- biotite/sequence/align/tracetable.c +215 -195
- biotite/sequence/align/tracetable.cpython-311-darwin.so +0 -0
- biotite/sequence/codec.c +235 -214
- biotite/sequence/codec.cpython-311-darwin.so +0 -0
- biotite/sequence/phylo/nj.c +215 -196
- biotite/sequence/phylo/nj.cpython-311-darwin.so +0 -0
- biotite/sequence/phylo/tree.c +227 -202
- biotite/sequence/phylo/tree.cpython-311-darwin.so +0 -0
- biotite/sequence/phylo/upgma.c +215 -196
- biotite/sequence/phylo/upgma.cpython-311-darwin.so +0 -0
- biotite/structure/basepairs.py +7 -12
- biotite/structure/bonds.c +1175 -1226
- biotite/structure/bonds.cpython-311-darwin.so +0 -0
- biotite/structure/celllist.c +217 -197
- biotite/structure/celllist.cpython-311-darwin.so +0 -0
- biotite/structure/charges.c +1052 -1101
- biotite/structure/charges.cpython-311-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-311-darwin.so +0 -0
- biotite/structure/io/mmtf/convertfile.c +217 -197
- biotite/structure/io/mmtf/convertfile.cpython-311-darwin.so +0 -0
- biotite/structure/io/mmtf/decode.c +225 -204
- biotite/structure/io/mmtf/decode.cpython-311-darwin.so +0 -0
- biotite/structure/io/mmtf/encode.c +215 -196
- biotite/structure/io/mmtf/encode.cpython-311-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-311-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-311-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-311-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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":731
|
|
1649
1667
|
* # in Cython to enable them only on the right systems.
|
|
1650
1668
|
*
|
|
1651
1669
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1654,7 +1672,7 @@ typedef struct {
|
|
|
1654
1672
|
*/
|
|
1655
1673
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1656
1674
|
|
|
1657
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1675
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":732
|
|
1658
1676
|
*
|
|
1659
1677
|
* ctypedef npy_int8 int8_t
|
|
1660
1678
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1663
1681
|
*/
|
|
1664
1682
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1665
1683
|
|
|
1666
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1684
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":733
|
|
1667
1685
|
* ctypedef npy_int8 int8_t
|
|
1668
1686
|
* ctypedef npy_int16 int16_t
|
|
1669
1687
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1672
1690
|
*/
|
|
1673
1691
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1674
1692
|
|
|
1675
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1693
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":734
|
|
1676
1694
|
* ctypedef npy_int16 int16_t
|
|
1677
1695
|
* ctypedef npy_int32 int32_t
|
|
1678
1696
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1681
1699
|
*/
|
|
1682
1700
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1683
1701
|
|
|
1684
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1702
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":738
|
|
1685
1703
|
* #ctypedef npy_int128 int128_t
|
|
1686
1704
|
*
|
|
1687
1705
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1690
1708
|
*/
|
|
1691
1709
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1692
1710
|
|
|
1693
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1711
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":739
|
|
1694
1712
|
*
|
|
1695
1713
|
* ctypedef npy_uint8 uint8_t
|
|
1696
1714
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1699
1717
|
*/
|
|
1700
1718
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1701
1719
|
|
|
1702
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1720
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":740
|
|
1703
1721
|
* ctypedef npy_uint8 uint8_t
|
|
1704
1722
|
* ctypedef npy_uint16 uint16_t
|
|
1705
1723
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1708
1726
|
*/
|
|
1709
1727
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1710
1728
|
|
|
1711
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1729
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":741
|
|
1712
1730
|
* ctypedef npy_uint16 uint16_t
|
|
1713
1731
|
* ctypedef npy_uint32 uint32_t
|
|
1714
1732
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1717
1735
|
*/
|
|
1718
1736
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1719
1737
|
|
|
1720
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1738
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
|
|
1721
1739
|
* #ctypedef npy_uint128 uint128_t
|
|
1722
1740
|
*
|
|
1723
1741
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1726
1744
|
*/
|
|
1727
1745
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1728
1746
|
|
|
1729
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1747
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
|
|
1730
1748
|
*
|
|
1731
1749
|
* ctypedef npy_float32 float32_t
|
|
1732
1750
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1735
1753
|
*/
|
|
1736
1754
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1737
1755
|
|
|
1738
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1756
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":755
|
|
1739
1757
|
* # The int types are mapped a bit surprising --
|
|
1740
1758
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1741
1759
|
* ctypedef npy_long int_t # <<<<<<<<<<<<<<
|
|
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1744
1762
|
*/
|
|
1745
1763
|
typedef npy_long __pyx_t_5numpy_int_t;
|
|
1746
1764
|
|
|
1747
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1765
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":756
|
|
1748
1766
|
* # numpy.int corresponds to 'l' and numpy.long to 'q'
|
|
1749
1767
|
* ctypedef npy_long int_t
|
|
1750
1768
|
* ctypedef npy_longlong long_t # <<<<<<<<<<<<<<
|
|
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
|
|
|
1753
1771
|
*/
|
|
1754
1772
|
typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
1755
1773
|
|
|
1756
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1774
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":757
|
|
1757
1775
|
* ctypedef npy_long int_t
|
|
1758
1776
|
* ctypedef npy_longlong long_t
|
|
1759
1777
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_long_t;
|
|
|
1762
1780
|
*/
|
|
1763
1781
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1764
1782
|
|
|
1765
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1783
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":759
|
|
1766
1784
|
* ctypedef npy_longlong longlong_t
|
|
1767
1785
|
*
|
|
1768
1786
|
* ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
|
|
@@ -1771,7 +1789,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1771
1789
|
*/
|
|
1772
1790
|
typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
1773
1791
|
|
|
1774
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1792
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":760
|
|
1775
1793
|
*
|
|
1776
1794
|
* ctypedef npy_ulong uint_t
|
|
1777
1795
|
* ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<<
|
|
@@ -1780,7 +1798,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
|
|
|
1780
1798
|
*/
|
|
1781
1799
|
typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
1782
1800
|
|
|
1783
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1801
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1784
1802
|
* ctypedef npy_ulong uint_t
|
|
1785
1803
|
* ctypedef npy_ulonglong ulong_t
|
|
1786
1804
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1789,7 +1807,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulong_t;
|
|
|
1789
1807
|
*/
|
|
1790
1808
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1791
1809
|
|
|
1792
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1810
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":763
|
|
1793
1811
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1794
1812
|
*
|
|
1795
1813
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1798,7 +1816,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1798
1816
|
*/
|
|
1799
1817
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1800
1818
|
|
|
1801
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1819
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1802
1820
|
*
|
|
1803
1821
|
* ctypedef npy_intp intp_t
|
|
1804
1822
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1807,7 +1825,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1807
1825
|
*/
|
|
1808
1826
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1809
1827
|
|
|
1810
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1828
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":766
|
|
1811
1829
|
* ctypedef npy_uintp uintp_t
|
|
1812
1830
|
*
|
|
1813
1831
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1816,7 +1834,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1816
1834
|
*/
|
|
1817
1835
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1818
1836
|
|
|
1819
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1837
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1820
1838
|
*
|
|
1821
1839
|
* ctypedef npy_double float_t
|
|
1822
1840
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1825,7 +1843,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1825
1843
|
*/
|
|
1826
1844
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1827
1845
|
|
|
1828
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1846
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1829
1847
|
* ctypedef npy_double float_t
|
|
1830
1848
|
* ctypedef npy_double double_t
|
|
1831
1849
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1911,7 +1929,7 @@ struct __pyx_MemviewEnum_obj;
|
|
|
1911
1929
|
struct __pyx_memoryview_obj;
|
|
1912
1930
|
struct __pyx_memoryviewslice_obj;
|
|
1913
1931
|
|
|
1914
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
1932
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":770
|
|
1915
1933
|
* ctypedef npy_longdouble longdouble_t
|
|
1916
1934
|
*
|
|
1917
1935
|
* ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
|
|
@@ -1920,7 +1938,7 @@ struct __pyx_memoryviewslice_obj;
|
|
|
1920
1938
|
*/
|
|
1921
1939
|
typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":771
|
|
1924
1942
|
*
|
|
1925
1943
|
* ctypedef npy_cfloat cfloat_t
|
|
1926
1944
|
* ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1929,7 +1947,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
|
|
|
1929
1947
|
*/
|
|
1930
1948
|
typedef npy_cdouble __pyx_t_5numpy_cdouble_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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":772
|
|
1933
1951
|
* ctypedef npy_cfloat cfloat_t
|
|
1934
1952
|
* ctypedef npy_cdouble cdouble_t
|
|
1935
1953
|
* ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
|
|
@@ -1938,7 +1956,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
|
|
|
1938
1956
|
*/
|
|
1939
1957
|
typedef npy_clongdouble __pyx_t_5numpy_clongdouble_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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":774
|
|
1942
1960
|
* ctypedef npy_clongdouble clongdouble_t
|
|
1943
1961
|
*
|
|
1944
1962
|
* ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
|
|
@@ -2254,8 +2272,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2254
2272
|
#define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
|
|
2255
2273
|
#define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
|
|
2256
2274
|
#else
|
|
2257
|
-
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2258
|
-
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2275
|
+
#define __Pyx_Arg_NewRef_VARARGS(arg) arg
|
|
2276
|
+
#define __Pyx_Arg_XDECREF_VARARGS(arg)
|
|
2259
2277
|
#endif
|
|
2260
2278
|
#define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
|
|
2261
2279
|
#define __Pyx_KwValues_VARARGS(args, nargs) NULL
|
|
@@ -2271,8 +2289,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
|
|
|
2271
2289
|
#else
|
|
2272
2290
|
#define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
|
|
2273
2291
|
#endif
|
|
2274
|
-
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg
|
|
2275
|
-
|
|
2292
|
+
#define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
|
|
2293
|
+
to have the same reference counting */
|
|
2294
|
+
#define __Pyx_Arg_XDECREF_FASTCALL(arg)
|
|
2276
2295
|
#else
|
|
2277
2296
|
#define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
|
|
2278
2297
|
#define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
|
|
@@ -2910,22 +2929,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
|
2910
2929
|
#endif
|
|
2911
2930
|
|
|
2912
2931
|
/* TypeImport.proto */
|
|
2913
|
-
#ifndef
|
|
2914
|
-
#define
|
|
2932
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2933
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_0_10
|
|
2915
2934
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2916
2935
|
#include <stdalign.h>
|
|
2917
2936
|
#endif
|
|
2918
2937
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2919
|
-
#define
|
|
2938
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
|
|
2920
2939
|
#else
|
|
2921
|
-
#define
|
|
2940
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
|
|
2922
2941
|
#endif
|
|
2923
|
-
enum
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2942
|
+
enum __Pyx_ImportType_CheckSize_3_0_10 {
|
|
2943
|
+
__Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
|
|
2944
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
|
|
2945
|
+
__Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
|
|
2927
2946
|
};
|
|
2928
|
-
static PyTypeObject *
|
|
2947
|
+
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);
|
|
2929
2948
|
#endif
|
|
2930
2949
|
|
|
2931
2950
|
/* Py3UpdateBases.proto */
|
|
@@ -3024,7 +3043,7 @@ typedef struct {
|
|
|
3024
3043
|
#endif
|
|
3025
3044
|
void *defaults;
|
|
3026
3045
|
int defaults_pyobjects;
|
|
3027
|
-
size_t defaults_size;
|
|
3046
|
+
size_t defaults_size;
|
|
3028
3047
|
int flags;
|
|
3029
3048
|
PyObject *defaults_tuple;
|
|
3030
3049
|
PyObject *defaults_kwdict;
|
|
@@ -19180,7 +19199,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
19180
19199
|
return __pyx_r;
|
|
19181
19200
|
}
|
|
19182
19201
|
|
|
19183
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19202
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
|
|
19184
19203
|
*
|
|
19185
19204
|
* @property
|
|
19186
19205
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19191,7 +19210,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
19191
19210
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
19192
19211
|
PyObject *__pyx_r;
|
|
19193
19212
|
|
|
19194
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19213
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
|
|
19195
19214
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
19196
19215
|
* """
|
|
19197
19216
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -19201,7 +19220,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
19201
19220
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
19202
19221
|
goto __pyx_L0;
|
|
19203
19222
|
|
|
19204
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19223
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":245
|
|
19205
19224
|
*
|
|
19206
19225
|
* @property
|
|
19207
19226
|
* cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19214,7 +19233,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
19214
19233
|
return __pyx_r;
|
|
19215
19234
|
}
|
|
19216
19235
|
|
|
19217
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19236
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
|
|
19218
19237
|
*
|
|
19219
19238
|
* @property
|
|
19220
19239
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -19228,7 +19247,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19228
19247
|
PyArray_Descr *__pyx_t_1;
|
|
19229
19248
|
__Pyx_RefNannySetupContext("descr", 1);
|
|
19230
19249
|
|
|
19231
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19250
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
|
|
19232
19251
|
* """Returns an owned reference to the dtype of the array.
|
|
19233
19252
|
* """
|
|
19234
19253
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -19241,7 +19260,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19241
19260
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
19242
19261
|
goto __pyx_L0;
|
|
19243
19262
|
|
|
19244
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19263
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":251
|
|
19245
19264
|
*
|
|
19246
19265
|
* @property
|
|
19247
19266
|
* cdef inline dtype descr(self): # <<<<<<<<<<<<<<
|
|
@@ -19256,7 +19275,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19256
19275
|
return __pyx_r;
|
|
19257
19276
|
}
|
|
19258
19277
|
|
|
19259
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19278
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
|
|
19260
19279
|
*
|
|
19261
19280
|
* @property
|
|
19262
19281
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19267,7 +19286,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
19267
19286
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
19268
19287
|
int __pyx_r;
|
|
19269
19288
|
|
|
19270
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19289
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":260
|
|
19271
19290
|
* """Returns the number of dimensions in the array.
|
|
19272
19291
|
* """
|
|
19273
19292
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -19277,7 +19296,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19277
19296
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
19278
19297
|
goto __pyx_L0;
|
|
19279
19298
|
|
|
19280
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19299
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":257
|
|
19281
19300
|
*
|
|
19282
19301
|
* @property
|
|
19283
19302
|
* cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19290,7 +19309,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19290
19309
|
return __pyx_r;
|
|
19291
19310
|
}
|
|
19292
19311
|
|
|
19293
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19312
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
|
19294
19313
|
*
|
|
19295
19314
|
* @property
|
|
19296
19315
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19301,7 +19320,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
19301
19320
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
19302
19321
|
npy_intp *__pyx_r;
|
|
19303
19322
|
|
|
19304
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19323
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":268
|
|
19305
19324
|
* Can return NULL for 0-dimensional arrays.
|
|
19306
19325
|
* """
|
|
19307
19326
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -19311,7 +19330,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19311
19330
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
19312
19331
|
goto __pyx_L0;
|
|
19313
19332
|
|
|
19314
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19333
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
|
19315
19334
|
*
|
|
19316
19335
|
* @property
|
|
19317
19336
|
* cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19324,7 +19343,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19324
19343
|
return __pyx_r;
|
|
19325
19344
|
}
|
|
19326
19345
|
|
|
19327
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19346
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
|
|
19328
19347
|
*
|
|
19329
19348
|
* @property
|
|
19330
19349
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19335,7 +19354,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
19335
19354
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
19336
19355
|
npy_intp *__pyx_r;
|
|
19337
19356
|
|
|
19338
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19357
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":275
|
|
19339
19358
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
19340
19359
|
* """
|
|
19341
19360
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -19345,7 +19364,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19345
19364
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
19346
19365
|
goto __pyx_L0;
|
|
19347
19366
|
|
|
19348
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19367
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":271
|
|
19349
19368
|
*
|
|
19350
19369
|
* @property
|
|
19351
19370
|
* cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19358,7 +19377,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19358
19377
|
return __pyx_r;
|
|
19359
19378
|
}
|
|
19360
19379
|
|
|
19361
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19380
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
|
|
19362
19381
|
*
|
|
19363
19382
|
* @property
|
|
19364
19383
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19369,7 +19388,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
19369
19388
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
19370
19389
|
npy_intp __pyx_r;
|
|
19371
19390
|
|
|
19372
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19391
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":281
|
|
19373
19392
|
* """Returns the total size (in number of elements) of the array.
|
|
19374
19393
|
* """
|
|
19375
19394
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -19379,7 +19398,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19379
19398
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
19380
19399
|
goto __pyx_L0;
|
|
19381
19400
|
|
|
19382
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19401
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":278
|
|
19383
19402
|
*
|
|
19384
19403
|
* @property
|
|
19385
19404
|
* cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19392,7 +19411,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19392
19411
|
return __pyx_r;
|
|
19393
19412
|
}
|
|
19394
19413
|
|
|
19395
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19414
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
|
19396
19415
|
*
|
|
19397
19416
|
* @property
|
|
19398
19417
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19403,7 +19422,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
19403
19422
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
19404
19423
|
char *__pyx_r;
|
|
19405
19424
|
|
|
19406
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19425
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":290
|
|
19407
19426
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
19408
19427
|
* """
|
|
19409
19428
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -19413,7 +19432,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
19413
19432
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
19414
19433
|
goto __pyx_L0;
|
|
19415
19434
|
|
|
19416
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19435
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
|
19417
19436
|
*
|
|
19418
19437
|
* @property
|
|
19419
19438
|
* cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
|
|
@@ -19426,7 +19445,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
19426
19445
|
return __pyx_r;
|
|
19427
19446
|
}
|
|
19428
19447
|
|
|
19429
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19448
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
|
19430
19449
|
* ctypedef npy_cdouble complex_t
|
|
19431
19450
|
*
|
|
19432
19451
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19443,7 +19462,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19443
19462
|
int __pyx_clineno = 0;
|
|
19444
19463
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
|
|
19445
19464
|
|
|
19446
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19465
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
|
|
19447
19466
|
*
|
|
19448
19467
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
19449
19468
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -19457,7 +19476,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19457
19476
|
__pyx_t_1 = 0;
|
|
19458
19477
|
goto __pyx_L0;
|
|
19459
19478
|
|
|
19460
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19479
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
|
19461
19480
|
* ctypedef npy_cdouble complex_t
|
|
19462
19481
|
*
|
|
19463
19482
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -19476,7 +19495,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
19476
19495
|
return __pyx_r;
|
|
19477
19496
|
}
|
|
19478
19497
|
|
|
19479
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19498
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
|
19480
19499
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19481
19500
|
*
|
|
19482
19501
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19493,7 +19512,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19493
19512
|
int __pyx_clineno = 0;
|
|
19494
19513
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
|
|
19495
19514
|
|
|
19496
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19515
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
|
|
19497
19516
|
*
|
|
19498
19517
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
19499
19518
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -19507,7 +19526,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19507
19526
|
__pyx_t_1 = 0;
|
|
19508
19527
|
goto __pyx_L0;
|
|
19509
19528
|
|
|
19510
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19529
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
|
19511
19530
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
19512
19531
|
*
|
|
19513
19532
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -19526,7 +19545,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
19526
19545
|
return __pyx_r;
|
|
19527
19546
|
}
|
|
19528
19547
|
|
|
19529
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19548
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
|
19530
19549
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19531
19550
|
*
|
|
19532
19551
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19543,7 +19562,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19543
19562
|
int __pyx_clineno = 0;
|
|
19544
19563
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
|
|
19545
19564
|
|
|
19546
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19565
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
|
|
19547
19566
|
*
|
|
19548
19567
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
19549
19568
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -19557,7 +19576,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19557
19576
|
__pyx_t_1 = 0;
|
|
19558
19577
|
goto __pyx_L0;
|
|
19559
19578
|
|
|
19560
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19579
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
|
19561
19580
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
19562
19581
|
*
|
|
19563
19582
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -19576,7 +19595,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
19576
19595
|
return __pyx_r;
|
|
19577
19596
|
}
|
|
19578
19597
|
|
|
19579
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19598
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
|
19580
19599
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19581
19600
|
*
|
|
19582
19601
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19593,7 +19612,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19593
19612
|
int __pyx_clineno = 0;
|
|
19594
19613
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
|
|
19595
19614
|
|
|
19596
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19615
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
|
|
19597
19616
|
*
|
|
19598
19617
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
19599
19618
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -19607,7 +19626,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19607
19626
|
__pyx_t_1 = 0;
|
|
19608
19627
|
goto __pyx_L0;
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
|
19611
19630
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
19612
19631
|
*
|
|
19613
19632
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -19626,7 +19645,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
19626
19645
|
return __pyx_r;
|
|
19627
19646
|
}
|
|
19628
19647
|
|
|
19629
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19648
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
|
19630
19649
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19631
19650
|
*
|
|
19632
19651
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19643,7 +19662,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19643
19662
|
int __pyx_clineno = 0;
|
|
19644
19663
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
|
|
19645
19664
|
|
|
19646
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19665
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
|
|
19647
19666
|
*
|
|
19648
19667
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
19649
19668
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -19657,7 +19676,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19657
19676
|
__pyx_t_1 = 0;
|
|
19658
19677
|
goto __pyx_L0;
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
|
19661
19680
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
19662
19681
|
*
|
|
19663
19682
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -19676,7 +19695,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
19676
19695
|
return __pyx_r;
|
|
19677
19696
|
}
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
|
19680
19699
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19681
19700
|
*
|
|
19682
19701
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19690,7 +19709,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19690
19709
|
int __pyx_t_1;
|
|
19691
19710
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
|
|
19692
19711
|
|
|
19693
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19712
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19694
19713
|
*
|
|
19695
19714
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19696
19715
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19700,7 +19719,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19700
19719
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
19701
19720
|
if (__pyx_t_1) {
|
|
19702
19721
|
|
|
19703
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19722
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
|
|
19704
19723
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19705
19724
|
* if PyDataType_HASSUBARRAY(d):
|
|
19706
19725
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -19712,7 +19731,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19712
19731
|
__pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
|
|
19713
19732
|
goto __pyx_L0;
|
|
19714
19733
|
|
|
19715
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19734
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
|
19716
19735
|
*
|
|
19717
19736
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
19718
19737
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -19721,7 +19740,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19721
19740
|
*/
|
|
19722
19741
|
}
|
|
19723
19742
|
|
|
19724
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19743
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
|
|
19725
19744
|
* return <tuple>d.subarray.shape
|
|
19726
19745
|
* else:
|
|
19727
19746
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -19735,7 +19754,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19735
19754
|
goto __pyx_L0;
|
|
19736
19755
|
}
|
|
19737
19756
|
|
|
19738
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19757
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
|
19739
19758
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
19740
19759
|
*
|
|
19741
19760
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -19750,7 +19769,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19750
19769
|
return __pyx_r;
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
|
|
19754
19773
|
* int _import_umath() except -1
|
|
19755
19774
|
*
|
|
19756
19775
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19760,7 +19779,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
19760
19779
|
|
|
19761
19780
|
static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) {
|
|
19762
19781
|
|
|
19763
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19782
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":971
|
|
19764
19783
|
*
|
|
19765
19784
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19766
19785
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -19769,7 +19788,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19769
19788
|
*/
|
|
19770
19789
|
Py_INCREF(__pyx_v_base);
|
|
19771
19790
|
|
|
19772
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19791
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":972
|
|
19773
19792
|
* cdef inline void set_array_base(ndarray arr, object base):
|
|
19774
19793
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
19775
19794
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -19778,7 +19797,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19778
19797
|
*/
|
|
19779
19798
|
(void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base));
|
|
19780
19799
|
|
|
19781
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19800
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":970
|
|
19782
19801
|
* int _import_umath() except -1
|
|
19783
19802
|
*
|
|
19784
19803
|
* cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
|
|
@@ -19789,7 +19808,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
19789
19808
|
/* function exit code */
|
|
19790
19809
|
}
|
|
19791
19810
|
|
|
19792
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19811
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
|
|
19793
19812
|
* PyArray_SetBaseObject(arr, base)
|
|
19794
19813
|
*
|
|
19795
19814
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19804,7 +19823,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19804
19823
|
int __pyx_t_1;
|
|
19805
19824
|
__Pyx_RefNannySetupContext("get_array_base", 1);
|
|
19806
19825
|
|
|
19807
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19826
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":975
|
|
19808
19827
|
*
|
|
19809
19828
|
* cdef inline object get_array_base(ndarray arr):
|
|
19810
19829
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -19813,7 +19832,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19813
19832
|
*/
|
|
19814
19833
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
19815
19834
|
|
|
19816
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19835
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19817
19836
|
* cdef inline object get_array_base(ndarray arr):
|
|
19818
19837
|
* base = PyArray_BASE(arr)
|
|
19819
19838
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19823,7 +19842,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19823
19842
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
19824
19843
|
if (__pyx_t_1) {
|
|
19825
19844
|
|
|
19826
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19845
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":977
|
|
19827
19846
|
* base = PyArray_BASE(arr)
|
|
19828
19847
|
* if base is NULL:
|
|
19829
19848
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -19834,7 +19853,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19834
19853
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
19835
19854
|
goto __pyx_L0;
|
|
19836
19855
|
|
|
19837
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19856
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":976
|
|
19838
19857
|
* cdef inline object get_array_base(ndarray arr):
|
|
19839
19858
|
* base = PyArray_BASE(arr)
|
|
19840
19859
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -19843,7 +19862,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19843
19862
|
*/
|
|
19844
19863
|
}
|
|
19845
19864
|
|
|
19846
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19865
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":978
|
|
19847
19866
|
* if base is NULL:
|
|
19848
19867
|
* return None
|
|
19849
19868
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -19855,7 +19874,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19855
19874
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
19856
19875
|
goto __pyx_L0;
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":974
|
|
19859
19878
|
* PyArray_SetBaseObject(arr, base)
|
|
19860
19879
|
*
|
|
19861
19880
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -19870,7 +19889,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
19870
19889
|
return __pyx_r;
|
|
19871
19890
|
}
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
|
|
19874
19893
|
* # Versions of the import_* functions which are more suitable for
|
|
19875
19894
|
* # Cython code.
|
|
19876
19895
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -19894,7 +19913,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19894
19913
|
int __pyx_clineno = 0;
|
|
19895
19914
|
__Pyx_RefNannySetupContext("import_array", 1);
|
|
19896
19915
|
|
|
19897
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19916
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19898
19917
|
* # Cython code.
|
|
19899
19918
|
* cdef inline int import_array() except -1:
|
|
19900
19919
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19910,7 +19929,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19910
19929
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
19911
19930
|
/*try:*/ {
|
|
19912
19931
|
|
|
19913
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19932
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":984
|
|
19914
19933
|
* cdef inline int import_array() except -1:
|
|
19915
19934
|
* try:
|
|
19916
19935
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -19919,7 +19938,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19919
19938
|
*/
|
|
19920
19939
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 984, __pyx_L3_error)
|
|
19921
19940
|
|
|
19922
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19941
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19923
19942
|
* # Cython code.
|
|
19924
19943
|
* cdef inline int import_array() except -1:
|
|
19925
19944
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19933,7 +19952,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19933
19952
|
goto __pyx_L8_try_end;
|
|
19934
19953
|
__pyx_L3_error:;
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":985
|
|
19937
19956
|
* try:
|
|
19938
19957
|
* __pyx_import_array()
|
|
19939
19958
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -19948,7 +19967,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19948
19967
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
19949
19968
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
19950
19969
|
|
|
19951
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19970
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
|
|
19952
19971
|
* __pyx_import_array()
|
|
19953
19972
|
* except Exception:
|
|
19954
19973
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -19963,7 +19982,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19963
19982
|
}
|
|
19964
19983
|
goto __pyx_L5_except_error;
|
|
19965
19984
|
|
|
19966
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
19985
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":983
|
|
19967
19986
|
* # Cython code.
|
|
19968
19987
|
* cdef inline int import_array() except -1:
|
|
19969
19988
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -19979,7 +19998,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
19979
19998
|
__pyx_L8_try_end:;
|
|
19980
19999
|
}
|
|
19981
20000
|
|
|
19982
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20001
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":982
|
|
19983
20002
|
* # Versions of the import_* functions which are more suitable for
|
|
19984
20003
|
* # Cython code.
|
|
19985
20004
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20002,7 +20021,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
20002
20021
|
return __pyx_r;
|
|
20003
20022
|
}
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
|
|
20006
20025
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
20007
20026
|
*
|
|
20008
20027
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20026,7 +20045,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20026
20045
|
int __pyx_clineno = 0;
|
|
20027
20046
|
__Pyx_RefNannySetupContext("import_umath", 1);
|
|
20028
20047
|
|
|
20029
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20048
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
|
|
20030
20049
|
*
|
|
20031
20050
|
* cdef inline int import_umath() except -1:
|
|
20032
20051
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20042,7 +20061,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20042
20061
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
20043
20062
|
/*try:*/ {
|
|
20044
20063
|
|
|
20045
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20064
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":990
|
|
20046
20065
|
* cdef inline int import_umath() except -1:
|
|
20047
20066
|
* try:
|
|
20048
20067
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -20051,7 +20070,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20051
20070
|
*/
|
|
20052
20071
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 990, __pyx_L3_error)
|
|
20053
20072
|
|
|
20054
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20073
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
|
|
20055
20074
|
*
|
|
20056
20075
|
* cdef inline int import_umath() except -1:
|
|
20057
20076
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20065,7 +20084,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20065
20084
|
goto __pyx_L8_try_end;
|
|
20066
20085
|
__pyx_L3_error:;
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":991
|
|
20069
20088
|
* try:
|
|
20070
20089
|
* _import_umath()
|
|
20071
20090
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -20080,7 +20099,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20080
20099
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
20081
20100
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
20082
20101
|
|
|
20083
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20102
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
|
|
20084
20103
|
* _import_umath()
|
|
20085
20104
|
* except Exception:
|
|
20086
20105
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -20095,7 +20114,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20095
20114
|
}
|
|
20096
20115
|
goto __pyx_L5_except_error;
|
|
20097
20116
|
|
|
20098
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20117
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":989
|
|
20099
20118
|
*
|
|
20100
20119
|
* cdef inline int import_umath() except -1:
|
|
20101
20120
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20111,7 +20130,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20111
20130
|
__pyx_L8_try_end:;
|
|
20112
20131
|
}
|
|
20113
20132
|
|
|
20114
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20133
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":988
|
|
20115
20134
|
* raise ImportError("numpy.core.multiarray failed to import")
|
|
20116
20135
|
*
|
|
20117
20136
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20134,7 +20153,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
20134
20153
|
return __pyx_r;
|
|
20135
20154
|
}
|
|
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-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
|
20138
20157
|
* raise ImportError("numpy.core.umath failed to import")
|
|
20139
20158
|
*
|
|
20140
20159
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20158,7 +20177,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20158
20177
|
int __pyx_clineno = 0;
|
|
20159
20178
|
__Pyx_RefNannySetupContext("import_ufunc", 1);
|
|
20160
20179
|
|
|
20161
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20180
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
|
20162
20181
|
*
|
|
20163
20182
|
* cdef inline int import_ufunc() except -1:
|
|
20164
20183
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20174,7 +20193,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20174
20193
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
20175
20194
|
/*try:*/ {
|
|
20176
20195
|
|
|
20177
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20196
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
|
|
20178
20197
|
* cdef inline int import_ufunc() except -1:
|
|
20179
20198
|
* try:
|
|
20180
20199
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -20183,7 +20202,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20183
20202
|
*/
|
|
20184
20203
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L3_error)
|
|
20185
20204
|
|
|
20186
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20205
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
|
20187
20206
|
*
|
|
20188
20207
|
* cdef inline int import_ufunc() except -1:
|
|
20189
20208
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20197,7 +20216,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20197
20216
|
goto __pyx_L8_try_end;
|
|
20198
20217
|
__pyx_L3_error:;
|
|
20199
20218
|
|
|
20200
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20219
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":997
|
|
20201
20220
|
* try:
|
|
20202
20221
|
* _import_umath()
|
|
20203
20222
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -20212,7 +20231,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20212
20231
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
20213
20232
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
20214
20233
|
|
|
20215
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20234
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
|
20216
20235
|
* _import_umath()
|
|
20217
20236
|
* except Exception:
|
|
20218
20237
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -20227,7 +20246,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20227
20246
|
}
|
|
20228
20247
|
goto __pyx_L5_except_error;
|
|
20229
20248
|
|
|
20230
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20249
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
|
20231
20250
|
*
|
|
20232
20251
|
* cdef inline int import_ufunc() except -1:
|
|
20233
20252
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -20243,7 +20262,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20243
20262
|
__pyx_L8_try_end:;
|
|
20244
20263
|
}
|
|
20245
20264
|
|
|
20246
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20265
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
|
20247
20266
|
* raise ImportError("numpy.core.umath failed to import")
|
|
20248
20267
|
*
|
|
20249
20268
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -20266,7 +20285,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20266
20285
|
return __pyx_r;
|
|
20267
20286
|
}
|
|
20268
20287
|
|
|
20269
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20288
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
20270
20289
|
*
|
|
20271
20290
|
*
|
|
20272
20291
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20277,7 +20296,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
20277
20296
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
20278
20297
|
int __pyx_r;
|
|
20279
20298
|
|
|
20280
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20299
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
20281
20300
|
* bool
|
|
20282
20301
|
* """
|
|
20283
20302
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -20287,7 +20306,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20287
20306
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
20288
20307
|
goto __pyx_L0;
|
|
20289
20308
|
|
|
20290
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20309
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
20291
20310
|
*
|
|
20292
20311
|
*
|
|
20293
20312
|
* cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20300,7 +20319,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20300
20319
|
return __pyx_r;
|
|
20301
20320
|
}
|
|
20302
20321
|
|
|
20303
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20322
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
20304
20323
|
*
|
|
20305
20324
|
*
|
|
20306
20325
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20311,7 +20330,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
20311
20330
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
20312
20331
|
int __pyx_r;
|
|
20313
20332
|
|
|
20314
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20333
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1028
|
|
20315
20334
|
* bool
|
|
20316
20335
|
* """
|
|
20317
20336
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -20321,7 +20340,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20321
20340
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
20322
20341
|
goto __pyx_L0;
|
|
20323
20342
|
|
|
20324
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20343
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
20325
20344
|
*
|
|
20326
20345
|
*
|
|
20327
20346
|
* cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
|
|
@@ -20334,7 +20353,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20334
20353
|
return __pyx_r;
|
|
20335
20354
|
}
|
|
20336
20355
|
|
|
20337
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20356
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
20338
20357
|
*
|
|
20339
20358
|
*
|
|
20340
20359
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20345,7 +20364,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
20345
20364
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
20346
20365
|
npy_datetime __pyx_r;
|
|
20347
20366
|
|
|
20348
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20367
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1038
|
|
20349
20368
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
20350
20369
|
* """
|
|
20351
20370
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -20355,7 +20374,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20355
20374
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
20356
20375
|
goto __pyx_L0;
|
|
20357
20376
|
|
|
20358
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20377
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1031
|
|
20359
20378
|
*
|
|
20360
20379
|
*
|
|
20361
20380
|
* cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20368,7 +20387,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20368
20387
|
return __pyx_r;
|
|
20369
20388
|
}
|
|
20370
20389
|
|
|
20371
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20390
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
20372
20391
|
*
|
|
20373
20392
|
*
|
|
20374
20393
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20379,7 +20398,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
20379
20398
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
20380
20399
|
npy_timedelta __pyx_r;
|
|
20381
20400
|
|
|
20382
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20401
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1045
|
|
20383
20402
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
20384
20403
|
* """
|
|
20385
20404
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -20389,7 +20408,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20389
20408
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
20390
20409
|
goto __pyx_L0;
|
|
20391
20410
|
|
|
20392
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20411
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1041
|
|
20393
20412
|
*
|
|
20394
20413
|
*
|
|
20395
20414
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20402,7 +20421,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20402
20421
|
return __pyx_r;
|
|
20403
20422
|
}
|
|
20404
20423
|
|
|
20405
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20424
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
|
|
20406
20425
|
*
|
|
20407
20426
|
*
|
|
20408
20427
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -20413,7 +20432,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
20413
20432
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
20414
20433
|
NPY_DATETIMEUNIT __pyx_r;
|
|
20415
20434
|
|
|
20416
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20435
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
|
|
20417
20436
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
20418
20437
|
* """
|
|
20419
20438
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -20421,7 +20440,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
20421
20440
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
20422
20441
|
goto __pyx_L0;
|
|
20423
20442
|
|
|
20424
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
20443
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1048
|
|
20425
20444
|
*
|
|
20426
20445
|
*
|
|
20427
20446
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
|
|
@@ -24747,10 +24766,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
24747
24766
|
Py_ssize_t __pyx_v_itemsize;
|
|
24748
24767
|
int __pyx_v_dtype_signed;
|
|
24749
24768
|
Py_UCS4 __pyx_v_kind;
|
|
24750
|
-
int
|
|
24751
|
-
int
|
|
24752
|
-
int
|
|
24753
|
-
int
|
|
24769
|
+
int __pyx_v___pyx_fused_dtype_uint8_is_signed;
|
|
24770
|
+
int __pyx_v___pyx_fused_dtype_uint16_is_signed;
|
|
24771
|
+
int __pyx_v___pyx_fused_dtype_uint32_is_signed;
|
|
24772
|
+
int __pyx_v___pyx_fused_dtype_uint64_is_signed;
|
|
24754
24773
|
PyObject *__pyx_v_arg = NULL;
|
|
24755
24774
|
PyObject *__pyx_v_dtype = NULL;
|
|
24756
24775
|
PyObject *__pyx_v_arg_base = NULL;
|
|
@@ -24818,10 +24837,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
24818
24837
|
__pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
|
|
24819
24838
|
__pyx_t_1 = 0;
|
|
24820
24839
|
__pyx_v_itemsize = -1L;
|
|
24821
|
-
|
|
24822
|
-
|
|
24823
|
-
|
|
24824
|
-
|
|
24840
|
+
__pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint8)-1L) > 0));
|
|
24841
|
+
__pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint16)-1L) > 0));
|
|
24842
|
+
__pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint32)-1L) > 0));
|
|
24843
|
+
__pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint64)-1L) > 0));
|
|
24825
24844
|
if (unlikely(__pyx_v_args == Py_None)) {
|
|
24826
24845
|
PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
|
|
24827
24846
|
__PYX_ERR(0, 439, __pyx_L1_error)
|
|
@@ -24963,7 +24982,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
24963
24982
|
__pyx_t_2 = __pyx_t_4;
|
|
24964
24983
|
goto __pyx_L16_bool_binop_done;
|
|
24965
24984
|
}
|
|
24966
|
-
__pyx_t_4 = (!(
|
|
24985
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
24967
24986
|
__pyx_t_2 = __pyx_t_4;
|
|
24968
24987
|
__pyx_L16_bool_binop_done:;
|
|
24969
24988
|
if (__pyx_t_2) {
|
|
@@ -24986,7 +25005,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
24986
25005
|
__pyx_t_2 = __pyx_t_4;
|
|
24987
25006
|
goto __pyx_L20_bool_binop_done;
|
|
24988
25007
|
}
|
|
24989
|
-
__pyx_t_4 = (!(
|
|
25008
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
24990
25009
|
__pyx_t_2 = __pyx_t_4;
|
|
24991
25010
|
__pyx_L20_bool_binop_done:;
|
|
24992
25011
|
if (__pyx_t_2) {
|
|
@@ -25009,7 +25028,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
25009
25028
|
__pyx_t_2 = __pyx_t_4;
|
|
25010
25029
|
goto __pyx_L24_bool_binop_done;
|
|
25011
25030
|
}
|
|
25012
|
-
__pyx_t_4 = (!(
|
|
25031
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
25013
25032
|
__pyx_t_2 = __pyx_t_4;
|
|
25014
25033
|
__pyx_L24_bool_binop_done:;
|
|
25015
25034
|
if (__pyx_t_2) {
|
|
@@ -25032,7 +25051,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
25032
25051
|
__pyx_t_2 = __pyx_t_4;
|
|
25033
25052
|
goto __pyx_L28_bool_binop_done;
|
|
25034
25053
|
}
|
|
25035
|
-
__pyx_t_4 = (!(
|
|
25054
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
25036
25055
|
__pyx_t_2 = __pyx_t_4;
|
|
25037
25056
|
__pyx_L28_bool_binop_done:;
|
|
25038
25057
|
if (__pyx_t_2) {
|
|
@@ -28491,10 +28510,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
28491
28510
|
Py_ssize_t __pyx_v_itemsize;
|
|
28492
28511
|
int __pyx_v_dtype_signed;
|
|
28493
28512
|
Py_UCS4 __pyx_v_kind;
|
|
28494
|
-
int
|
|
28495
|
-
int
|
|
28496
|
-
int
|
|
28497
|
-
int
|
|
28513
|
+
int __pyx_v___pyx_fused_dtype_uint8_is_signed;
|
|
28514
|
+
int __pyx_v___pyx_fused_dtype_uint16_is_signed;
|
|
28515
|
+
int __pyx_v___pyx_fused_dtype_uint32_is_signed;
|
|
28516
|
+
int __pyx_v___pyx_fused_dtype_uint64_is_signed;
|
|
28498
28517
|
PyObject *__pyx_v_arg = NULL;
|
|
28499
28518
|
PyObject *__pyx_v_dtype = NULL;
|
|
28500
28519
|
PyObject *__pyx_v_arg_base = NULL;
|
|
@@ -28562,10 +28581,10 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
28562
28581
|
__pyx_v_ndarray = ((PyTypeObject*)__pyx_t_1);
|
|
28563
28582
|
__pyx_t_1 = 0;
|
|
28564
28583
|
__pyx_v_itemsize = -1L;
|
|
28565
|
-
|
|
28566
|
-
|
|
28567
|
-
|
|
28568
|
-
|
|
28584
|
+
__pyx_v___pyx_fused_dtype_uint8_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint8)-1L) > 0));
|
|
28585
|
+
__pyx_v___pyx_fused_dtype_uint16_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint16)-1L) > 0));
|
|
28586
|
+
__pyx_v___pyx_fused_dtype_uint32_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint32)-1L) > 0));
|
|
28587
|
+
__pyx_v___pyx_fused_dtype_uint64_is_signed = (!(((__pyx_t_7biotite_8sequence_5align_12kmeralphabet_uint64)-1L) > 0));
|
|
28569
28588
|
if (unlikely(__pyx_v_args == Py_None)) {
|
|
28570
28589
|
PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()");
|
|
28571
28590
|
__PYX_ERR(0, 496, __pyx_L1_error)
|
|
@@ -28707,7 +28726,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
28707
28726
|
__pyx_t_2 = __pyx_t_4;
|
|
28708
28727
|
goto __pyx_L16_bool_binop_done;
|
|
28709
28728
|
}
|
|
28710
|
-
__pyx_t_4 = (!(
|
|
28729
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint8_is_signed ^ __pyx_v_dtype_signed));
|
|
28711
28730
|
__pyx_t_2 = __pyx_t_4;
|
|
28712
28731
|
__pyx_L16_bool_binop_done:;
|
|
28713
28732
|
if (__pyx_t_2) {
|
|
@@ -28730,7 +28749,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
28730
28749
|
__pyx_t_2 = __pyx_t_4;
|
|
28731
28750
|
goto __pyx_L20_bool_binop_done;
|
|
28732
28751
|
}
|
|
28733
|
-
__pyx_t_4 = (!(
|
|
28752
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint16_is_signed ^ __pyx_v_dtype_signed));
|
|
28734
28753
|
__pyx_t_2 = __pyx_t_4;
|
|
28735
28754
|
__pyx_L20_bool_binop_done:;
|
|
28736
28755
|
if (__pyx_t_2) {
|
|
@@ -28753,7 +28772,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
28753
28772
|
__pyx_t_2 = __pyx_t_4;
|
|
28754
28773
|
goto __pyx_L24_bool_binop_done;
|
|
28755
28774
|
}
|
|
28756
|
-
__pyx_t_4 = (!(
|
|
28775
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint32_is_signed ^ __pyx_v_dtype_signed));
|
|
28757
28776
|
__pyx_t_2 = __pyx_t_4;
|
|
28758
28777
|
__pyx_L24_bool_binop_done:;
|
|
28759
28778
|
if (__pyx_t_2) {
|
|
@@ -28776,7 +28795,7 @@ static PyObject *__pyx_pf_7biotite_8sequence_5align_12kmeralphabet_12KmerAlphabe
|
|
|
28776
28795
|
__pyx_t_2 = __pyx_t_4;
|
|
28777
28796
|
goto __pyx_L28_bool_binop_done;
|
|
28778
28797
|
}
|
|
28779
|
-
__pyx_t_4 = (!(
|
|
28798
|
+
__pyx_t_4 = (!(__pyx_v___pyx_fused_dtype_uint64_is_signed ^ __pyx_v_dtype_signed));
|
|
28780
28799
|
__pyx_t_2 = __pyx_t_4;
|
|
28781
28800
|
__pyx_L28_bool_binop_done:;
|
|
28782
28801
|
if (__pyx_t_2) {
|
|
@@ -34193,7 +34212,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
34193
34212
|
__Pyx_GOTREF(__pyx_tuple__8);
|
|
34194
34213
|
__Pyx_GIVEREF(__pyx_tuple__8);
|
|
34195
34214
|
|
|
34196
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
34215
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":986
|
|
34197
34216
|
* __pyx_import_array()
|
|
34198
34217
|
* except Exception:
|
|
34199
34218
|
* raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -34204,7 +34223,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
|
|
|
34204
34223
|
__Pyx_GOTREF(__pyx_tuple__9);
|
|
34205
34224
|
__Pyx_GIVEREF(__pyx_tuple__9);
|
|
34206
34225
|
|
|
34207
|
-
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-
|
|
34226
|
+
/* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-4811s6gc/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":992
|
|
34208
34227
|
* _import_umath()
|
|
34209
34228
|
* except Exception:
|
|
34210
34229
|
* raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -34886,33 +34905,33 @@ static int __Pyx_modinit_type_import_code(void) {
|
|
|
34886
34905
|
/*--- Type import code ---*/
|
|
34887
34906
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
34888
34907
|
__Pyx_GOTREF(__pyx_t_1);
|
|
34889
|
-
__pyx_ptype_7cpython_4type_type =
|
|
34908
|
+
__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
34890
34909
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
34891
|
-
sizeof(PyTypeObject),
|
|
34910
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
34892
34911
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
34893
|
-
sizeof(PyTypeObject),
|
|
34912
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
|
|
34894
34913
|
#else
|
|
34895
|
-
sizeof(PyHeapTypeObject),
|
|
34914
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
|
|
34896
34915
|
#endif
|
|
34897
|
-
|
|
34916
|
+
__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
34898
34917
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
34899
34918
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
34900
34919
|
__Pyx_GOTREF(__pyx_t_1);
|
|
34901
|
-
__pyx_ptype_5numpy_dtype =
|
|
34902
|
-
__pyx_ptype_5numpy_flatiter =
|
|
34903
|
-
__pyx_ptype_5numpy_broadcast =
|
|
34904
|
-
__pyx_ptype_5numpy_ndarray =
|
|
34905
|
-
__pyx_ptype_5numpy_generic =
|
|
34906
|
-
__pyx_ptype_5numpy_number =
|
|
34907
|
-
__pyx_ptype_5numpy_integer =
|
|
34908
|
-
__pyx_ptype_5numpy_signedinteger =
|
|
34909
|
-
__pyx_ptype_5numpy_unsignedinteger =
|
|
34910
|
-
__pyx_ptype_5numpy_inexact =
|
|
34911
|
-
__pyx_ptype_5numpy_floating =
|
|
34912
|
-
__pyx_ptype_5numpy_complexfloating =
|
|
34913
|
-
__pyx_ptype_5numpy_flexible =
|
|
34914
|
-
__pyx_ptype_5numpy_character =
|
|
34915
|
-
__pyx_ptype_5numpy_ufunc =
|
|
34920
|
+
__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
|
|
34921
|
+
__pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
|
|
34922
|
+
__pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
|
|
34923
|
+
__pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
|
|
34924
|
+
__pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 812, __pyx_L1_error)
|
|
34925
|
+
__pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 814, __pyx_L1_error)
|
|
34926
|
+
__pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 816, __pyx_L1_error)
|
|
34927
|
+
__pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 818, __pyx_L1_error)
|
|
34928
|
+
__pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 820, __pyx_L1_error)
|
|
34929
|
+
__pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 822, __pyx_L1_error)
|
|
34930
|
+
__pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 824, __pyx_L1_error)
|
|
34931
|
+
__pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 826, __pyx_L1_error)
|
|
34932
|
+
__pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 828, __pyx_L1_error)
|
|
34933
|
+
__pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 830, __pyx_L1_error)
|
|
34934
|
+
__pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 868, __pyx_L1_error)
|
|
34916
34935
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
34917
34936
|
__Pyx_RefNannyFinishContext();
|
|
34918
34937
|
return 0;
|
|
@@ -36616,11 +36635,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
|
|
|
36616
36635
|
{
|
|
36617
36636
|
int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
|
|
36618
36637
|
if (unlikely(eq != 0)) {
|
|
36619
|
-
if (unlikely(eq < 0)) return NULL;
|
|
36638
|
+
if (unlikely(eq < 0)) return NULL;
|
|
36620
36639
|
return kwvalues[i];
|
|
36621
36640
|
}
|
|
36622
36641
|
}
|
|
36623
|
-
return NULL;
|
|
36642
|
+
return NULL;
|
|
36624
36643
|
}
|
|
36625
36644
|
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
|
|
36626
36645
|
CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
|
|
@@ -36733,7 +36752,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
36733
36752
|
if (*name) {
|
|
36734
36753
|
values[name-argnames] = value;
|
|
36735
36754
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
36736
|
-
Py_INCREF(value);
|
|
36755
|
+
Py_INCREF(value);
|
|
36737
36756
|
Py_DECREF(key);
|
|
36738
36757
|
#endif
|
|
36739
36758
|
key = NULL;
|
|
@@ -36752,7 +36771,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
36752
36771
|
&& _PyString_Eq(**name, key)) {
|
|
36753
36772
|
values[name-argnames] = value;
|
|
36754
36773
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
36755
|
-
value = NULL;
|
|
36774
|
+
value = NULL;
|
|
36756
36775
|
#endif
|
|
36757
36776
|
break;
|
|
36758
36777
|
}
|
|
@@ -36784,7 +36803,7 @@ static int __Pyx_ParseOptionalKeywords(
|
|
|
36784
36803
|
if (cmp == 0) {
|
|
36785
36804
|
values[name-argnames] = value;
|
|
36786
36805
|
#if CYTHON_AVOID_BORROWED_REFS
|
|
36787
|
-
value = NULL;
|
|
36806
|
+
value = NULL;
|
|
36788
36807
|
#endif
|
|
36789
36808
|
break;
|
|
36790
36809
|
}
|
|
@@ -39050,9 +39069,10 @@ static int __Pyx_PyMemoryView_Get_ndim(PyObject *obj) {
|
|
|
39050
39069
|
|
|
39051
39070
|
/* IterFinish */
|
|
39052
39071
|
static CYTHON_INLINE int __Pyx_IterFinish(void) {
|
|
39072
|
+
PyObject* exc_type;
|
|
39053
39073
|
__Pyx_PyThreadState_declare
|
|
39054
39074
|
__Pyx_PyThreadState_assign
|
|
39055
|
-
|
|
39075
|
+
exc_type = __Pyx_PyErr_CurrentExceptionType();
|
|
39056
39076
|
if (unlikely(exc_type)) {
|
|
39057
39077
|
if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
|
|
39058
39078
|
return -1;
|
|
@@ -39376,9 +39396,10 @@ static CYTHON_INLINE int __Pyx_dict_iter_next(
|
|
|
39376
39396
|
|
|
39377
39397
|
/* UnpackUnboundCMethod */
|
|
39378
39398
|
static PyObject *__Pyx_SelflessCall(PyObject *method, PyObject *args, PyObject *kwargs) {
|
|
39399
|
+
PyObject *result;
|
|
39379
39400
|
PyObject *selfless_args = PyTuple_GetSlice(args, 1, PyTuple_Size(args));
|
|
39380
39401
|
if (unlikely(!selfless_args)) return NULL;
|
|
39381
|
-
|
|
39402
|
+
result = PyObject_Call(method, selfless_args, kwargs);
|
|
39382
39403
|
Py_DECREF(selfless_args);
|
|
39383
39404
|
return result;
|
|
39384
39405
|
}
|
|
@@ -40095,10 +40116,10 @@ __PYX_GOOD:
|
|
|
40095
40116
|
#endif
|
|
40096
40117
|
|
|
40097
40118
|
/* TypeImport */
|
|
40098
|
-
#ifndef
|
|
40099
|
-
#define
|
|
40100
|
-
static PyTypeObject *
|
|
40101
|
-
size_t size, size_t alignment, enum
|
|
40119
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_0_10
|
|
40120
|
+
#define __PYX_HAVE_RT_ImportType_3_0_10
|
|
40121
|
+
static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
|
|
40122
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
|
|
40102
40123
|
{
|
|
40103
40124
|
PyObject *result = 0;
|
|
40104
40125
|
char warning[200];
|
|
@@ -40152,7 +40173,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
40152
40173
|
module_name, class_name, size, basicsize+itemsize);
|
|
40153
40174
|
goto bad;
|
|
40154
40175
|
}
|
|
40155
|
-
if (check_size ==
|
|
40176
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
|
|
40156
40177
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
40157
40178
|
PyErr_Format(PyExc_ValueError,
|
|
40158
40179
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -40160,7 +40181,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
|
|
|
40160
40181
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
40161
40182
|
goto bad;
|
|
40162
40183
|
}
|
|
40163
|
-
else if (check_size ==
|
|
40184
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
|
|
40164
40185
|
PyOS_snprintf(warning, sizeof(warning),
|
|
40165
40186
|
"%s.%s size changed, may indicate binary incompatibility. "
|
|
40166
40187
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -41278,7 +41299,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
|
|
|
41278
41299
|
default:
|
|
41279
41300
|
return NULL;
|
|
41280
41301
|
}
|
|
41281
|
-
return ((
|
|
41302
|
+
return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
|
|
41282
41303
|
}
|
|
41283
41304
|
static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
|
|
41284
41305
|
{
|
|
@@ -42332,7 +42353,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
|
|
|
42332
42353
|
#else
|
|
42333
42354
|
py_code = PyCode_NewEmpty(filename, funcname, py_line);
|
|
42334
42355
|
#endif
|
|
42335
|
-
Py_XDECREF(py_funcname);
|
|
42356
|
+
Py_XDECREF(py_funcname);
|
|
42336
42357
|
return py_code;
|
|
42337
42358
|
bad:
|
|
42338
42359
|
Py_XDECREF(py_funcname);
|