obliquetree 1.0.3__cp312-cp312-macosx_11_0_arm64.whl → 1.0.4__cp312-cp312-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of obliquetree might be problematic. Click here for more details.
- obliquetree/__init__.py +1 -1
- obliquetree/src/base.cpp +371 -331
- obliquetree/src/base.cpython-312-darwin.so +0 -0
- obliquetree/src/ccp.cpp +109 -74
- obliquetree/src/ccp.cpython-312-darwin.so +0 -0
- obliquetree/src/metric.cpp +263 -219
- obliquetree/src/metric.cpython-312-darwin.so +0 -0
- obliquetree/src/oblique.cpp +377 -342
- obliquetree/src/oblique.cpython-312-darwin.so +0 -0
- obliquetree/src/tree.cpp +609 -565
- obliquetree/src/tree.cpython-312-darwin.so +0 -0
- obliquetree/src/utils.cpp +160 -120
- obliquetree/src/utils.cpython-312-darwin.so +0 -0
- {obliquetree-1.0.3.dist-info → obliquetree-1.0.4.dist-info}/METADATA +1 -1
- obliquetree-1.0.4.dist-info/RECORD +21 -0
- obliquetree-1.0.3.dist-info/RECORD +0 -21
- {obliquetree-1.0.3.dist-info → obliquetree-1.0.4.dist-info}/WHEEL +0 -0
- {obliquetree-1.0.3.dist-info → obliquetree-1.0.4.dist-info}/licenses/LICENSE +0 -0
- {obliquetree-1.0.3.dist-info → obliquetree-1.0.4.dist-info}/top_level.txt +0 -0
obliquetree/src/oblique.cpp
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* Generated by Cython 3.1.
|
|
1
|
+
/* Generated by Cython 3.1.6 */
|
|
2
2
|
|
|
3
3
|
/* BEGIN: Cython Metadata
|
|
4
4
|
{
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
]
|
|
11
11
|
],
|
|
12
12
|
"depends": [
|
|
13
|
-
"/private/var/folders/
|
|
14
|
-
"/private/var/folders/
|
|
15
|
-
"/private/var/folders/
|
|
16
|
-
"/private/var/folders/
|
|
17
|
-
"/private/var/folders/
|
|
13
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/_core/include/numpy/arrayobject.h",
|
|
14
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/_core/include/numpy/arrayscalars.h",
|
|
15
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/_core/include/numpy/ndarrayobject.h",
|
|
16
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/_core/include/numpy/ndarraytypes.h",
|
|
17
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/_core/include/numpy/ufuncobject.h"
|
|
18
18
|
],
|
|
19
19
|
"extra_compile_args": [
|
|
20
20
|
"-O3",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"-std=c++17"
|
|
26
26
|
],
|
|
27
27
|
"include_dirs": [
|
|
28
|
-
"/private/var/folders/
|
|
28
|
+
"/private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/_core/include"
|
|
29
29
|
],
|
|
30
30
|
"language": "c++",
|
|
31
31
|
"name": "obliquetree.src.oblique",
|
|
@@ -41,8 +41,16 @@ END: Cython Metadata */
|
|
|
41
41
|
#define PY_SSIZE_T_CLEAN
|
|
42
42
|
#endif /* PY_SSIZE_T_CLEAN */
|
|
43
43
|
/* InitLimitedAPI */
|
|
44
|
-
#if defined(Py_LIMITED_API)
|
|
44
|
+
#if defined(Py_LIMITED_API)
|
|
45
|
+
#if !defined(CYTHON_LIMITED_API)
|
|
45
46
|
#define CYTHON_LIMITED_API 1
|
|
47
|
+
#endif
|
|
48
|
+
#elif defined(CYTHON_LIMITED_API)
|
|
49
|
+
#ifdef _MSC_VER
|
|
50
|
+
#pragma message ("Limited API usage is enabled with 'CYTHON_LIMITED_API' but 'Py_LIMITED_API' does not define a Python target version. Consider setting 'Py_LIMITED_API' instead.")
|
|
51
|
+
#else
|
|
52
|
+
#warning Limited API usage is enabled with 'CYTHON_LIMITED_API' but 'Py_LIMITED_API' does not define a Python target version. Consider setting 'Py_LIMITED_API' instead.
|
|
53
|
+
#endif
|
|
46
54
|
#endif
|
|
47
55
|
|
|
48
56
|
#include "Python.h"
|
|
@@ -51,8 +59,8 @@ END: Cython Metadata */
|
|
|
51
59
|
#elif PY_VERSION_HEX < 0x03080000
|
|
52
60
|
#error Cython requires Python 3.8+.
|
|
53
61
|
#else
|
|
54
|
-
#define __PYX_ABI_VERSION "
|
|
55
|
-
#define CYTHON_HEX_VERSION
|
|
62
|
+
#define __PYX_ABI_VERSION "3_1_6"
|
|
63
|
+
#define CYTHON_HEX_VERSION 0x030106F0
|
|
56
64
|
#define CYTHON_FUTURE_DIVISION 1
|
|
57
65
|
/* CModulePreamble */
|
|
58
66
|
#include <stddef.h>
|
|
@@ -415,6 +423,9 @@ END: Cython Metadata */
|
|
|
415
423
|
enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
|
|
416
424
|
#endif
|
|
417
425
|
#endif
|
|
426
|
+
#ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
|
|
427
|
+
#define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
|
|
428
|
+
#endif
|
|
418
429
|
#ifndef __has_attribute
|
|
419
430
|
#define __has_attribute(x) 0
|
|
420
431
|
#endif
|
|
@@ -1332,6 +1343,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
|
|
|
1332
1343
|
typedef sdigit __Pyx_compact_pylong;
|
|
1333
1344
|
typedef digit __Pyx_compact_upylong;
|
|
1334
1345
|
#endif
|
|
1346
|
+
static CYTHON_INLINE int __Pyx_PyLong_CompactAsLong(PyObject *x, long *return_value);
|
|
1335
1347
|
#if PY_VERSION_HEX >= 0x030C00A5
|
|
1336
1348
|
#define __Pyx_PyLong_Digits(x) (((PyLongObject*)x)->long_value.ob_digit)
|
|
1337
1349
|
#else
|
|
@@ -1408,7 +1420,7 @@ static const char *__pyx_filename;
|
|
|
1408
1420
|
static const char* const __pyx_f[] = {
|
|
1409
1421
|
"obliquetree/src/oblique.pyx",
|
|
1410
1422
|
"<stringsource>",
|
|
1411
|
-
"../../../../../private/var/folders/
|
|
1423
|
+
"../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd",
|
|
1412
1424
|
"cpython/type.pxd",
|
|
1413
1425
|
"obliquetree/src/base.pxd",
|
|
1414
1426
|
};
|
|
@@ -1632,7 +1644,7 @@ typedef struct {
|
|
|
1632
1644
|
|
|
1633
1645
|
/* #### Code section: numeric_typedefs ### */
|
|
1634
1646
|
|
|
1635
|
-
/* "../../../../../private/var/folders/
|
|
1647
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":743
|
|
1636
1648
|
* # in Cython to enable them only on the right systems.
|
|
1637
1649
|
*
|
|
1638
1650
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
|
@@ -1641,7 +1653,7 @@ typedef struct {
|
|
|
1641
1653
|
*/
|
|
1642
1654
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1643
1655
|
|
|
1644
|
-
/* "../../../../../private/var/folders/
|
|
1656
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
|
|
1645
1657
|
*
|
|
1646
1658
|
* ctypedef npy_int8 int8_t
|
|
1647
1659
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
|
@@ -1650,7 +1662,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
|
1650
1662
|
*/
|
|
1651
1663
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1652
1664
|
|
|
1653
|
-
/* "../../../../../private/var/folders/
|
|
1665
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
|
|
1654
1666
|
* ctypedef npy_int8 int8_t
|
|
1655
1667
|
* ctypedef npy_int16 int16_t
|
|
1656
1668
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
|
@@ -1659,7 +1671,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
|
1659
1671
|
*/
|
|
1660
1672
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1661
1673
|
|
|
1662
|
-
/* "../../../../../private/var/folders/
|
|
1674
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":746
|
|
1663
1675
|
* ctypedef npy_int16 int16_t
|
|
1664
1676
|
* ctypedef npy_int32 int32_t
|
|
1665
1677
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
|
@@ -1668,7 +1680,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
|
1668
1680
|
*/
|
|
1669
1681
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1670
1682
|
|
|
1671
|
-
/* "../../../../../private/var/folders/
|
|
1683
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":748
|
|
1672
1684
|
* ctypedef npy_int64 int64_t
|
|
1673
1685
|
*
|
|
1674
1686
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
|
@@ -1677,7 +1689,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
|
1677
1689
|
*/
|
|
1678
1690
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1679
1691
|
|
|
1680
|
-
/* "../../../../../private/var/folders/
|
|
1692
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":749
|
|
1681
1693
|
*
|
|
1682
1694
|
* ctypedef npy_uint8 uint8_t
|
|
1683
1695
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
|
@@ -1686,7 +1698,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
|
1686
1698
|
*/
|
|
1687
1699
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1688
1700
|
|
|
1689
|
-
/* "../../../../../private/var/folders/
|
|
1701
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":750
|
|
1690
1702
|
* ctypedef npy_uint8 uint8_t
|
|
1691
1703
|
* ctypedef npy_uint16 uint16_t
|
|
1692
1704
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
|
@@ -1695,7 +1707,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
|
1695
1707
|
*/
|
|
1696
1708
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1697
1709
|
|
|
1698
|
-
/* "../../../../../private/var/folders/
|
|
1710
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":751
|
|
1699
1711
|
* ctypedef npy_uint16 uint16_t
|
|
1700
1712
|
* ctypedef npy_uint32 uint32_t
|
|
1701
1713
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
|
@@ -1704,7 +1716,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
|
1704
1716
|
*/
|
|
1705
1717
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1706
1718
|
|
|
1707
|
-
/* "../../../../../private/var/folders/
|
|
1719
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":753
|
|
1708
1720
|
* ctypedef npy_uint64 uint64_t
|
|
1709
1721
|
*
|
|
1710
1722
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
|
@@ -1713,7 +1725,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
|
1713
1725
|
*/
|
|
1714
1726
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1715
1727
|
|
|
1716
|
-
/* "../../../../../private/var/folders/
|
|
1728
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
|
|
1717
1729
|
*
|
|
1718
1730
|
* ctypedef npy_float32 float32_t
|
|
1719
1731
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
|
@@ -1722,7 +1734,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
|
1722
1734
|
*/
|
|
1723
1735
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1724
1736
|
|
|
1725
|
-
/* "../../../../../private/var/folders/
|
|
1737
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
|
|
1726
1738
|
* ctypedef double complex complex128_t
|
|
1727
1739
|
*
|
|
1728
1740
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
|
@@ -1731,7 +1743,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
|
1731
1743
|
*/
|
|
1732
1744
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1733
1745
|
|
|
1734
|
-
/* "../../../../../private/var/folders/
|
|
1746
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":762
|
|
1735
1747
|
*
|
|
1736
1748
|
* ctypedef npy_longlong longlong_t
|
|
1737
1749
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
|
@@ -1740,7 +1752,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
|
1740
1752
|
*/
|
|
1741
1753
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1742
1754
|
|
|
1743
|
-
/* "../../../../../private/var/folders/
|
|
1755
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
|
|
1744
1756
|
* ctypedef npy_ulonglong ulonglong_t
|
|
1745
1757
|
*
|
|
1746
1758
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
|
@@ -1749,7 +1761,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
|
1749
1761
|
*/
|
|
1750
1762
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1751
1763
|
|
|
1752
|
-
/* "../../../../../private/var/folders/
|
|
1764
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
|
|
1753
1765
|
*
|
|
1754
1766
|
* ctypedef npy_intp intp_t
|
|
1755
1767
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
|
@@ -1758,7 +1770,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
|
1758
1770
|
*/
|
|
1759
1771
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1760
1772
|
|
|
1761
|
-
/* "../../../../../private/var/folders/
|
|
1773
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
|
|
1762
1774
|
* ctypedef npy_uintp uintp_t
|
|
1763
1775
|
*
|
|
1764
1776
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
|
@@ -1767,7 +1779,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
|
1767
1779
|
*/
|
|
1768
1780
|
typedef npy_double __pyx_t_5numpy_float_t;
|
|
1769
1781
|
|
|
1770
|
-
/* "../../../../../private/var/folders/
|
|
1782
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
|
|
1771
1783
|
*
|
|
1772
1784
|
* ctypedef npy_double float_t
|
|
1773
1785
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
|
@@ -1776,7 +1788,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
|
1776
1788
|
*/
|
|
1777
1789
|
typedef npy_double __pyx_t_5numpy_double_t;
|
|
1778
1790
|
|
|
1779
|
-
/* "../../../../../private/var/folders/
|
|
1791
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
|
|
1780
1792
|
* ctypedef npy_double float_t
|
|
1781
1793
|
* ctypedef npy_double double_t
|
|
1782
1794
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
|
@@ -2947,22 +2959,22 @@ static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k);
|
|
|
2947
2959
|
static int __Pyx_setup_reduce(PyObject* type_obj);
|
|
2948
2960
|
|
|
2949
2961
|
/* TypeImport.proto */
|
|
2950
|
-
#ifndef
|
|
2951
|
-
#define
|
|
2962
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_6
|
|
2963
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_6
|
|
2952
2964
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
|
2953
2965
|
#include <stdalign.h>
|
|
2954
2966
|
#endif
|
|
2955
2967
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
|
2956
|
-
#define
|
|
2968
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_6(s) alignof(s)
|
|
2957
2969
|
#else
|
|
2958
|
-
#define
|
|
2970
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_6(s) sizeof(void*)
|
|
2959
2971
|
#endif
|
|
2960
|
-
enum
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2972
|
+
enum __Pyx_ImportType_CheckSize_3_1_6 {
|
|
2973
|
+
__Pyx_ImportType_CheckSize_Error_3_1_6 = 0,
|
|
2974
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6 = 1,
|
|
2975
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6 = 2
|
|
2964
2976
|
};
|
|
2965
|
-
static PyTypeObject *
|
|
2977
|
+
static PyTypeObject *__Pyx_ImportType_3_1_6(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_6 check_size);
|
|
2966
2978
|
#endif
|
|
2967
2979
|
|
|
2968
2980
|
/* ListPack.proto */
|
|
@@ -3257,7 +3269,7 @@ static int __Pyx_check_binary_version(unsigned long ct_version, unsigned long rt
|
|
|
3257
3269
|
static int __Pyx_ExportFunction(const char *name, void (*f)(void), const char *sig);
|
|
3258
3270
|
|
|
3259
3271
|
/* FunctionImport.proto */
|
|
3260
|
-
static int
|
|
3272
|
+
static int __Pyx_ImportFunction_3_1_6(PyObject *module, const char *funcname, void (**f)(void), const char *sig);
|
|
3261
3273
|
|
|
3262
3274
|
/* MultiPhaseInitModuleState.proto */
|
|
3263
3275
|
#if CYTHON_PEP489_MULTI_PHASE_INIT && CYTHON_USE_MODULE_STATE
|
|
@@ -4064,7 +4076,7 @@ static int __pyx_array___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, P
|
|
|
4064
4076
|
default: goto __pyx_L5_argtuple_error;
|
|
4065
4077
|
}
|
|
4066
4078
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
4067
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__cinit__", 0) < 0) __PYX_ERR(1, 129, __pyx_L3_error)
|
|
4079
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__cinit__", 0) < (0)) __PYX_ERR(1, 129, __pyx_L3_error)
|
|
4068
4080
|
if (!values[3]) values[3] = __Pyx_NewRef(((PyObject *)__pyx_mstate_global->__pyx_n_u_c));
|
|
4069
4081
|
for (Py_ssize_t i = __pyx_nargs; i < 3; i++) {
|
|
4070
4082
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 3, 5, i); __PYX_ERR(1, 129, __pyx_L3_error) }
|
|
@@ -5678,7 +5690,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
5678
5690
|
default: goto __pyx_L5_argtuple_error;
|
|
5679
5691
|
}
|
|
5680
5692
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
5681
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < 0) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
5693
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
5682
5694
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
5683
5695
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 3, __pyx_L3_error) }
|
|
5684
5696
|
}
|
|
@@ -6023,7 +6035,7 @@ static struct __pyx_array_obj *__pyx_array_new(PyObject *__pyx_v_shape, Py_ssize
|
|
|
6023
6035
|
__pyx_t_4 = 0;
|
|
6024
6036
|
__pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(1, 273, __pyx_L1_error)
|
|
6025
6037
|
__Pyx_GOTREF(__pyx_t_4);
|
|
6026
|
-
if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_allocate_buffer, Py_False) < 0) __PYX_ERR(1, 273, __pyx_L1_error)
|
|
6038
|
+
if (PyDict_SetItem(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_allocate_buffer, Py_False) < (0)) __PYX_ERR(1, 273, __pyx_L1_error)
|
|
6027
6039
|
__pyx_t_3 = ((PyObject *)__pyx_tp_new_array(((PyTypeObject *)__pyx_mstate_global->__pyx_array_type), __pyx_t_1, __pyx_t_4)); if (unlikely(!__pyx_t_3)) __PYX_ERR(1, 273, __pyx_L1_error)
|
|
6028
6040
|
__Pyx_GOTREF((PyObject *)__pyx_t_3);
|
|
6029
6041
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -6118,7 +6130,7 @@ static int __pyx_MemviewEnum___init__(PyObject *__pyx_v_self, PyObject *__pyx_ar
|
|
|
6118
6130
|
default: goto __pyx_L5_argtuple_error;
|
|
6119
6131
|
}
|
|
6120
6132
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
6121
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__init__", 0) < 0) __PYX_ERR(1, 302, __pyx_L3_error)
|
|
6133
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__init__", 0) < (0)) __PYX_ERR(1, 302, __pyx_L3_error)
|
|
6122
6134
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
6123
6135
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__init__", 1, 1, 1, i); __PYX_ERR(1, 302, __pyx_L3_error) }
|
|
6124
6136
|
}
|
|
@@ -6555,7 +6567,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
6555
6567
|
default: goto __pyx_L5_argtuple_error;
|
|
6556
6568
|
}
|
|
6557
6569
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
6558
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < 0) __PYX_ERR(1, 16, __pyx_L3_error)
|
|
6570
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 16, __pyx_L3_error)
|
|
6559
6571
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
6560
6572
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 16, __pyx_L3_error) }
|
|
6561
6573
|
}
|
|
@@ -6680,7 +6692,7 @@ static int __pyx_memoryview___cinit__(PyObject *__pyx_v_self, PyObject *__pyx_ar
|
|
|
6680
6692
|
default: goto __pyx_L5_argtuple_error;
|
|
6681
6693
|
}
|
|
6682
6694
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
6683
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__cinit__", 0) < 0) __PYX_ERR(1, 347, __pyx_L3_error)
|
|
6695
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__cinit__", 0) < (0)) __PYX_ERR(1, 347, __pyx_L3_error)
|
|
6684
6696
|
for (Py_ssize_t i = __pyx_nargs; i < 2; i++) {
|
|
6685
6697
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 2, 3, i); __PYX_ERR(1, 347, __pyx_L3_error) }
|
|
6686
6698
|
}
|
|
@@ -10997,7 +11009,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
10997
11009
|
default: goto __pyx_L5_argtuple_error;
|
|
10998
11010
|
}
|
|
10999
11011
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
11000
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < 0) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
11012
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
11001
11013
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
11002
11014
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 3, __pyx_L3_error) }
|
|
11003
11015
|
}
|
|
@@ -13884,7 +13896,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
13884
13896
|
default: goto __pyx_L5_argtuple_error;
|
|
13885
13897
|
}
|
|
13886
13898
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
13887
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < 0) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
13899
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__setstate_cython__", 0) < (0)) __PYX_ERR(1, 3, __pyx_L3_error)
|
|
13888
13900
|
for (Py_ssize_t i = __pyx_nargs; i < 1; i++) {
|
|
13889
13901
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__setstate_cython__", 1, 1, 1, i); __PYX_ERR(1, 3, __pyx_L3_error) }
|
|
13890
13902
|
}
|
|
@@ -17043,7 +17055,7 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
|
17043
17055
|
default: goto __pyx_L5_argtuple_error;
|
|
17044
17056
|
}
|
|
17045
17057
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
|
17046
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__pyx_unpickle_Enum", 0) < 0) __PYX_ERR(1, 1, __pyx_L3_error)
|
|
17058
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "__pyx_unpickle_Enum", 0) < (0)) __PYX_ERR(1, 1, __pyx_L3_error)
|
|
17047
17059
|
for (Py_ssize_t i = __pyx_nargs; i < 3; i++) {
|
|
17048
17060
|
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("__pyx_unpickle_Enum", 1, 3, 3, i); __PYX_ERR(1, 1, __pyx_L3_error) }
|
|
17049
17061
|
}
|
|
@@ -17365,7 +17377,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
17365
17377
|
return __pyx_r;
|
|
17366
17378
|
}
|
|
17367
17379
|
|
|
17368
|
-
/* "../../../../../private/var/folders/
|
|
17380
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":242
|
|
17369
17381
|
* cdef int type_num
|
|
17370
17382
|
*
|
|
17371
17383
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17376,7 +17388,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
|
17376
17388
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
|
17377
17389
|
npy_intp __pyx_r;
|
|
17378
17390
|
|
|
17379
|
-
/* "../../../../../private/var/folders/
|
|
17391
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":244
|
|
17380
17392
|
* @property
|
|
17381
17393
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
|
17382
17394
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -17386,7 +17398,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
17386
17398
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
|
17387
17399
|
goto __pyx_L0;
|
|
17388
17400
|
|
|
17389
|
-
/* "../../../../../private/var/folders/
|
|
17401
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":242
|
|
17390
17402
|
* cdef int type_num
|
|
17391
17403
|
*
|
|
17392
17404
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17399,7 +17411,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
17399
17411
|
return __pyx_r;
|
|
17400
17412
|
}
|
|
17401
17413
|
|
|
17402
|
-
/* "../../../../../private/var/folders/
|
|
17414
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":246
|
|
17403
17415
|
* return PyDataType_ELSIZE(self)
|
|
17404
17416
|
*
|
|
17405
17417
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17410,7 +17422,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
|
17410
17422
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
|
17411
17423
|
npy_intp __pyx_r;
|
|
17412
17424
|
|
|
17413
|
-
/* "../../../../../private/var/folders/
|
|
17425
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
|
|
17414
17426
|
* @property
|
|
17415
17427
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
|
17416
17428
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
|
@@ -17420,7 +17432,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
17420
17432
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
|
17421
17433
|
goto __pyx_L0;
|
|
17422
17434
|
|
|
17423
|
-
/* "../../../../../private/var/folders/
|
|
17435
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":246
|
|
17424
17436
|
* return PyDataType_ELSIZE(self)
|
|
17425
17437
|
*
|
|
17426
17438
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17433,7 +17445,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
|
17433
17445
|
return __pyx_r;
|
|
17434
17446
|
}
|
|
17435
17447
|
|
|
17436
|
-
/* "../../../../../private/var/folders/
|
|
17448
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":252
|
|
17437
17449
|
* # Use fields/names with care as they may be NULL. You must check
|
|
17438
17450
|
* # for this using PyDataType_HASFIELDS.
|
|
17439
17451
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17447,7 +17459,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
17447
17459
|
PyObject *__pyx_t_1;
|
|
17448
17460
|
__Pyx_RefNannySetupContext("fields", 0);
|
|
17449
17461
|
|
|
17450
|
-
/* "../../../../../private/var/folders/
|
|
17462
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
|
|
17451
17463
|
* @property
|
|
17452
17464
|
* cdef inline object fields(self):
|
|
17453
17465
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
|
@@ -17460,7 +17472,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
17460
17472
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
|
17461
17473
|
goto __pyx_L0;
|
|
17462
17474
|
|
|
17463
|
-
/* "../../../../../private/var/folders/
|
|
17475
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":252
|
|
17464
17476
|
* # Use fields/names with care as they may be NULL. You must check
|
|
17465
17477
|
* # for this using PyDataType_HASFIELDS.
|
|
17466
17478
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17475,7 +17487,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
|
17475
17487
|
return __pyx_r;
|
|
17476
17488
|
}
|
|
17477
17489
|
|
|
17478
|
-
/* "../../../../../private/var/folders/
|
|
17490
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":256
|
|
17479
17491
|
* return <object>PyDataType_FIELDS(self)
|
|
17480
17492
|
*
|
|
17481
17493
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17489,7 +17501,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
17489
17501
|
PyObject *__pyx_t_1;
|
|
17490
17502
|
__Pyx_RefNannySetupContext("names", 0);
|
|
17491
17503
|
|
|
17492
|
-
/* "../../../../../private/var/folders/
|
|
17504
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":258
|
|
17493
17505
|
* @property
|
|
17494
17506
|
* cdef inline tuple names(self):
|
|
17495
17507
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
|
@@ -17502,7 +17514,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
17502
17514
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
|
17503
17515
|
goto __pyx_L0;
|
|
17504
17516
|
|
|
17505
|
-
/* "../../../../../private/var/folders/
|
|
17517
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":256
|
|
17506
17518
|
* return <object>PyDataType_FIELDS(self)
|
|
17507
17519
|
*
|
|
17508
17520
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17517,7 +17529,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
17517
17529
|
return __pyx_r;
|
|
17518
17530
|
}
|
|
17519
17531
|
|
|
17520
|
-
/* "../../../../../private/var/folders/
|
|
17532
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
|
|
17521
17533
|
* # valid (the pointer can be NULL). Most users should access
|
|
17522
17534
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
17523
17535
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17528,7 +17540,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
|
17528
17540
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
|
17529
17541
|
PyArray_ArrayDescr *__pyx_r;
|
|
17530
17542
|
|
|
17531
|
-
/* "../../../../../private/var/folders/
|
|
17543
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":265
|
|
17532
17544
|
* @property
|
|
17533
17545
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
|
17534
17546
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
|
@@ -17538,7 +17550,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
17538
17550
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
|
17539
17551
|
goto __pyx_L0;
|
|
17540
17552
|
|
|
17541
|
-
/* "../../../../../private/var/folders/
|
|
17553
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
|
|
17542
17554
|
* # valid (the pointer can be NULL). Most users should access
|
|
17543
17555
|
* # this field via the inline helper method PyDataType_SHAPE.
|
|
17544
17556
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17551,7 +17563,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
17551
17563
|
return __pyx_r;
|
|
17552
17564
|
}
|
|
17553
17565
|
|
|
17554
|
-
/* "../../../../../private/var/folders/
|
|
17566
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":267
|
|
17555
17567
|
* return PyDataType_SUBARRAY(self)
|
|
17556
17568
|
*
|
|
17557
17569
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17562,7 +17574,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
|
17562
17574
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
|
17563
17575
|
npy_uint64 __pyx_r;
|
|
17564
17576
|
|
|
17565
|
-
/* "../../../../../private/var/folders/
|
|
17577
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":270
|
|
17566
17578
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
|
17567
17579
|
* """The data types flags."""
|
|
17568
17580
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
|
@@ -17572,7 +17584,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
17572
17584
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
|
17573
17585
|
goto __pyx_L0;
|
|
17574
17586
|
|
|
17575
|
-
/* "../../../../../private/var/folders/
|
|
17587
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":267
|
|
17576
17588
|
* return PyDataType_SUBARRAY(self)
|
|
17577
17589
|
*
|
|
17578
17590
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17585,7 +17597,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
17585
17597
|
return __pyx_r;
|
|
17586
17598
|
}
|
|
17587
17599
|
|
|
17588
|
-
/* "../../../../../private/var/folders/
|
|
17600
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":279
|
|
17589
17601
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
17590
17602
|
*
|
|
17591
17603
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17596,7 +17608,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
|
17596
17608
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17597
17609
|
int __pyx_r;
|
|
17598
17610
|
|
|
17599
|
-
/* "../../../../../private/var/folders/
|
|
17611
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":282
|
|
17600
17612
|
* cdef inline int numiter(self) noexcept nogil:
|
|
17601
17613
|
* """The number of arrays that need to be broadcast to the same shape."""
|
|
17602
17614
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
|
@@ -17606,7 +17618,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
17606
17618
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
|
17607
17619
|
goto __pyx_L0;
|
|
17608
17620
|
|
|
17609
|
-
/* "../../../../../private/var/folders/
|
|
17621
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":279
|
|
17610
17622
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
|
17611
17623
|
*
|
|
17612
17624
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17619,7 +17631,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
17619
17631
|
return __pyx_r;
|
|
17620
17632
|
}
|
|
17621
17633
|
|
|
17622
|
-
/* "../../../../../private/var/folders/
|
|
17634
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
|
|
17623
17635
|
* return PyArray_MultiIter_NUMITER(self)
|
|
17624
17636
|
*
|
|
17625
17637
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17630,7 +17642,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
|
17630
17642
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17631
17643
|
npy_intp __pyx_r;
|
|
17632
17644
|
|
|
17633
|
-
/* "../../../../../private/var/folders/
|
|
17645
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":287
|
|
17634
17646
|
* cdef inline npy_intp size(self) noexcept nogil:
|
|
17635
17647
|
* """The total broadcasted size."""
|
|
17636
17648
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -17640,7 +17652,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
17640
17652
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
|
17641
17653
|
goto __pyx_L0;
|
|
17642
17654
|
|
|
17643
|
-
/* "../../../../../private/var/folders/
|
|
17655
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
|
|
17644
17656
|
* return PyArray_MultiIter_NUMITER(self)
|
|
17645
17657
|
*
|
|
17646
17658
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17653,7 +17665,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
17653
17665
|
return __pyx_r;
|
|
17654
17666
|
}
|
|
17655
17667
|
|
|
17656
|
-
/* "../../../../../private/var/folders/
|
|
17668
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":289
|
|
17657
17669
|
* return PyArray_MultiIter_SIZE(self)
|
|
17658
17670
|
*
|
|
17659
17671
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17664,7 +17676,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
|
17664
17676
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17665
17677
|
npy_intp __pyx_r;
|
|
17666
17678
|
|
|
17667
|
-
/* "../../../../../private/var/folders/
|
|
17679
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":292
|
|
17668
17680
|
* cdef inline npy_intp index(self) noexcept nogil:
|
|
17669
17681
|
* """The current (1-d) index into the broadcasted result."""
|
|
17670
17682
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
|
@@ -17674,7 +17686,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
17674
17686
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
|
17675
17687
|
goto __pyx_L0;
|
|
17676
17688
|
|
|
17677
|
-
/* "../../../../../private/var/folders/
|
|
17689
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":289
|
|
17678
17690
|
* return PyArray_MultiIter_SIZE(self)
|
|
17679
17691
|
*
|
|
17680
17692
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17687,7 +17699,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
17687
17699
|
return __pyx_r;
|
|
17688
17700
|
}
|
|
17689
17701
|
|
|
17690
|
-
/* "../../../../../private/var/folders/
|
|
17702
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":294
|
|
17691
17703
|
* return PyArray_MultiIter_INDEX(self)
|
|
17692
17704
|
*
|
|
17693
17705
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17698,7 +17710,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
|
17698
17710
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17699
17711
|
int __pyx_r;
|
|
17700
17712
|
|
|
17701
|
-
/* "../../../../../private/var/folders/
|
|
17713
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":297
|
|
17702
17714
|
* cdef inline int nd(self) noexcept nogil:
|
|
17703
17715
|
* """The number of dimensions in the broadcasted result."""
|
|
17704
17716
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -17708,7 +17720,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
17708
17720
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
|
17709
17721
|
goto __pyx_L0;
|
|
17710
17722
|
|
|
17711
|
-
/* "../../../../../private/var/folders/
|
|
17723
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":294
|
|
17712
17724
|
* return PyArray_MultiIter_INDEX(self)
|
|
17713
17725
|
*
|
|
17714
17726
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17721,7 +17733,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
17721
17733
|
return __pyx_r;
|
|
17722
17734
|
}
|
|
17723
17735
|
|
|
17724
|
-
/* "../../../../../private/var/folders/
|
|
17736
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":299
|
|
17725
17737
|
* return PyArray_MultiIter_NDIM(self)
|
|
17726
17738
|
*
|
|
17727
17739
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17732,7 +17744,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
|
17732
17744
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17733
17745
|
npy_intp *__pyx_r;
|
|
17734
17746
|
|
|
17735
|
-
/* "../../../../../private/var/folders/
|
|
17747
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":302
|
|
17736
17748
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
|
17737
17749
|
* """The shape of the broadcasted result."""
|
|
17738
17750
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -17742,7 +17754,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
17742
17754
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
|
17743
17755
|
goto __pyx_L0;
|
|
17744
17756
|
|
|
17745
|
-
/* "../../../../../private/var/folders/
|
|
17757
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":299
|
|
17746
17758
|
* return PyArray_MultiIter_NDIM(self)
|
|
17747
17759
|
*
|
|
17748
17760
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17755,7 +17767,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
17755
17767
|
return __pyx_r;
|
|
17756
17768
|
}
|
|
17757
17769
|
|
|
17758
|
-
/* "../../../../../private/var/folders/
|
|
17770
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":304
|
|
17759
17771
|
* return PyArray_MultiIter_DIMS(self)
|
|
17760
17772
|
*
|
|
17761
17773
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17766,7 +17778,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
|
17766
17778
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
|
17767
17779
|
void **__pyx_r;
|
|
17768
17780
|
|
|
17769
|
-
/* "../../../../../private/var/folders/
|
|
17781
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":308
|
|
17770
17782
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
|
17771
17783
|
* On return, the iterators are adjusted for broadcasting."""
|
|
17772
17784
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
|
@@ -17776,7 +17788,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
17776
17788
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
|
17777
17789
|
goto __pyx_L0;
|
|
17778
17790
|
|
|
17779
|
-
/* "../../../../../private/var/folders/
|
|
17791
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":304
|
|
17780
17792
|
* return PyArray_MultiIter_DIMS(self)
|
|
17781
17793
|
*
|
|
17782
17794
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17789,7 +17801,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
17789
17801
|
return __pyx_r;
|
|
17790
17802
|
}
|
|
17791
17803
|
|
|
17792
|
-
/* "../../../../../private/var/folders/
|
|
17804
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":322
|
|
17793
17805
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
17794
17806
|
*
|
|
17795
17807
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17800,7 +17812,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
|
17800
17812
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
|
17801
17813
|
PyObject *__pyx_r;
|
|
17802
17814
|
|
|
17803
|
-
/* "../../../../../private/var/folders/
|
|
17815
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":326
|
|
17804
17816
|
* """Returns a borrowed reference to the object owning the data/memory.
|
|
17805
17817
|
* """
|
|
17806
17818
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
|
@@ -17810,7 +17822,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
17810
17822
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
|
17811
17823
|
goto __pyx_L0;
|
|
17812
17824
|
|
|
17813
|
-
/* "../../../../../private/var/folders/
|
|
17825
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":322
|
|
17814
17826
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
|
17815
17827
|
*
|
|
17816
17828
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17823,7 +17835,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
|
17823
17835
|
return __pyx_r;
|
|
17824
17836
|
}
|
|
17825
17837
|
|
|
17826
|
-
/* "../../../../../private/var/folders/
|
|
17838
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":328
|
|
17827
17839
|
* return PyArray_BASE(self)
|
|
17828
17840
|
*
|
|
17829
17841
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17837,7 +17849,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
17837
17849
|
PyArray_Descr *__pyx_t_1;
|
|
17838
17850
|
__Pyx_RefNannySetupContext("descr", 0);
|
|
17839
17851
|
|
|
17840
|
-
/* "../../../../../private/var/folders/
|
|
17852
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":332
|
|
17841
17853
|
* """Returns an owned reference to the dtype of the array.
|
|
17842
17854
|
* """
|
|
17843
17855
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
|
@@ -17850,7 +17862,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
17850
17862
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
|
17851
17863
|
goto __pyx_L0;
|
|
17852
17864
|
|
|
17853
|
-
/* "../../../../../private/var/folders/
|
|
17865
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":328
|
|
17854
17866
|
* return PyArray_BASE(self)
|
|
17855
17867
|
*
|
|
17856
17868
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17865,7 +17877,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
17865
17877
|
return __pyx_r;
|
|
17866
17878
|
}
|
|
17867
17879
|
|
|
17868
|
-
/* "../../../../../private/var/folders/
|
|
17880
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":334
|
|
17869
17881
|
* return <dtype>PyArray_DESCR(self)
|
|
17870
17882
|
*
|
|
17871
17883
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17876,7 +17888,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
|
17876
17888
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
|
17877
17889
|
int __pyx_r;
|
|
17878
17890
|
|
|
17879
|
-
/* "../../../../../private/var/folders/
|
|
17891
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":338
|
|
17880
17892
|
* """Returns the number of dimensions in the array.
|
|
17881
17893
|
* """
|
|
17882
17894
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
|
@@ -17886,7 +17898,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
17886
17898
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
|
17887
17899
|
goto __pyx_L0;
|
|
17888
17900
|
|
|
17889
|
-
/* "../../../../../private/var/folders/
|
|
17901
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":334
|
|
17890
17902
|
* return <dtype>PyArray_DESCR(self)
|
|
17891
17903
|
*
|
|
17892
17904
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17899,7 +17911,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
17899
17911
|
return __pyx_r;
|
|
17900
17912
|
}
|
|
17901
17913
|
|
|
17902
|
-
/* "../../../../../private/var/folders/
|
|
17914
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":340
|
|
17903
17915
|
* return PyArray_NDIM(self)
|
|
17904
17916
|
*
|
|
17905
17917
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17910,7 +17922,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
|
17910
17922
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
|
17911
17923
|
npy_intp *__pyx_r;
|
|
17912
17924
|
|
|
17913
|
-
/* "../../../../../private/var/folders/
|
|
17925
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":346
|
|
17914
17926
|
* Can return NULL for 0-dimensional arrays.
|
|
17915
17927
|
* """
|
|
17916
17928
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
|
@@ -17920,7 +17932,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
17920
17932
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
|
17921
17933
|
goto __pyx_L0;
|
|
17922
17934
|
|
|
17923
|
-
/* "../../../../../private/var/folders/
|
|
17935
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":340
|
|
17924
17936
|
* return PyArray_NDIM(self)
|
|
17925
17937
|
*
|
|
17926
17938
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17933,7 +17945,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
17933
17945
|
return __pyx_r;
|
|
17934
17946
|
}
|
|
17935
17947
|
|
|
17936
|
-
/* "../../../../../private/var/folders/
|
|
17948
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":348
|
|
17937
17949
|
* return PyArray_DIMS(self)
|
|
17938
17950
|
*
|
|
17939
17951
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17944,7 +17956,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
|
17944
17956
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
|
17945
17957
|
npy_intp *__pyx_r;
|
|
17946
17958
|
|
|
17947
|
-
/* "../../../../../private/var/folders/
|
|
17959
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":353
|
|
17948
17960
|
* The number of elements matches the number of dimensions of the array (ndim).
|
|
17949
17961
|
* """
|
|
17950
17962
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
|
@@ -17954,7 +17966,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
17954
17966
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
|
17955
17967
|
goto __pyx_L0;
|
|
17956
17968
|
|
|
17957
|
-
/* "../../../../../private/var/folders/
|
|
17969
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":348
|
|
17958
17970
|
* return PyArray_DIMS(self)
|
|
17959
17971
|
*
|
|
17960
17972
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17967,7 +17979,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
17967
17979
|
return __pyx_r;
|
|
17968
17980
|
}
|
|
17969
17981
|
|
|
17970
|
-
/* "../../../../../private/var/folders/
|
|
17982
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":355
|
|
17971
17983
|
* return PyArray_STRIDES(self)
|
|
17972
17984
|
*
|
|
17973
17985
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -17978,7 +17990,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
|
17978
17990
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
|
17979
17991
|
npy_intp __pyx_r;
|
|
17980
17992
|
|
|
17981
|
-
/* "../../../../../private/var/folders/
|
|
17993
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":359
|
|
17982
17994
|
* """Returns the total size (in number of elements) of the array.
|
|
17983
17995
|
* """
|
|
17984
17996
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
|
@@ -17988,7 +18000,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
17988
18000
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
|
17989
18001
|
goto __pyx_L0;
|
|
17990
18002
|
|
|
17991
|
-
/* "../../../../../private/var/folders/
|
|
18003
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":355
|
|
17992
18004
|
* return PyArray_STRIDES(self)
|
|
17993
18005
|
*
|
|
17994
18006
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18001,7 +18013,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18001
18013
|
return __pyx_r;
|
|
18002
18014
|
}
|
|
18003
18015
|
|
|
18004
|
-
/* "../../../../../private/var/folders/
|
|
18016
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":361
|
|
18005
18017
|
* return PyArray_SIZE(self)
|
|
18006
18018
|
*
|
|
18007
18019
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18012,7 +18024,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
|
18012
18024
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
|
18013
18025
|
char *__pyx_r;
|
|
18014
18026
|
|
|
18015
|
-
/* "../../../../../private/var/folders/
|
|
18027
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":368
|
|
18016
18028
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
|
18017
18029
|
* """
|
|
18018
18030
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
|
@@ -18022,7 +18034,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18022
18034
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
|
18023
18035
|
goto __pyx_L0;
|
|
18024
18036
|
|
|
18025
|
-
/* "../../../../../private/var/folders/
|
|
18037
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":361
|
|
18026
18038
|
* return PyArray_SIZE(self)
|
|
18027
18039
|
*
|
|
18028
18040
|
* @property # <<<<<<<<<<<<<<
|
|
@@ -18035,7 +18047,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
|
18035
18047
|
return __pyx_r;
|
|
18036
18048
|
}
|
|
18037
18049
|
|
|
18038
|
-
/* "../../../../../private/var/folders/
|
|
18050
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18039
18051
|
* ctypedef long double complex clongdouble_t
|
|
18040
18052
|
*
|
|
18041
18053
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18052,7 +18064,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18052
18064
|
int __pyx_clineno = 0;
|
|
18053
18065
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
|
18054
18066
|
|
|
18055
|
-
/* "../../../../../private/var/folders/
|
|
18067
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
|
|
18056
18068
|
*
|
|
18057
18069
|
* cdef inline object PyArray_MultiIterNew1(a):
|
|
18058
18070
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
|
@@ -18066,7 +18078,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18066
18078
|
__pyx_t_1 = 0;
|
|
18067
18079
|
goto __pyx_L0;
|
|
18068
18080
|
|
|
18069
|
-
/* "../../../../../private/var/folders/
|
|
18081
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
|
|
18070
18082
|
* ctypedef long double complex clongdouble_t
|
|
18071
18083
|
*
|
|
18072
18084
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
|
@@ -18085,7 +18097,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
|
18085
18097
|
return __pyx_r;
|
|
18086
18098
|
}
|
|
18087
18099
|
|
|
18088
|
-
/* "../../../../../private/var/folders/
|
|
18100
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
|
|
18089
18101
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18090
18102
|
*
|
|
18091
18103
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18102,7 +18114,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18102
18114
|
int __pyx_clineno = 0;
|
|
18103
18115
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
|
18104
18116
|
|
|
18105
|
-
/* "../../../../../private/var/folders/
|
|
18117
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
|
|
18106
18118
|
*
|
|
18107
18119
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
|
18108
18120
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
|
@@ -18116,7 +18128,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18116
18128
|
__pyx_t_1 = 0;
|
|
18117
18129
|
goto __pyx_L0;
|
|
18118
18130
|
|
|
18119
|
-
/* "../../../../../private/var/folders/
|
|
18131
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
|
|
18120
18132
|
* return PyArray_MultiIterNew(1, <void*>a)
|
|
18121
18133
|
*
|
|
18122
18134
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
|
@@ -18135,7 +18147,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
|
18135
18147
|
return __pyx_r;
|
|
18136
18148
|
}
|
|
18137
18149
|
|
|
18138
|
-
/* "../../../../../private/var/folders/
|
|
18150
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
|
|
18139
18151
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18140
18152
|
*
|
|
18141
18153
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18152,7 +18164,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18152
18164
|
int __pyx_clineno = 0;
|
|
18153
18165
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
|
18154
18166
|
|
|
18155
|
-
/* "../../../../../private/var/folders/
|
|
18167
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
|
|
18156
18168
|
*
|
|
18157
18169
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
|
18158
18170
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
|
@@ -18166,7 +18178,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18166
18178
|
__pyx_t_1 = 0;
|
|
18167
18179
|
goto __pyx_L0;
|
|
18168
18180
|
|
|
18169
|
-
/* "../../../../../private/var/folders/
|
|
18181
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
|
|
18170
18182
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
|
18171
18183
|
*
|
|
18172
18184
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
|
@@ -18185,7 +18197,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
|
18185
18197
|
return __pyx_r;
|
|
18186
18198
|
}
|
|
18187
18199
|
|
|
18188
|
-
/* "../../../../../private/var/folders/
|
|
18200
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
|
|
18189
18201
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18190
18202
|
*
|
|
18191
18203
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18202,7 +18214,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18202
18214
|
int __pyx_clineno = 0;
|
|
18203
18215
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
|
18204
18216
|
|
|
18205
|
-
/* "../../../../../private/var/folders/
|
|
18217
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
|
|
18206
18218
|
*
|
|
18207
18219
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
|
18208
18220
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
|
@@ -18216,7 +18228,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18216
18228
|
__pyx_t_1 = 0;
|
|
18217
18229
|
goto __pyx_L0;
|
|
18218
18230
|
|
|
18219
|
-
/* "../../../../../private/var/folders/
|
|
18231
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
|
|
18220
18232
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
|
18221
18233
|
*
|
|
18222
18234
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
|
@@ -18235,7 +18247,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
|
18235
18247
|
return __pyx_r;
|
|
18236
18248
|
}
|
|
18237
18249
|
|
|
18238
|
-
/* "../../../../../private/var/folders/
|
|
18250
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
|
|
18239
18251
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18240
18252
|
*
|
|
18241
18253
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18252,7 +18264,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18252
18264
|
int __pyx_clineno = 0;
|
|
18253
18265
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
|
18254
18266
|
|
|
18255
|
-
/* "../../../../../private/var/folders/
|
|
18267
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
|
|
18256
18268
|
*
|
|
18257
18269
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
|
18258
18270
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
|
@@ -18266,7 +18278,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18266
18278
|
__pyx_t_1 = 0;
|
|
18267
18279
|
goto __pyx_L0;
|
|
18268
18280
|
|
|
18269
|
-
/* "../../../../../private/var/folders/
|
|
18281
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
|
|
18270
18282
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
|
18271
18283
|
*
|
|
18272
18284
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
|
@@ -18285,7 +18297,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
|
18285
18297
|
return __pyx_r;
|
|
18286
18298
|
}
|
|
18287
18299
|
|
|
18288
|
-
/* "../../../../../private/var/folders/
|
|
18300
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":791
|
|
18289
18301
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18290
18302
|
*
|
|
18291
18303
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18300,7 +18312,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18300
18312
|
PyObject *__pyx_t_2;
|
|
18301
18313
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
|
18302
18314
|
|
|
18303
|
-
/* "../../../../../private/var/folders/
|
|
18315
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18304
18316
|
*
|
|
18305
18317
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18306
18318
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18310,7 +18322,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18310
18322
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
|
18311
18323
|
if (__pyx_t_1) {
|
|
18312
18324
|
|
|
18313
|
-
/* "../../../../../private/var/folders/
|
|
18325
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":793
|
|
18314
18326
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18315
18327
|
* if PyDataType_HASSUBARRAY(d):
|
|
18316
18328
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
|
@@ -18323,7 +18335,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18323
18335
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
|
18324
18336
|
goto __pyx_L0;
|
|
18325
18337
|
|
|
18326
|
-
/* "../../../../../private/var/folders/
|
|
18338
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
|
|
18327
18339
|
*
|
|
18328
18340
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
|
18329
18341
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
|
@@ -18332,7 +18344,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18332
18344
|
*/
|
|
18333
18345
|
}
|
|
18334
18346
|
|
|
18335
|
-
/* "../../../../../private/var/folders/
|
|
18347
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":795
|
|
18336
18348
|
* return <tuple>d.subarray.shape
|
|
18337
18349
|
* else:
|
|
18338
18350
|
* return () # <<<<<<<<<<<<<<
|
|
@@ -18346,7 +18358,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18346
18358
|
goto __pyx_L0;
|
|
18347
18359
|
}
|
|
18348
18360
|
|
|
18349
|
-
/* "../../../../../private/var/folders/
|
|
18361
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":791
|
|
18350
18362
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
|
18351
18363
|
*
|
|
18352
18364
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
|
@@ -18361,7 +18373,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
|
18361
18373
|
return __pyx_r;
|
|
18362
18374
|
}
|
|
18363
18375
|
|
|
18364
|
-
/* "../../../../../private/var/folders/
|
|
18376
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
|
|
18365
18377
|
* int _import_umath() except -1
|
|
18366
18378
|
*
|
|
18367
18379
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -18375,7 +18387,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18375
18387
|
const char *__pyx_filename = NULL;
|
|
18376
18388
|
int __pyx_clineno = 0;
|
|
18377
18389
|
|
|
18378
|
-
/* "../../../../../private/var/folders/
|
|
18390
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
|
|
18379
18391
|
*
|
|
18380
18392
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
18381
18393
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
|
@@ -18384,7 +18396,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18384
18396
|
*/
|
|
18385
18397
|
Py_INCREF(__pyx_v_base);
|
|
18386
18398
|
|
|
18387
|
-
/* "../../../../../private/var/folders/
|
|
18399
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
|
|
18388
18400
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
|
18389
18401
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
|
18390
18402
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
|
@@ -18393,7 +18405,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18393
18405
|
*/
|
|
18394
18406
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L1_error)
|
|
18395
18407
|
|
|
18396
|
-
/* "../../../../../private/var/folders/
|
|
18408
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
|
|
18397
18409
|
* int _import_umath() except -1
|
|
18398
18410
|
*
|
|
18399
18411
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
|
@@ -18408,7 +18420,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
|
18408
18420
|
__pyx_L0:;
|
|
18409
18421
|
}
|
|
18410
18422
|
|
|
18411
|
-
/* "../../../../../private/var/folders/
|
|
18423
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":998
|
|
18412
18424
|
* PyArray_SetBaseObject(arr, base)
|
|
18413
18425
|
*
|
|
18414
18426
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18423,7 +18435,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18423
18435
|
int __pyx_t_1;
|
|
18424
18436
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
|
18425
18437
|
|
|
18426
|
-
/* "../../../../../private/var/folders/
|
|
18438
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
|
|
18427
18439
|
*
|
|
18428
18440
|
* cdef inline object get_array_base(ndarray arr):
|
|
18429
18441
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
|
@@ -18432,7 +18444,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18432
18444
|
*/
|
|
18433
18445
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
|
18434
18446
|
|
|
18435
|
-
/* "../../../../../private/var/folders/
|
|
18447
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1000
|
|
18436
18448
|
* cdef inline object get_array_base(ndarray arr):
|
|
18437
18449
|
* base = PyArray_BASE(arr)
|
|
18438
18450
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18442,7 +18454,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18442
18454
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
|
18443
18455
|
if (__pyx_t_1) {
|
|
18444
18456
|
|
|
18445
|
-
/* "../../../../../private/var/folders/
|
|
18457
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1001
|
|
18446
18458
|
* base = PyArray_BASE(arr)
|
|
18447
18459
|
* if base is NULL:
|
|
18448
18460
|
* return None # <<<<<<<<<<<<<<
|
|
@@ -18453,7 +18465,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18453
18465
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
|
18454
18466
|
goto __pyx_L0;
|
|
18455
18467
|
|
|
18456
|
-
/* "../../../../../private/var/folders/
|
|
18468
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1000
|
|
18457
18469
|
* cdef inline object get_array_base(ndarray arr):
|
|
18458
18470
|
* base = PyArray_BASE(arr)
|
|
18459
18471
|
* if base is NULL: # <<<<<<<<<<<<<<
|
|
@@ -18462,7 +18474,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18462
18474
|
*/
|
|
18463
18475
|
}
|
|
18464
18476
|
|
|
18465
|
-
/* "../../../../../private/var/folders/
|
|
18477
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1002
|
|
18466
18478
|
* if base is NULL:
|
|
18467
18479
|
* return None
|
|
18468
18480
|
* return <object>base # <<<<<<<<<<<<<<
|
|
@@ -18474,7 +18486,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18474
18486
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
|
18475
18487
|
goto __pyx_L0;
|
|
18476
18488
|
|
|
18477
|
-
/* "../../../../../private/var/folders/
|
|
18489
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":998
|
|
18478
18490
|
* PyArray_SetBaseObject(arr, base)
|
|
18479
18491
|
*
|
|
18480
18492
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
|
@@ -18489,7 +18501,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
|
18489
18501
|
return __pyx_r;
|
|
18490
18502
|
}
|
|
18491
18503
|
|
|
18492
|
-
/* "../../../../../private/var/folders/
|
|
18504
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1006
|
|
18493
18505
|
* # Versions of the import_* functions which are more suitable for
|
|
18494
18506
|
* # Cython code.
|
|
18495
18507
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18516,7 +18528,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18516
18528
|
int __pyx_clineno = 0;
|
|
18517
18529
|
__Pyx_RefNannySetupContext("import_array", 0);
|
|
18518
18530
|
|
|
18519
|
-
/* "../../../../../private/var/folders/
|
|
18531
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1007
|
|
18520
18532
|
* # Cython code.
|
|
18521
18533
|
* cdef inline int import_array() except -1:
|
|
18522
18534
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18532,7 +18544,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18532
18544
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18533
18545
|
/*try:*/ {
|
|
18534
18546
|
|
|
18535
|
-
/* "../../../../../private/var/folders/
|
|
18547
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1008
|
|
18536
18548
|
* cdef inline int import_array() except -1:
|
|
18537
18549
|
* try:
|
|
18538
18550
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
|
@@ -18541,7 +18553,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18541
18553
|
*/
|
|
18542
18554
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1008, __pyx_L3_error)
|
|
18543
18555
|
|
|
18544
|
-
/* "../../../../../private/var/folders/
|
|
18556
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1007
|
|
18545
18557
|
* # Cython code.
|
|
18546
18558
|
* cdef inline int import_array() except -1:
|
|
18547
18559
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18555,7 +18567,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18555
18567
|
goto __pyx_L8_try_end;
|
|
18556
18568
|
__pyx_L3_error:;
|
|
18557
18569
|
|
|
18558
|
-
/* "../../../../../private/var/folders/
|
|
18570
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1009
|
|
18559
18571
|
* try:
|
|
18560
18572
|
* __pyx_import_array()
|
|
18561
18573
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -18570,7 +18582,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18570
18582
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
18571
18583
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
18572
18584
|
|
|
18573
|
-
/* "../../../../../private/var/folders/
|
|
18585
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1010
|
|
18574
18586
|
* __pyx_import_array()
|
|
18575
18587
|
* except Exception:
|
|
18576
18588
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
|
@@ -18595,7 +18607,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18595
18607
|
}
|
|
18596
18608
|
goto __pyx_L5_except_error;
|
|
18597
18609
|
|
|
18598
|
-
/* "../../../../../private/var/folders/
|
|
18610
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1007
|
|
18599
18611
|
* # Cython code.
|
|
18600
18612
|
* cdef inline int import_array() except -1:
|
|
18601
18613
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18611,7 +18623,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18611
18623
|
__pyx_L8_try_end:;
|
|
18612
18624
|
}
|
|
18613
18625
|
|
|
18614
|
-
/* "../../../../../private/var/folders/
|
|
18626
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1006
|
|
18615
18627
|
* # Versions of the import_* functions which are more suitable for
|
|
18616
18628
|
* # Cython code.
|
|
18617
18629
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18636,7 +18648,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
|
18636
18648
|
return __pyx_r;
|
|
18637
18649
|
}
|
|
18638
18650
|
|
|
18639
|
-
/* "../../../../../private/var/folders/
|
|
18651
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1012
|
|
18640
18652
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
18641
18653
|
*
|
|
18642
18654
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18663,7 +18675,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18663
18675
|
int __pyx_clineno = 0;
|
|
18664
18676
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
|
18665
18677
|
|
|
18666
|
-
/* "../../../../../private/var/folders/
|
|
18678
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
18667
18679
|
*
|
|
18668
18680
|
* cdef inline int import_umath() except -1:
|
|
18669
18681
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18679,7 +18691,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18679
18691
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18680
18692
|
/*try:*/ {
|
|
18681
18693
|
|
|
18682
|
-
/* "../../../../../private/var/folders/
|
|
18694
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
|
|
18683
18695
|
* cdef inline int import_umath() except -1:
|
|
18684
18696
|
* try:
|
|
18685
18697
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -18688,7 +18700,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18688
18700
|
*/
|
|
18689
18701
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1014, __pyx_L3_error)
|
|
18690
18702
|
|
|
18691
|
-
/* "../../../../../private/var/folders/
|
|
18703
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
18692
18704
|
*
|
|
18693
18705
|
* cdef inline int import_umath() except -1:
|
|
18694
18706
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18702,7 +18714,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18702
18714
|
goto __pyx_L8_try_end;
|
|
18703
18715
|
__pyx_L3_error:;
|
|
18704
18716
|
|
|
18705
|
-
/* "../../../../../private/var/folders/
|
|
18717
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1015
|
|
18706
18718
|
* try:
|
|
18707
18719
|
* _import_umath()
|
|
18708
18720
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -18717,7 +18729,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18717
18729
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
18718
18730
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
18719
18731
|
|
|
18720
|
-
/* "../../../../../private/var/folders/
|
|
18732
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1016
|
|
18721
18733
|
* _import_umath()
|
|
18722
18734
|
* except Exception:
|
|
18723
18735
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -18742,7 +18754,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18742
18754
|
}
|
|
18743
18755
|
goto __pyx_L5_except_error;
|
|
18744
18756
|
|
|
18745
|
-
/* "../../../../../private/var/folders/
|
|
18757
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1013
|
|
18746
18758
|
*
|
|
18747
18759
|
* cdef inline int import_umath() except -1:
|
|
18748
18760
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18758,7 +18770,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18758
18770
|
__pyx_L8_try_end:;
|
|
18759
18771
|
}
|
|
18760
18772
|
|
|
18761
|
-
/* "../../../../../private/var/folders/
|
|
18773
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1012
|
|
18762
18774
|
* raise ImportError("numpy._core.multiarray failed to import")
|
|
18763
18775
|
*
|
|
18764
18776
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18783,7 +18795,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
|
18783
18795
|
return __pyx_r;
|
|
18784
18796
|
}
|
|
18785
18797
|
|
|
18786
|
-
/* "../../../../../private/var/folders/
|
|
18798
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1018
|
|
18787
18799
|
* raise ImportError("numpy._core.umath failed to import")
|
|
18788
18800
|
*
|
|
18789
18801
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18810,7 +18822,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18810
18822
|
int __pyx_clineno = 0;
|
|
18811
18823
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
|
18812
18824
|
|
|
18813
|
-
/* "../../../../../private/var/folders/
|
|
18825
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1019
|
|
18814
18826
|
*
|
|
18815
18827
|
* cdef inline int import_ufunc() except -1:
|
|
18816
18828
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18826,7 +18838,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18826
18838
|
__Pyx_XGOTREF(__pyx_t_3);
|
|
18827
18839
|
/*try:*/ {
|
|
18828
18840
|
|
|
18829
|
-
/* "../../../../../private/var/folders/
|
|
18841
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1020
|
|
18830
18842
|
* cdef inline int import_ufunc() except -1:
|
|
18831
18843
|
* try:
|
|
18832
18844
|
* _import_umath() # <<<<<<<<<<<<<<
|
|
@@ -18835,7 +18847,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18835
18847
|
*/
|
|
18836
18848
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1020, __pyx_L3_error)
|
|
18837
18849
|
|
|
18838
|
-
/* "../../../../../private/var/folders/
|
|
18850
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1019
|
|
18839
18851
|
*
|
|
18840
18852
|
* cdef inline int import_ufunc() except -1:
|
|
18841
18853
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18849,7 +18861,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18849
18861
|
goto __pyx_L8_try_end;
|
|
18850
18862
|
__pyx_L3_error:;
|
|
18851
18863
|
|
|
18852
|
-
/* "../../../../../private/var/folders/
|
|
18864
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1021
|
|
18853
18865
|
* try:
|
|
18854
18866
|
* _import_umath()
|
|
18855
18867
|
* except Exception: # <<<<<<<<<<<<<<
|
|
@@ -18864,7 +18876,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18864
18876
|
__Pyx_XGOTREF(__pyx_t_6);
|
|
18865
18877
|
__Pyx_XGOTREF(__pyx_t_7);
|
|
18866
18878
|
|
|
18867
|
-
/* "../../../../../private/var/folders/
|
|
18879
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1022
|
|
18868
18880
|
* _import_umath()
|
|
18869
18881
|
* except Exception:
|
|
18870
18882
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
|
@@ -18889,7 +18901,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18889
18901
|
}
|
|
18890
18902
|
goto __pyx_L5_except_error;
|
|
18891
18903
|
|
|
18892
|
-
/* "../../../../../private/var/folders/
|
|
18904
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1019
|
|
18893
18905
|
*
|
|
18894
18906
|
* cdef inline int import_ufunc() except -1:
|
|
18895
18907
|
* try: # <<<<<<<<<<<<<<
|
|
@@ -18905,7 +18917,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18905
18917
|
__pyx_L8_try_end:;
|
|
18906
18918
|
}
|
|
18907
18919
|
|
|
18908
|
-
/* "../../../../../private/var/folders/
|
|
18920
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1018
|
|
18909
18921
|
* raise ImportError("numpy._core.umath failed to import")
|
|
18910
18922
|
*
|
|
18911
18923
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
|
@@ -18930,7 +18942,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18930
18942
|
return __pyx_r;
|
|
18931
18943
|
}
|
|
18932
18944
|
|
|
18933
|
-
/* "../../../../../private/var/folders/
|
|
18945
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1025
|
|
18934
18946
|
*
|
|
18935
18947
|
*
|
|
18936
18948
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -18941,7 +18953,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
|
18941
18953
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
|
18942
18954
|
int __pyx_r;
|
|
18943
18955
|
|
|
18944
|
-
/* "../../../../../private/var/folders/
|
|
18956
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1037
|
|
18945
18957
|
* bool
|
|
18946
18958
|
* """
|
|
18947
18959
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -18951,7 +18963,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
18951
18963
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
|
18952
18964
|
goto __pyx_L0;
|
|
18953
18965
|
|
|
18954
|
-
/* "../../../../../private/var/folders/
|
|
18966
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1025
|
|
18955
18967
|
*
|
|
18956
18968
|
*
|
|
18957
18969
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -18964,7 +18976,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
18964
18976
|
return __pyx_r;
|
|
18965
18977
|
}
|
|
18966
18978
|
|
|
18967
|
-
/* "../../../../../private/var/folders/
|
|
18979
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1040
|
|
18968
18980
|
*
|
|
18969
18981
|
*
|
|
18970
18982
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -18975,7 +18987,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
|
18975
18987
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
|
18976
18988
|
int __pyx_r;
|
|
18977
18989
|
|
|
18978
|
-
/* "../../../../../private/var/folders/
|
|
18990
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1052
|
|
18979
18991
|
* bool
|
|
18980
18992
|
* """
|
|
18981
18993
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
|
@@ -18985,7 +18997,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
18985
18997
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
|
18986
18998
|
goto __pyx_L0;
|
|
18987
18999
|
|
|
18988
|
-
/* "../../../../../private/var/folders/
|
|
19000
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1040
|
|
18989
19001
|
*
|
|
18990
19002
|
*
|
|
18991
19003
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
|
@@ -18998,7 +19010,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
18998
19010
|
return __pyx_r;
|
|
18999
19011
|
}
|
|
19000
19012
|
|
|
19001
|
-
/* "../../../../../private/var/folders/
|
|
19013
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1055
|
|
19002
19014
|
*
|
|
19003
19015
|
*
|
|
19004
19016
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19009,7 +19021,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
|
19009
19021
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
|
19010
19022
|
npy_datetime __pyx_r;
|
|
19011
19023
|
|
|
19012
|
-
/* "../../../../../private/var/folders/
|
|
19024
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1062
|
|
19013
19025
|
* also needed. That can be found using `get_datetime64_unit`.
|
|
19014
19026
|
* """
|
|
19015
19027
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19019,7 +19031,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19019
19031
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
|
19020
19032
|
goto __pyx_L0;
|
|
19021
19033
|
|
|
19022
|
-
/* "../../../../../private/var/folders/
|
|
19034
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1055
|
|
19023
19035
|
*
|
|
19024
19036
|
*
|
|
19025
19037
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19032,7 +19044,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19032
19044
|
return __pyx_r;
|
|
19033
19045
|
}
|
|
19034
19046
|
|
|
19035
|
-
/* "../../../../../private/var/folders/
|
|
19047
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1065
|
|
19036
19048
|
*
|
|
19037
19049
|
*
|
|
19038
19050
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19043,7 +19055,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
|
19043
19055
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
|
19044
19056
|
npy_timedelta __pyx_r;
|
|
19045
19057
|
|
|
19046
|
-
/* "../../../../../private/var/folders/
|
|
19058
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1069
|
|
19047
19059
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
|
19048
19060
|
* """
|
|
19049
19061
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
|
@@ -19053,7 +19065,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19053
19065
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
|
19054
19066
|
goto __pyx_L0;
|
|
19055
19067
|
|
|
19056
|
-
/* "../../../../../private/var/folders/
|
|
19068
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1065
|
|
19057
19069
|
*
|
|
19058
19070
|
*
|
|
19059
19071
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19066,7 +19078,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19066
19078
|
return __pyx_r;
|
|
19067
19079
|
}
|
|
19068
19080
|
|
|
19069
|
-
/* "../../../../../private/var/folders/
|
|
19081
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1072
|
|
19070
19082
|
*
|
|
19071
19083
|
*
|
|
19072
19084
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -19077,7 +19089,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
|
19077
19089
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
|
19078
19090
|
NPY_DATETIMEUNIT __pyx_r;
|
|
19079
19091
|
|
|
19080
|
-
/* "../../../../../private/var/folders/
|
|
19092
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1076
|
|
19081
19093
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
|
19082
19094
|
* """
|
|
19083
19095
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
|
@@ -19087,7 +19099,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
|
19087
19099
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
|
19088
19100
|
goto __pyx_L0;
|
|
19089
19101
|
|
|
19090
|
-
/* "../../../../../private/var/folders/
|
|
19102
|
+
/* "../../../../../private/var/folders/xc/cl1fyykn2pj4ryhdw6r1mqtc0000gn/T/build-env-ddeujurx/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1072
|
|
19091
19103
|
*
|
|
19092
19104
|
*
|
|
19093
19105
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
|
@@ -22177,7 +22189,7 @@ static PyObject *__pyx_f_11obliquetree_3src_7oblique_my_lbfgs_b_minimize(int con
|
|
|
22177
22189
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_1, __pyx_t_5};
|
|
22178
22190
|
__pyx_t_3 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 616, __pyx_L1_error)
|
|
22179
22191
|
__Pyx_GOTREF(__pyx_t_3);
|
|
22180
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_8, __pyx_t_3, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 616, __pyx_L1_error)
|
|
22192
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_8, __pyx_t_3, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 616, __pyx_L1_error)
|
|
22181
22193
|
__pyx_t_4 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_2, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_3);
|
|
22182
22194
|
__Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
22183
22195
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
@@ -22244,7 +22256,7 @@ static PyObject *__pyx_f_11obliquetree_3src_7oblique_my_lbfgs_b_minimize(int con
|
|
|
22244
22256
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_2, __pyx_t_3};
|
|
22245
22257
|
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 620, __pyx_L1_error)
|
|
22246
22258
|
__Pyx_GOTREF(__pyx_t_5);
|
|
22247
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_1, __pyx_t_5, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 620, __pyx_L1_error)
|
|
22259
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_1, __pyx_t_5, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 620, __pyx_L1_error)
|
|
22248
22260
|
__pyx_t_4 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_8, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_5);
|
|
22249
22261
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
22250
22262
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
@@ -22318,7 +22330,7 @@ static PyObject *__pyx_f_11obliquetree_3src_7oblique_my_lbfgs_b_minimize(int con
|
|
|
22318
22330
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_8, __pyx_mstate_global->__pyx_int_2};
|
|
22319
22331
|
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 626, __pyx_L1_error)
|
|
22320
22332
|
__Pyx_GOTREF(__pyx_t_5);
|
|
22321
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_3, __pyx_t_5, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 626, __pyx_L1_error)
|
|
22333
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_3, __pyx_t_5, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 626, __pyx_L1_error)
|
|
22322
22334
|
__pyx_t_4 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_1, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_5);
|
|
22323
22335
|
__Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0;
|
|
22324
22336
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
@@ -22373,7 +22385,7 @@ static PyObject *__pyx_f_11obliquetree_3src_7oblique_my_lbfgs_b_minimize(int con
|
|
|
22373
22385
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_1, __pyx_mstate_global->__pyx_int_2};
|
|
22374
22386
|
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 627, __pyx_L1_error)
|
|
22375
22387
|
__Pyx_GOTREF(__pyx_t_5);
|
|
22376
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_8, __pyx_t_5, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 627, __pyx_L1_error)
|
|
22388
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_8, __pyx_t_5, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 627, __pyx_L1_error)
|
|
22377
22389
|
__pyx_t_4 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_3, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_5);
|
|
22378
22390
|
__Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
22379
22391
|
__Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
|
|
@@ -22428,7 +22440,7 @@ static PyObject *__pyx_f_11obliquetree_3src_7oblique_my_lbfgs_b_minimize(int con
|
|
|
22428
22440
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_3, __pyx_mstate_global->__pyx_int_4};
|
|
22429
22441
|
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 630, __pyx_L1_error)
|
|
22430
22442
|
__Pyx_GOTREF(__pyx_t_5);
|
|
22431
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_1, __pyx_t_5, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 630, __pyx_L1_error)
|
|
22443
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_1, __pyx_t_5, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 630, __pyx_L1_error)
|
|
22432
22444
|
__pyx_t_4 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_8, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_5);
|
|
22433
22445
|
__Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
22434
22446
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -22483,7 +22495,7 @@ static PyObject *__pyx_f_11obliquetree_3src_7oblique_my_lbfgs_b_minimize(int con
|
|
|
22483
22495
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_8, __pyx_mstate_global->__pyx_int_44};
|
|
22484
22496
|
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 631, __pyx_L1_error)
|
|
22485
22497
|
__Pyx_GOTREF(__pyx_t_5);
|
|
22486
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_3, __pyx_t_5, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 631, __pyx_L1_error)
|
|
22498
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_3, __pyx_t_5, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 631, __pyx_L1_error)
|
|
22487
22499
|
__pyx_t_4 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_1, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_5);
|
|
22488
22500
|
__Pyx_XDECREF(__pyx_t_8); __pyx_t_8 = 0;
|
|
22489
22501
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
@@ -22538,7 +22550,7 @@ static PyObject *__pyx_f_11obliquetree_3src_7oblique_my_lbfgs_b_minimize(int con
|
|
|
22538
22550
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_1, __pyx_mstate_global->__pyx_int_29};
|
|
22539
22551
|
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 632, __pyx_L1_error)
|
|
22540
22552
|
__Pyx_GOTREF(__pyx_t_5);
|
|
22541
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_8, __pyx_t_5, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 632, __pyx_L1_error)
|
|
22553
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_8, __pyx_t_5, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 632, __pyx_L1_error)
|
|
22542
22554
|
__pyx_t_4 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_3, __pyx_callargs+__pyx_t_6, (2-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_5);
|
|
22543
22555
|
__Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
22544
22556
|
__Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
|
|
@@ -23255,7 +23267,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
23255
23267
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_2, __pyx_t_3};
|
|
23256
23268
|
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 702, __pyx_L1_error)
|
|
23257
23269
|
__Pyx_GOTREF(__pyx_t_5);
|
|
23258
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_5, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 702, __pyx_L1_error)
|
|
23270
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_5, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 702, __pyx_L1_error)
|
|
23259
23271
|
__pyx_t_1 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_4, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_5);
|
|
23260
23272
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
23261
23273
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
|
@@ -23302,7 +23314,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
23302
23314
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_4, NULL};
|
|
23303
23315
|
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 703, __pyx_L1_error)
|
|
23304
23316
|
__Pyx_GOTREF(__pyx_t_5);
|
|
23305
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_order, __pyx_mstate_global->__pyx_n_u_F, __pyx_t_5, __pyx_callargs+1, 0) < 0) __PYX_ERR(0, 703, __pyx_L1_error)
|
|
23317
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_order, __pyx_mstate_global->__pyx_n_u_F, __pyx_t_5, __pyx_callargs+1, 0) < (0)) __PYX_ERR(0, 703, __pyx_L1_error)
|
|
23306
23318
|
__pyx_t_1 = __Pyx_Object_VectorcallMethod_CallFromBuilder(__pyx_mstate_global->__pyx_n_u_copy, __pyx_callargs+__pyx_t_7, (1-__pyx_t_7) | (1*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_5);
|
|
23307
23319
|
__Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
23308
23320
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
@@ -23734,7 +23746,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
23734
23746
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_4, __pyx_t_2};
|
|
23735
23747
|
__pyx_t_1 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 734, __pyx_L1_error)
|
|
23736
23748
|
__Pyx_GOTREF(__pyx_t_1);
|
|
23737
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_17, __pyx_t_1, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 734, __pyx_L1_error)
|
|
23749
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_17, __pyx_t_1, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 734, __pyx_L1_error)
|
|
23738
23750
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_6, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_1);
|
|
23739
23751
|
__Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
23740
23752
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
@@ -23786,7 +23798,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
23786
23798
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_6, __pyx_t_1};
|
|
23787
23799
|
__pyx_t_2 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 735, __pyx_L1_error)
|
|
23788
23800
|
__Pyx_GOTREF(__pyx_t_2);
|
|
23789
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_2, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 735, __pyx_L1_error)
|
|
23801
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_2, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 735, __pyx_L1_error)
|
|
23790
23802
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_17, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_2);
|
|
23791
23803
|
__Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0;
|
|
23792
23804
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -23838,7 +23850,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
23838
23850
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_17, __pyx_t_2};
|
|
23839
23851
|
__pyx_t_1 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 736, __pyx_L1_error)
|
|
23840
23852
|
__Pyx_GOTREF(__pyx_t_1);
|
|
23841
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_1, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 736, __pyx_L1_error)
|
|
23853
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_1, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 736, __pyx_L1_error)
|
|
23842
23854
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_4, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_1);
|
|
23843
23855
|
__Pyx_XDECREF(__pyx_t_17); __pyx_t_17 = 0;
|
|
23844
23856
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
@@ -23890,7 +23902,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
23890
23902
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_4, __pyx_t_1};
|
|
23891
23903
|
__pyx_t_2 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 737, __pyx_L1_error)
|
|
23892
23904
|
__Pyx_GOTREF(__pyx_t_2);
|
|
23893
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_17, __pyx_t_2, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 737, __pyx_L1_error)
|
|
23905
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_17, __pyx_t_2, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 737, __pyx_L1_error)
|
|
23894
23906
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_6, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_2);
|
|
23895
23907
|
__Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
23896
23908
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -23968,7 +23980,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
23968
23980
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_6, __pyx_t_2};
|
|
23969
23981
|
__pyx_t_1 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 746, __pyx_L1_error)
|
|
23970
23982
|
__Pyx_GOTREF(__pyx_t_1);
|
|
23971
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_1, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 746, __pyx_L1_error)
|
|
23983
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_1, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 746, __pyx_L1_error)
|
|
23972
23984
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_17, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_1);
|
|
23973
23985
|
__Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0;
|
|
23974
23986
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
@@ -24020,7 +24032,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24020
24032
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_17, __pyx_t_1};
|
|
24021
24033
|
__pyx_t_2 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 747, __pyx_L1_error)
|
|
24022
24034
|
__Pyx_GOTREF(__pyx_t_2);
|
|
24023
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_2, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 747, __pyx_L1_error)
|
|
24035
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_2, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 747, __pyx_L1_error)
|
|
24024
24036
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_4, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_2);
|
|
24025
24037
|
__Pyx_XDECREF(__pyx_t_17); __pyx_t_17 = 0;
|
|
24026
24038
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -24081,7 +24093,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24081
24093
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_4, __pyx_t_2};
|
|
24082
24094
|
__pyx_t_1 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 749, __pyx_L1_error)
|
|
24083
24095
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24084
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_17, __pyx_t_1, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 749, __pyx_L1_error)
|
|
24096
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_17, __pyx_t_1, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 749, __pyx_L1_error)
|
|
24085
24097
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_6, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_1);
|
|
24086
24098
|
__Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
24087
24099
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
@@ -24133,7 +24145,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24133
24145
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_6, __pyx_t_1};
|
|
24134
24146
|
__pyx_t_2 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 750, __pyx_L1_error)
|
|
24135
24147
|
__Pyx_GOTREF(__pyx_t_2);
|
|
24136
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_2, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 750, __pyx_L1_error)
|
|
24148
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_2, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 750, __pyx_L1_error)
|
|
24137
24149
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_17, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_2);
|
|
24138
24150
|
__Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0;
|
|
24139
24151
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -24195,7 +24207,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24195
24207
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_17, __pyx_t_2};
|
|
24196
24208
|
__pyx_t_1 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 752, __pyx_L1_error)
|
|
24197
24209
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24198
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_1, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 752, __pyx_L1_error)
|
|
24210
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_1, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 752, __pyx_L1_error)
|
|
24199
24211
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_4, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_1);
|
|
24200
24212
|
__Pyx_XDECREF(__pyx_t_17); __pyx_t_17 = 0;
|
|
24201
24213
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
@@ -24247,7 +24259,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24247
24259
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_4, __pyx_t_1};
|
|
24248
24260
|
__pyx_t_2 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 753, __pyx_L1_error)
|
|
24249
24261
|
__Pyx_GOTREF(__pyx_t_2);
|
|
24250
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_17, __pyx_t_2, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 753, __pyx_L1_error)
|
|
24262
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_17, __pyx_t_2, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 753, __pyx_L1_error)
|
|
24251
24263
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_6, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_2);
|
|
24252
24264
|
__Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
24253
24265
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -24406,7 +24418,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24406
24418
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_2, __pyx_t_1};
|
|
24407
24419
|
__pyx_t_17 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_17)) __PYX_ERR(0, 758, __pyx_L1_error)
|
|
24408
24420
|
__Pyx_GOTREF(__pyx_t_17);
|
|
24409
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_17, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 758, __pyx_L1_error)
|
|
24421
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_17, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 758, __pyx_L1_error)
|
|
24410
24422
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_4, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_17);
|
|
24411
24423
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
24412
24424
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -24458,7 +24470,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24458
24470
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_4, __pyx_t_17};
|
|
24459
24471
|
__pyx_t_1 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 759, __pyx_L1_error)
|
|
24460
24472
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24461
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_2, __pyx_t_1, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 759, __pyx_L1_error)
|
|
24473
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_2, __pyx_t_1, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 759, __pyx_L1_error)
|
|
24462
24474
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_6, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_1);
|
|
24463
24475
|
__Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
24464
24476
|
__Pyx_DECREF(__pyx_t_17); __pyx_t_17 = 0;
|
|
@@ -24510,7 +24522,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24510
24522
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_6, __pyx_t_1};
|
|
24511
24523
|
__pyx_t_17 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_17)) __PYX_ERR(0, 760, __pyx_L1_error)
|
|
24512
24524
|
__Pyx_GOTREF(__pyx_t_17);
|
|
24513
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_17, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 760, __pyx_L1_error)
|
|
24525
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_17, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 760, __pyx_L1_error)
|
|
24514
24526
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_2, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_17);
|
|
24515
24527
|
__Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0;
|
|
24516
24528
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -24575,7 +24587,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24575
24587
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_2, __pyx_t_17};
|
|
24576
24588
|
__pyx_t_1 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 763, __pyx_L1_error)
|
|
24577
24589
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24578
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_1, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 763, __pyx_L1_error)
|
|
24590
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_1, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 763, __pyx_L1_error)
|
|
24579
24591
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_4, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_1);
|
|
24580
24592
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
24581
24593
|
__Pyx_DECREF(__pyx_t_17); __pyx_t_17 = 0;
|
|
@@ -24627,7 +24639,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24627
24639
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_4, __pyx_t_1};
|
|
24628
24640
|
__pyx_t_17 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_17)) __PYX_ERR(0, 764, __pyx_L1_error)
|
|
24629
24641
|
__Pyx_GOTREF(__pyx_t_17);
|
|
24630
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_2, __pyx_t_17, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 764, __pyx_L1_error)
|
|
24642
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_2, __pyx_t_17, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 764, __pyx_L1_error)
|
|
24631
24643
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_6, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_17);
|
|
24632
24644
|
__Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
24633
24645
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -24679,7 +24691,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24679
24691
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_6, __pyx_t_17};
|
|
24680
24692
|
__pyx_t_1 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 765, __pyx_L1_error)
|
|
24681
24693
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24682
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_1, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 765, __pyx_L1_error)
|
|
24694
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_1, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 765, __pyx_L1_error)
|
|
24683
24695
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_2, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_1);
|
|
24684
24696
|
__Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0;
|
|
24685
24697
|
__Pyx_DECREF(__pyx_t_17); __pyx_t_17 = 0;
|
|
@@ -24733,7 +24745,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24733
24745
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_2, __pyx_t_1};
|
|
24734
24746
|
__pyx_t_17 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_17)) __PYX_ERR(0, 767, __pyx_L1_error)
|
|
24735
24747
|
__Pyx_GOTREF(__pyx_t_17);
|
|
24736
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_17, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 767, __pyx_L1_error)
|
|
24748
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_6, __pyx_t_17, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 767, __pyx_L1_error)
|
|
24737
24749
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_4, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_17);
|
|
24738
24750
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
|
24739
24751
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -24791,7 +24803,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24791
24803
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_4, __pyx_t_17};
|
|
24792
24804
|
__pyx_t_1 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 768, __pyx_L1_error)
|
|
24793
24805
|
__Pyx_GOTREF(__pyx_t_1);
|
|
24794
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_2, __pyx_t_1, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 768, __pyx_L1_error)
|
|
24806
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_2, __pyx_t_1, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 768, __pyx_L1_error)
|
|
24795
24807
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_6, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_1);
|
|
24796
24808
|
__Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
24797
24809
|
__Pyx_DECREF(__pyx_t_17); __pyx_t_17 = 0;
|
|
@@ -24849,7 +24861,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
24849
24861
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_6, __pyx_t_1};
|
|
24850
24862
|
__pyx_t_17 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_17)) __PYX_ERR(0, 769, __pyx_L1_error)
|
|
24851
24863
|
__Pyx_GOTREF(__pyx_t_17);
|
|
24852
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_17, __pyx_callargs+2, 0) < 0) __PYX_ERR(0, 769, __pyx_L1_error)
|
|
24864
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_17, __pyx_callargs+2, 0) < (0)) __PYX_ERR(0, 769, __pyx_L1_error)
|
|
24853
24865
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_2, __pyx_callargs+__pyx_t_7, (2-__pyx_t_7) | (__pyx_t_7*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_17);
|
|
24854
24866
|
__Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0;
|
|
24855
24867
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
@@ -25090,7 +25102,7 @@ static __pyx_ctuple_double__ptr__and_int__ptr __pyx_f_11obliquetree_3src_7obliqu
|
|
|
25090
25102
|
__Pyx_GOTREF(__pyx_t_2);
|
|
25091
25103
|
index = 1; __pyx_t_1 = __pyx_t_25(__pyx_t_17); if (unlikely(!__pyx_t_1)) goto __pyx_L16_unpacking_failed;
|
|
25092
25104
|
__Pyx_GOTREF(__pyx_t_1);
|
|
25093
|
-
if (__Pyx_IternextUnpackEndCheck(__pyx_t_25(__pyx_t_17), 2) < 0) __PYX_ERR(0, 781, __pyx_L1_error)
|
|
25105
|
+
if (__Pyx_IternextUnpackEndCheck(__pyx_t_25(__pyx_t_17), 2) < (0)) __PYX_ERR(0, 781, __pyx_L1_error)
|
|
25094
25106
|
__pyx_t_25 = NULL;
|
|
25095
25107
|
__Pyx_DECREF(__pyx_t_17); __pyx_t_17 = 0;
|
|
25096
25108
|
goto __pyx_L17_unpacking_done;
|
|
@@ -26476,35 +26488,35 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
26476
26488
|
#else
|
|
26477
26489
|
#warning "The buffer protocol is not supported in the Limited C-API < 3.11."
|
|
26478
26490
|
#endif
|
|
26479
|
-
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_array_spec, __pyx_mstate->__pyx_array_type) < 0) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
26491
|
+
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_array_spec, __pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
26480
26492
|
#else
|
|
26481
26493
|
__pyx_mstate->__pyx_array_type = &__pyx_type___pyx_array;
|
|
26482
26494
|
#endif
|
|
26483
26495
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
26484
26496
|
#endif
|
|
26485
26497
|
#if !CYTHON_USE_TYPE_SPECS
|
|
26486
|
-
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_array_type) < 0) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
26498
|
+
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
26487
26499
|
#endif
|
|
26488
|
-
if (__Pyx_SetVtable(__pyx_mstate->__pyx_array_type, __pyx_vtabptr_array) < 0) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
26489
|
-
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_array_type) < 0) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
26490
|
-
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_array_type) < 0) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
26500
|
+
if (__Pyx_SetVtable(__pyx_mstate->__pyx_array_type, __pyx_vtabptr_array) < (0)) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
26501
|
+
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
26502
|
+
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_array_type) < (0)) __PYX_ERR(1, 110, __pyx_L1_error)
|
|
26491
26503
|
#if CYTHON_USE_TYPE_SPECS
|
|
26492
26504
|
__pyx_mstate->__pyx_MemviewEnum_type = (PyTypeObject *) __Pyx_PyType_FromModuleAndSpec(__pyx_m, &__pyx_type___pyx_MemviewEnum_spec, NULL); if (unlikely(!__pyx_mstate->__pyx_MemviewEnum_type)) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
26493
|
-
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_MemviewEnum_spec, __pyx_mstate->__pyx_MemviewEnum_type) < 0) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
26505
|
+
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_MemviewEnum_spec, __pyx_mstate->__pyx_MemviewEnum_type) < (0)) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
26494
26506
|
#else
|
|
26495
26507
|
__pyx_mstate->__pyx_MemviewEnum_type = &__pyx_type___pyx_MemviewEnum;
|
|
26496
26508
|
#endif
|
|
26497
26509
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
26498
26510
|
#endif
|
|
26499
26511
|
#if !CYTHON_USE_TYPE_SPECS
|
|
26500
|
-
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_MemviewEnum_type) < 0) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
26512
|
+
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_MemviewEnum_type) < (0)) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
26501
26513
|
#endif
|
|
26502
26514
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
26503
26515
|
if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_mstate->__pyx_MemviewEnum_type->tp_dictoffset && __pyx_mstate->__pyx_MemviewEnum_type->tp_getattro == PyObject_GenericGetAttr)) {
|
|
26504
26516
|
__pyx_mstate->__pyx_MemviewEnum_type->tp_getattro = PyObject_GenericGetAttr;
|
|
26505
26517
|
}
|
|
26506
26518
|
#endif
|
|
26507
|
-
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_MemviewEnum_type) < 0) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
26519
|
+
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_MemviewEnum_type) < (0)) __PYX_ERR(1, 299, __pyx_L1_error)
|
|
26508
26520
|
__pyx_vtabptr_memoryview = &__pyx_vtable_memoryview;
|
|
26509
26521
|
__pyx_vtable_memoryview.get_item_pointer = (char *(*)(struct __pyx_memoryview_obj *, PyObject *))__pyx_memoryview_get_item_pointer;
|
|
26510
26522
|
__pyx_vtable_memoryview.is_slice = (PyObject *(*)(struct __pyx_memoryview_obj *, PyObject *))__pyx_memoryview_is_slice;
|
|
@@ -26528,23 +26540,23 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
26528
26540
|
#else
|
|
26529
26541
|
#warning "The buffer protocol is not supported in the Limited C-API < 3.11."
|
|
26530
26542
|
#endif
|
|
26531
|
-
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_memoryview_spec, __pyx_mstate->__pyx_memoryview_type) < 0) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
26543
|
+
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_memoryview_spec, __pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
26532
26544
|
#else
|
|
26533
26545
|
__pyx_mstate->__pyx_memoryview_type = &__pyx_type___pyx_memoryview;
|
|
26534
26546
|
#endif
|
|
26535
26547
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
26536
26548
|
#endif
|
|
26537
26549
|
#if !CYTHON_USE_TYPE_SPECS
|
|
26538
|
-
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_memoryview_type) < 0) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
26550
|
+
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
26539
26551
|
#endif
|
|
26540
26552
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
26541
26553
|
if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_mstate->__pyx_memoryview_type->tp_dictoffset && __pyx_mstate->__pyx_memoryview_type->tp_getattro == PyObject_GenericGetAttr)) {
|
|
26542
26554
|
__pyx_mstate->__pyx_memoryview_type->tp_getattro = PyObject_GenericGetAttr;
|
|
26543
26555
|
}
|
|
26544
26556
|
#endif
|
|
26545
|
-
if (__Pyx_SetVtable(__pyx_mstate->__pyx_memoryview_type, __pyx_vtabptr_memoryview) < 0) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
26546
|
-
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_memoryview_type) < 0) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
26547
|
-
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_memoryview_type) < 0) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
26557
|
+
if (__Pyx_SetVtable(__pyx_mstate->__pyx_memoryview_type, __pyx_vtabptr_memoryview) < (0)) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
26558
|
+
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
26559
|
+
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_memoryview_type) < (0)) __PYX_ERR(1, 334, __pyx_L1_error)
|
|
26548
26560
|
__pyx_vtabptr__memoryviewslice = &__pyx_vtable__memoryviewslice;
|
|
26549
26561
|
__pyx_vtable__memoryviewslice.__pyx_base = *__pyx_vtabptr_memoryview;
|
|
26550
26562
|
__pyx_vtable__memoryviewslice.__pyx_base.convert_item_to_object = (PyObject *(*)(struct __pyx_memoryview_obj *, char *))__pyx_memoryviewslice_convert_item_to_object;
|
|
@@ -26556,7 +26568,7 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
26556
26568
|
__pyx_mstate->__pyx_memoryviewslice_type = (PyTypeObject *) __Pyx_PyType_FromModuleAndSpec(__pyx_m, &__pyx_type___pyx_memoryviewslice_spec, __pyx_t_1);
|
|
26557
26569
|
__Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
26558
26570
|
if (unlikely(!__pyx_mstate->__pyx_memoryviewslice_type)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26559
|
-
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_memoryviewslice_spec, __pyx_mstate->__pyx_memoryviewslice_type) < 0) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26571
|
+
if (__Pyx_fix_up_extension_type_from_spec(&__pyx_type___pyx_memoryviewslice_spec, __pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26560
26572
|
#else
|
|
26561
26573
|
__pyx_mstate->__pyx_memoryviewslice_type = &__pyx_type___pyx_memoryviewslice;
|
|
26562
26574
|
#endif
|
|
@@ -26564,16 +26576,16 @@ static int __Pyx_modinit_type_init_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
26564
26576
|
__pyx_mstate_global->__pyx_memoryviewslice_type->tp_base = __pyx_mstate_global->__pyx_memoryview_type;
|
|
26565
26577
|
#endif
|
|
26566
26578
|
#if !CYTHON_USE_TYPE_SPECS
|
|
26567
|
-
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_memoryviewslice_type) < 0) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26579
|
+
if (__Pyx_PyType_Ready(__pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26568
26580
|
#endif
|
|
26569
26581
|
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
26570
26582
|
if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_mstate->__pyx_memoryviewslice_type->tp_dictoffset && __pyx_mstate->__pyx_memoryviewslice_type->tp_getattro == PyObject_GenericGetAttr)) {
|
|
26571
26583
|
__pyx_mstate->__pyx_memoryviewslice_type->tp_getattro = PyObject_GenericGetAttr;
|
|
26572
26584
|
}
|
|
26573
26585
|
#endif
|
|
26574
|
-
if (__Pyx_SetVtable(__pyx_mstate->__pyx_memoryviewslice_type, __pyx_vtabptr__memoryviewslice) < 0) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26575
|
-
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_memoryviewslice_type) < 0) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26576
|
-
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_memoryviewslice_type) < 0) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26586
|
+
if (__Pyx_SetVtable(__pyx_mstate->__pyx_memoryviewslice_type, __pyx_vtabptr__memoryviewslice) < (0)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26587
|
+
if (__Pyx_MergeVtables(__pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26588
|
+
if (__Pyx_setup_reduce((PyObject *) __pyx_mstate->__pyx_memoryviewslice_type) < (0)) __PYX_ERR(1, 950, __pyx_L1_error)
|
|
26577
26589
|
__Pyx_RefNannyFinishContext();
|
|
26578
26590
|
return 0;
|
|
26579
26591
|
__pyx_L1_error:;
|
|
@@ -26593,165 +26605,165 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
26593
26605
|
/*--- Type import code ---*/
|
|
26594
26606
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
26595
26607
|
__Pyx_GOTREF(__pyx_t_1);
|
|
26596
|
-
__pyx_mstate->__pyx_ptype_7cpython_4type_type =
|
|
26608
|
+
__pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_6(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
|
26597
26609
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26598
|
-
sizeof(PyTypeObject),
|
|
26610
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyTypeObject),
|
|
26599
26611
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26600
26612
|
0, 0,
|
|
26601
26613
|
#else
|
|
26602
|
-
sizeof(PyHeapTypeObject),
|
|
26614
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyHeapTypeObject),
|
|
26603
26615
|
#endif
|
|
26604
|
-
|
|
26616
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
|
26605
26617
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
26606
26618
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 228, __pyx_L1_error)
|
|
26607
26619
|
__Pyx_GOTREF(__pyx_t_1);
|
|
26608
|
-
__pyx_mstate->__pyx_ptype_5numpy_dtype =
|
|
26620
|
+
__pyx_mstate->__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "dtype",
|
|
26609
26621
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26610
|
-
sizeof(PyArray_Descr),
|
|
26622
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArray_Descr),
|
|
26611
26623
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26612
|
-
sizeof(PyArray_Descr),
|
|
26624
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArray_Descr),
|
|
26613
26625
|
#else
|
|
26614
|
-
sizeof(PyArray_Descr),
|
|
26626
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArray_Descr),
|
|
26615
26627
|
#endif
|
|
26616
|
-
|
|
26617
|
-
__pyx_mstate->__pyx_ptype_5numpy_flatiter =
|
|
26628
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 228, __pyx_L1_error)
|
|
26629
|
+
__pyx_mstate->__pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "flatiter",
|
|
26618
26630
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26619
|
-
sizeof(PyArrayIterObject),
|
|
26631
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayIterObject),
|
|
26620
26632
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26621
|
-
sizeof(PyArrayIterObject),
|
|
26633
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayIterObject),
|
|
26622
26634
|
#else
|
|
26623
|
-
sizeof(PyArrayIterObject),
|
|
26635
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayIterObject),
|
|
26624
26636
|
#endif
|
|
26625
|
-
|
|
26626
|
-
__pyx_mstate->__pyx_ptype_5numpy_broadcast =
|
|
26637
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 273, __pyx_L1_error)
|
|
26638
|
+
__pyx_mstate->__pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "broadcast",
|
|
26627
26639
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26628
|
-
sizeof(PyArrayMultiIterObject),
|
|
26640
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayMultiIterObject),
|
|
26629
26641
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26630
|
-
sizeof(PyArrayMultiIterObject),
|
|
26642
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayMultiIterObject),
|
|
26631
26643
|
#else
|
|
26632
|
-
sizeof(PyArrayMultiIterObject),
|
|
26644
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayMultiIterObject),
|
|
26633
26645
|
#endif
|
|
26634
|
-
|
|
26635
|
-
__pyx_mstate->__pyx_ptype_5numpy_ndarray =
|
|
26646
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 277, __pyx_L1_error)
|
|
26647
|
+
__pyx_mstate->__pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "ndarray",
|
|
26636
26648
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26637
|
-
sizeof(PyArrayObject),
|
|
26649
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayObject),
|
|
26638
26650
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26639
|
-
sizeof(PyArrayObject),
|
|
26651
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayObject),
|
|
26640
26652
|
#else
|
|
26641
|
-
sizeof(PyArrayObject),
|
|
26653
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyArrayObject),
|
|
26642
26654
|
#endif
|
|
26643
|
-
|
|
26644
|
-
__pyx_mstate->__pyx_ptype_5numpy_generic =
|
|
26655
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 316, __pyx_L1_error)
|
|
26656
|
+
__pyx_mstate->__pyx_ptype_5numpy_generic = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "generic",
|
|
26645
26657
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26646
|
-
sizeof(PyObject),
|
|
26658
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26647
26659
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26648
|
-
sizeof(PyObject),
|
|
26660
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26649
26661
|
#else
|
|
26650
|
-
sizeof(PyObject),
|
|
26662
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26651
26663
|
#endif
|
|
26652
|
-
|
|
26653
|
-
__pyx_mstate->__pyx_ptype_5numpy_number =
|
|
26664
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_generic) __PYX_ERR(2, 825, __pyx_L1_error)
|
|
26665
|
+
__pyx_mstate->__pyx_ptype_5numpy_number = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "number",
|
|
26654
26666
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26655
|
-
sizeof(PyObject),
|
|
26667
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26656
26668
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26657
|
-
sizeof(PyObject),
|
|
26669
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26658
26670
|
#else
|
|
26659
|
-
sizeof(PyObject),
|
|
26671
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26660
26672
|
#endif
|
|
26661
|
-
|
|
26662
|
-
__pyx_mstate->__pyx_ptype_5numpy_integer =
|
|
26673
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_number) __PYX_ERR(2, 827, __pyx_L1_error)
|
|
26674
|
+
__pyx_mstate->__pyx_ptype_5numpy_integer = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "integer",
|
|
26663
26675
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26664
|
-
sizeof(PyObject),
|
|
26676
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26665
26677
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26666
|
-
sizeof(PyObject),
|
|
26678
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26667
26679
|
#else
|
|
26668
|
-
sizeof(PyObject),
|
|
26680
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26669
26681
|
#endif
|
|
26670
|
-
|
|
26671
|
-
__pyx_mstate->__pyx_ptype_5numpy_signedinteger =
|
|
26682
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_integer) __PYX_ERR(2, 829, __pyx_L1_error)
|
|
26683
|
+
__pyx_mstate->__pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "signedinteger",
|
|
26672
26684
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26673
|
-
sizeof(PyObject),
|
|
26685
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26674
26686
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26675
|
-
sizeof(PyObject),
|
|
26687
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26676
26688
|
#else
|
|
26677
|
-
sizeof(PyObject),
|
|
26689
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26678
26690
|
#endif
|
|
26679
|
-
|
|
26680
|
-
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger =
|
|
26691
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 831, __pyx_L1_error)
|
|
26692
|
+
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "unsignedinteger",
|
|
26681
26693
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26682
|
-
sizeof(PyObject),
|
|
26694
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26683
26695
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26684
|
-
sizeof(PyObject),
|
|
26696
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26685
26697
|
#else
|
|
26686
|
-
sizeof(PyObject),
|
|
26698
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26687
26699
|
#endif
|
|
26688
|
-
|
|
26689
|
-
__pyx_mstate->__pyx_ptype_5numpy_inexact =
|
|
26700
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 833, __pyx_L1_error)
|
|
26701
|
+
__pyx_mstate->__pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "inexact",
|
|
26690
26702
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26691
|
-
sizeof(PyObject),
|
|
26703
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26692
26704
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26693
|
-
sizeof(PyObject),
|
|
26705
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26694
26706
|
#else
|
|
26695
|
-
sizeof(PyObject),
|
|
26707
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26696
26708
|
#endif
|
|
26697
|
-
|
|
26698
|
-
__pyx_mstate->__pyx_ptype_5numpy_floating =
|
|
26709
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 835, __pyx_L1_error)
|
|
26710
|
+
__pyx_mstate->__pyx_ptype_5numpy_floating = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "floating",
|
|
26699
26711
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26700
|
-
sizeof(PyObject),
|
|
26712
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26701
26713
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26702
|
-
sizeof(PyObject),
|
|
26714
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26703
26715
|
#else
|
|
26704
|
-
sizeof(PyObject),
|
|
26716
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26705
26717
|
#endif
|
|
26706
|
-
|
|
26707
|
-
__pyx_mstate->__pyx_ptype_5numpy_complexfloating =
|
|
26718
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_floating) __PYX_ERR(2, 837, __pyx_L1_error)
|
|
26719
|
+
__pyx_mstate->__pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "complexfloating",
|
|
26708
26720
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26709
|
-
sizeof(PyObject),
|
|
26721
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26710
26722
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26711
|
-
sizeof(PyObject),
|
|
26723
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26712
26724
|
#else
|
|
26713
|
-
sizeof(PyObject),
|
|
26725
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26714
26726
|
#endif
|
|
26715
|
-
|
|
26716
|
-
__pyx_mstate->__pyx_ptype_5numpy_flexible =
|
|
26727
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 839, __pyx_L1_error)
|
|
26728
|
+
__pyx_mstate->__pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "flexible",
|
|
26717
26729
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26718
|
-
sizeof(PyObject),
|
|
26730
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26719
26731
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26720
|
-
sizeof(PyObject),
|
|
26732
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26721
26733
|
#else
|
|
26722
|
-
sizeof(PyObject),
|
|
26734
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26723
26735
|
#endif
|
|
26724
|
-
|
|
26725
|
-
__pyx_mstate->__pyx_ptype_5numpy_character =
|
|
26736
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 841, __pyx_L1_error)
|
|
26737
|
+
__pyx_mstate->__pyx_ptype_5numpy_character = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "character",
|
|
26726
26738
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26727
|
-
sizeof(PyObject),
|
|
26739
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26728
26740
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26729
|
-
sizeof(PyObject),
|
|
26741
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26730
26742
|
#else
|
|
26731
|
-
sizeof(PyObject),
|
|
26743
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyObject),
|
|
26732
26744
|
#endif
|
|
26733
|
-
|
|
26734
|
-
__pyx_mstate->__pyx_ptype_5numpy_ufunc =
|
|
26745
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_character) __PYX_ERR(2, 843, __pyx_L1_error)
|
|
26746
|
+
__pyx_mstate->__pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_1_6(__pyx_t_1, "numpy", "ufunc",
|
|
26735
26747
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26736
|
-
sizeof(PyUFuncObject),
|
|
26748
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyUFuncObject),
|
|
26737
26749
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26738
|
-
sizeof(PyUFuncObject),
|
|
26750
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyUFuncObject),
|
|
26739
26751
|
#else
|
|
26740
|
-
sizeof(PyUFuncObject),
|
|
26752
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(PyUFuncObject),
|
|
26741
26753
|
#endif
|
|
26742
|
-
|
|
26754
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_6); if (!__pyx_mstate->__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 907, __pyx_L1_error)
|
|
26743
26755
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
26744
26756
|
__pyx_t_1 = PyImport_ImportModule("obliquetree.src.base"); if (unlikely(!__pyx_t_1)) __PYX_ERR(4, 4, __pyx_L1_error)
|
|
26745
26757
|
__Pyx_GOTREF(__pyx_t_1);
|
|
26746
|
-
__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier =
|
|
26758
|
+
__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier = __Pyx_ImportType_3_1_6(__pyx_t_1, "obliquetree.src.base", "TreeClassifier",
|
|
26747
26759
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
|
26748
|
-
sizeof(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier),
|
|
26760
|
+
sizeof(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier),
|
|
26749
26761
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
|
26750
|
-
sizeof(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier),
|
|
26762
|
+
sizeof(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier),
|
|
26751
26763
|
#else
|
|
26752
|
-
sizeof(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier),
|
|
26764
|
+
sizeof(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier), __PYX_GET_STRUCT_ALIGNMENT_3_1_6(struct __pyx_obj_11obliquetree_3src_4base_TreeClassifier),
|
|
26753
26765
|
#endif
|
|
26754
|
-
|
|
26766
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_6); if (!__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier) __PYX_ERR(4, 4, __pyx_L1_error)
|
|
26755
26767
|
__pyx_vtabptr_11obliquetree_3src_4base_TreeClassifier = (struct __pyx_vtabstruct_11obliquetree_3src_4base_TreeClassifier*)__Pyx_GetVtable(__pyx_mstate->__pyx_ptype_11obliquetree_3src_4base_TreeClassifier); if (unlikely(!__pyx_vtabptr_11obliquetree_3src_4base_TreeClassifier)) __PYX_ERR(4, 4, __pyx_L1_error)
|
|
26756
26768
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
26757
26769
|
__Pyx_RefNannyFinishContext();
|
|
@@ -26782,11 +26794,11 @@ static int __Pyx_modinit_function_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
|
26782
26794
|
/*--- Function import code ---*/
|
|
26783
26795
|
__pyx_t_1 = PyImport_ImportModule("obliquetree.src.utils"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26784
26796
|
__Pyx_GOTREF(__pyx_t_1);
|
|
26785
|
-
if (
|
|
26797
|
+
if (__Pyx_ImportFunction_3_1_6(__pyx_t_1, "sort_pointer_array", (void (**)(void))&__pyx_f_11obliquetree_3src_5utils_sort_pointer_array, "void (struct __pyx_t_11obliquetree_3src_5utils_SortItem *, int const )") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26786
26798
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
26787
26799
|
__pyx_t_1 = PyImport_ImportModule("scipy.linalg.cython_blas"); if (!__pyx_t_1) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26788
26800
|
__Pyx_GOTREF(__pyx_t_1);
|
|
26789
|
-
if (
|
|
26801
|
+
if (__Pyx_ImportFunction_3_1_6(__pyx_t_1, "dgemv", (void (**)(void))&__pyx_f_5scipy_6linalg_11cython_blas_dgemv, "void (char *, int *, int *, __pyx_t_5scipy_6linalg_11cython_blas_d *, __pyx_t_5scipy_6linalg_11cython_blas_d *, int *, __pyx_t_5scipy_6linalg_11cython_blas_d *, int *, __pyx_t_5scipy_6linalg_11cython_blas_d *, __pyx_t_5scipy_6linalg_11cython_blas_d *, int *)") < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
26790
26802
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
|
26791
26803
|
__Pyx_RefNannyFinishContext();
|
|
26792
26804
|
return 0;
|
|
@@ -27031,7 +27043,7 @@ if (!__Pyx_RefNanny) {
|
|
|
27031
27043
|
#endif
|
|
27032
27044
|
|
|
27033
27045
|
__Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
27034
|
-
if (__Pyx_check_binary_version(__PYX_LIMITED_VERSION_HEX, __Pyx_get_runtime_version(), CYTHON_COMPILING_IN_LIMITED_API) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27046
|
+
if (__Pyx_check_binary_version(__PYX_LIMITED_VERSION_HEX, __Pyx_get_runtime_version(), CYTHON_COMPILING_IN_LIMITED_API) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27035
27047
|
#ifdef __Pxy_PyFrame_Initialize_Offsets
|
|
27036
27048
|
__Pxy_PyFrame_Initialize_Offsets();
|
|
27037
27049
|
#endif
|
|
@@ -27039,30 +27051,30 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27039
27051
|
__pyx_mstate->__pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_mstate->__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27040
27052
|
__pyx_mstate->__pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_mstate->__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27041
27053
|
/*--- Initialize various global constants etc. ---*/
|
|
27042
|
-
if (__Pyx_InitConstants(__pyx_mstate) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27054
|
+
if (__Pyx_InitConstants(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27043
27055
|
stringtab_initialized = 1;
|
|
27044
|
-
if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27056
|
+
if (__Pyx_InitGlobals() < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27045
27057
|
#if 0 || defined(__Pyx_CyFunction_USED) || defined(__Pyx_FusedFunction_USED) || defined(__Pyx_Coroutine_USED) || defined(__Pyx_Generator_USED) || defined(__Pyx_AsyncGen_USED)
|
|
27046
|
-
if (__pyx_CommonTypesMetaclass_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27058
|
+
if (__pyx_CommonTypesMetaclass_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27047
27059
|
#endif
|
|
27048
27060
|
#ifdef __Pyx_CyFunction_USED
|
|
27049
|
-
if (__pyx_CyFunction_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27061
|
+
if (__pyx_CyFunction_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27050
27062
|
#endif
|
|
27051
27063
|
#ifdef __Pyx_FusedFunction_USED
|
|
27052
|
-
if (__pyx_FusedFunction_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27064
|
+
if (__pyx_FusedFunction_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27053
27065
|
#endif
|
|
27054
27066
|
#ifdef __Pyx_Coroutine_USED
|
|
27055
|
-
if (__pyx_Coroutine_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27067
|
+
if (__pyx_Coroutine_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27056
27068
|
#endif
|
|
27057
27069
|
#ifdef __Pyx_Generator_USED
|
|
27058
|
-
if (__pyx_Generator_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27070
|
+
if (__pyx_Generator_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27059
27071
|
#endif
|
|
27060
27072
|
#ifdef __Pyx_AsyncGen_USED
|
|
27061
|
-
if (__pyx_AsyncGen_init(__pyx_m) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27073
|
+
if (__pyx_AsyncGen_init(__pyx_m) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27062
27074
|
#endif
|
|
27063
27075
|
/*--- Library function declarations ---*/
|
|
27064
27076
|
if (__pyx_module_is_main_obliquetree__src__oblique) {
|
|
27065
|
-
if (PyObject_SetAttr(__pyx_m, __pyx_mstate_global->__pyx_n_u_name_2, __pyx_mstate_global->__pyx_n_u_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27077
|
+
if (PyObject_SetAttr(__pyx_m, __pyx_mstate_global->__pyx_n_u_name_2, __pyx_mstate_global->__pyx_n_u_main) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27066
27078
|
}
|
|
27067
27079
|
{
|
|
27068
27080
|
PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
@@ -27071,10 +27083,10 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27071
27083
|
}
|
|
27072
27084
|
}
|
|
27073
27085
|
/*--- Builtin init code ---*/
|
|
27074
|
-
if (__Pyx_InitCachedBuiltins(__pyx_mstate) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27086
|
+
if (__Pyx_InitCachedBuiltins(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27075
27087
|
/*--- Constants init code ---*/
|
|
27076
|
-
if (__Pyx_InitCachedConstants(__pyx_mstate) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27077
|
-
if (__Pyx_CreateCodeObjects(__pyx_mstate) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27088
|
+
if (__Pyx_InitCachedConstants(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27089
|
+
if (__Pyx_CreateCodeObjects(__pyx_mstate) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27078
27090
|
/*--- Global type/function init code ---*/
|
|
27079
27091
|
(void)__Pyx_modinit_global_init_code(__pyx_mstate);
|
|
27080
27092
|
(void)__Pyx_modinit_variable_export_code(__pyx_mstate);
|
|
@@ -27225,7 +27237,7 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27225
27237
|
*/
|
|
27226
27238
|
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_count); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 240, __pyx_L10_error)
|
|
27227
27239
|
__Pyx_GOTREF(__pyx_t_5);
|
|
27228
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_array_type, __pyx_mstate_global->__pyx_n_u_count, __pyx_t_5) < 0) __PYX_ERR(1, 240, __pyx_L10_error)
|
|
27240
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_array_type, __pyx_mstate_global->__pyx_n_u_count, __pyx_t_5) < (0)) __PYX_ERR(1, 240, __pyx_L10_error)
|
|
27229
27241
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
27230
27242
|
|
|
27231
27243
|
/* "View.MemoryView":241
|
|
@@ -27237,7 +27249,7 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27237
27249
|
*/
|
|
27238
27250
|
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_index); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 241, __pyx_L10_error)
|
|
27239
27251
|
__Pyx_GOTREF(__pyx_t_5);
|
|
27240
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_array_type, __pyx_mstate_global->__pyx_n_u_index, __pyx_t_5) < 0) __PYX_ERR(1, 241, __pyx_L10_error)
|
|
27252
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_array_type, __pyx_mstate_global->__pyx_n_u_index, __pyx_t_5) < (0)) __PYX_ERR(1, 241, __pyx_L10_error)
|
|
27241
27253
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
27242
27254
|
|
|
27243
27255
|
/* "View.MemoryView":239
|
|
@@ -27447,7 +27459,7 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27447
27459
|
*/
|
|
27448
27460
|
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_count); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 983, __pyx_L18_error)
|
|
27449
27461
|
__Pyx_GOTREF(__pyx_t_5);
|
|
27450
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_memoryviewslice_type, __pyx_mstate_global->__pyx_n_u_count, __pyx_t_5) < 0) __PYX_ERR(1, 983, __pyx_L18_error)
|
|
27462
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_memoryviewslice_type, __pyx_mstate_global->__pyx_n_u_count, __pyx_t_5) < (0)) __PYX_ERR(1, 983, __pyx_L18_error)
|
|
27451
27463
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
27452
27464
|
|
|
27453
27465
|
/* "View.MemoryView":984
|
|
@@ -27459,7 +27471,7 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27459
27471
|
*/
|
|
27460
27472
|
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_collections_abc_Sequence, __pyx_mstate_global->__pyx_n_u_index); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 984, __pyx_L18_error)
|
|
27461
27473
|
__Pyx_GOTREF(__pyx_t_5);
|
|
27462
|
-
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_memoryviewslice_type, __pyx_mstate_global->__pyx_n_u_index, __pyx_t_5) < 0) __PYX_ERR(1, 984, __pyx_L18_error)
|
|
27474
|
+
if (__Pyx_SetItemOnTypeDict(__pyx_mstate_global->__pyx_memoryviewslice_type, __pyx_mstate_global->__pyx_n_u_index, __pyx_t_5) < (0)) __PYX_ERR(1, 984, __pyx_L18_error)
|
|
27463
27475
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
27464
27476
|
|
|
27465
27477
|
/* "View.MemoryView":982
|
|
@@ -27614,7 +27626,7 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27614
27626
|
*/
|
|
27615
27627
|
__pyx_t_5 = PyCFunction_NewEx(&__pyx_mdef_15View_dot_MemoryView_1__pyx_unpickle_Enum, NULL, __pyx_mstate_global->__pyx_n_u_View_MemoryView); if (unlikely(!__pyx_t_5)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
27616
27628
|
__Pyx_GOTREF(__pyx_t_5);
|
|
27617
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle_Enum, __pyx_t_5) < 0) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
27629
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_pyx_unpickle_Enum, __pyx_t_5) < (0)) __PYX_ERR(1, 1, __pyx_L1_error)
|
|
27618
27630
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
27619
27631
|
|
|
27620
27632
|
/* "obliquetree/src/oblique.pyx":4
|
|
@@ -27626,7 +27638,7 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27626
27638
|
*/
|
|
27627
27639
|
__pyx_t_5 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 4, __pyx_L1_error)
|
|
27628
27640
|
__Pyx_GOTREF(__pyx_t_5);
|
|
27629
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_5) < 0) __PYX_ERR(0, 4, __pyx_L1_error)
|
|
27641
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_5) < (0)) __PYX_ERR(0, 4, __pyx_L1_error)
|
|
27630
27642
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
27631
27643
|
|
|
27632
27644
|
/* "obliquetree/src/oblique.pyx":7
|
|
@@ -27643,7 +27655,7 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27643
27655
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
27644
27656
|
__pyx_t_5 = __Pyx_ImportFrom(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_lbfgsb); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 7, __pyx_L1_error)
|
|
27645
27657
|
__Pyx_GOTREF(__pyx_t_5);
|
|
27646
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_lbfgsb, __pyx_t_5) < 0) __PYX_ERR(0, 7, __pyx_L1_error)
|
|
27658
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_lbfgsb, __pyx_t_5) < (0)) __PYX_ERR(0, 7, __pyx_L1_error)
|
|
27647
27659
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
27648
27660
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
27649
27661
|
|
|
@@ -27661,7 +27673,7 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27661
27673
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
27662
27674
|
__pyx_t_4 = __Pyx_ImportFrom(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_combinations); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
27663
27675
|
__Pyx_GOTREF(__pyx_t_4);
|
|
27664
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_combinations, __pyx_t_4) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
27676
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_combinations, __pyx_t_4) < (0)) __PYX_ERR(0, 12, __pyx_L1_error)
|
|
27665
27677
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
|
27666
27678
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
27667
27679
|
|
|
@@ -27672,7 +27684,7 @@ __Pyx_RefNannySetupContext("PyInit_oblique", 0);
|
|
|
27672
27684
|
*/
|
|
27673
27685
|
__pyx_t_5 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27674
27686
|
__Pyx_GOTREF(__pyx_t_5);
|
|
27675
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_5) < 0) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27687
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_test, __pyx_t_5) < (0)) __PYX_ERR(0, 1, __pyx_L1_error)
|
|
27676
27688
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
|
27677
27689
|
|
|
27678
27690
|
/*--- Wrapped vars code ---*/
|
|
@@ -28210,7 +28222,7 @@ __Pyx_PyTuple_FromArray(PyObject *const *src, Py_ssize_t n)
|
|
|
28210
28222
|
res = PyTuple_New(n);
|
|
28211
28223
|
if (unlikely(res == NULL)) return NULL;
|
|
28212
28224
|
for (i = 0; i < n; i++) {
|
|
28213
|
-
if (unlikely(__Pyx_PyTuple_SET_ITEM(res, i, src[i]) < 0)) {
|
|
28225
|
+
if (unlikely(__Pyx_PyTuple_SET_ITEM(res, i, src[i]) < (0))) {
|
|
28214
28226
|
Py_DECREF(res);
|
|
28215
28227
|
return NULL;
|
|
28216
28228
|
}
|
|
@@ -31592,6 +31604,7 @@ static PyObject *__Pyx_GetTypeDict(PyTypeObject *tp) {
|
|
|
31592
31604
|
changed = 1;
|
|
31593
31605
|
}
|
|
31594
31606
|
#endif // CYTHON_METH_FASTCALL
|
|
31607
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
31595
31608
|
else if (strcmp(memb->name, "__module__") == 0) {
|
|
31596
31609
|
PyObject *descr;
|
|
31597
31610
|
assert(memb->type == T_OBJECT);
|
|
@@ -31606,11 +31619,13 @@ static PyObject *__Pyx_GetTypeDict(PyTypeObject *tp) {
|
|
|
31606
31619
|
}
|
|
31607
31620
|
changed = 1;
|
|
31608
31621
|
}
|
|
31622
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
31609
31623
|
}
|
|
31610
31624
|
memb++;
|
|
31611
31625
|
}
|
|
31612
31626
|
}
|
|
31613
31627
|
#endif // !CYTHON_COMPILING_IN_LIMITED_API
|
|
31628
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
|
31614
31629
|
slot = spec->slots;
|
|
31615
31630
|
while (slot && slot->slot && slot->slot != Py_tp_getset)
|
|
31616
31631
|
slot++;
|
|
@@ -31642,6 +31657,7 @@ static PyObject *__Pyx_GetTypeDict(PyTypeObject *tp) {
|
|
|
31642
31657
|
++getset;
|
|
31643
31658
|
}
|
|
31644
31659
|
}
|
|
31660
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
|
31645
31661
|
if (changed)
|
|
31646
31662
|
PyType_Modified(type);
|
|
31647
31663
|
#endif // PY_VERSION_HEX > 0x030900B1
|
|
@@ -31746,6 +31762,13 @@ try_unpack:
|
|
|
31746
31762
|
|
|
31747
31763
|
/* PyObjectCallMethod0 */
|
|
31748
31764
|
static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
|
|
31765
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
|
31766
|
+
PyObject *args[1] = {obj};
|
|
31767
|
+
(void) __Pyx_PyObject_GetMethod;
|
|
31768
|
+
(void) __Pyx_PyObject_CallOneArg;
|
|
31769
|
+
(void) __Pyx_PyObject_CallNoArg;
|
|
31770
|
+
return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
|
|
31771
|
+
#else
|
|
31749
31772
|
PyObject *method = NULL, *result = NULL;
|
|
31750
31773
|
int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
|
|
31751
31774
|
if (likely(is_method)) {
|
|
@@ -31758,6 +31781,7 @@ try_unpack:
|
|
|
31758
31781
|
Py_DECREF(method);
|
|
31759
31782
|
bad:
|
|
31760
31783
|
return result;
|
|
31784
|
+
#endif
|
|
31761
31785
|
}
|
|
31762
31786
|
|
|
31763
31787
|
/* ValidateBasesTuple */
|
|
@@ -32187,15 +32211,15 @@ __PYX_GOOD:
|
|
|
32187
32211
|
}
|
|
32188
32212
|
|
|
32189
32213
|
/* TypeImport */
|
|
32190
|
-
#ifndef
|
|
32191
|
-
#define
|
|
32192
|
-
static PyTypeObject *
|
|
32193
|
-
size_t size, size_t alignment, enum
|
|
32214
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_6
|
|
32215
|
+
#define __PYX_HAVE_RT_ImportType_3_1_6
|
|
32216
|
+
static PyTypeObject *__Pyx_ImportType_3_1_6(PyObject *module, const char *module_name, const char *class_name,
|
|
32217
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_6 check_size)
|
|
32194
32218
|
{
|
|
32195
32219
|
PyObject *result = 0;
|
|
32196
32220
|
Py_ssize_t basicsize;
|
|
32197
32221
|
Py_ssize_t itemsize;
|
|
32198
|
-
#if CYTHON_COMPILING_IN_LIMITED_API
|
|
32222
|
+
#if defined(Py_LIMITED_API) || (defined(CYTHON_COMPILING_IN_LIMITED_API) && CYTHON_COMPILING_IN_LIMITED_API)
|
|
32199
32223
|
PyObject *py_basicsize;
|
|
32200
32224
|
PyObject *py_itemsize;
|
|
32201
32225
|
#endif
|
|
@@ -32208,7 +32232,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
32208
32232
|
module_name, class_name);
|
|
32209
32233
|
goto bad;
|
|
32210
32234
|
}
|
|
32211
|
-
#if !CYTHON_COMPILING_IN_LIMITED_API
|
|
32235
|
+
#if !( defined(Py_LIMITED_API) || (defined(CYTHON_COMPILING_IN_LIMITED_API) && CYTHON_COMPILING_IN_LIMITED_API) )
|
|
32212
32236
|
basicsize = ((PyTypeObject *)result)->tp_basicsize;
|
|
32213
32237
|
itemsize = ((PyTypeObject *)result)->tp_itemsize;
|
|
32214
32238
|
#else
|
|
@@ -32246,7 +32270,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
32246
32270
|
module_name, class_name, size, basicsize+itemsize);
|
|
32247
32271
|
goto bad;
|
|
32248
32272
|
}
|
|
32249
|
-
if (check_size ==
|
|
32273
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_6 &&
|
|
32250
32274
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
|
32251
32275
|
PyErr_Format(PyExc_ValueError,
|
|
32252
32276
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
@@ -32254,7 +32278,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
|
32254
32278
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
|
32255
32279
|
goto bad;
|
|
32256
32280
|
}
|
|
32257
|
-
else if (check_size ==
|
|
32281
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_6 && (size_t)basicsize > size) {
|
|
32258
32282
|
if (PyErr_WarnFormat(NULL, 0,
|
|
32259
32283
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
|
32260
32284
|
"Expected %zd from C header, got %zd from PyObject",
|
|
@@ -34662,9 +34686,9 @@ bad:
|
|
|
34662
34686
|
}
|
|
34663
34687
|
|
|
34664
34688
|
/* FunctionImport */
|
|
34665
|
-
#ifndef
|
|
34666
|
-
#define
|
|
34667
|
-
static int
|
|
34689
|
+
#ifndef __PYX_HAVE_RT_ImportFunction_3_1_6
|
|
34690
|
+
#define __PYX_HAVE_RT_ImportFunction_3_1_6
|
|
34691
|
+
static int __Pyx_ImportFunction_3_1_6(PyObject *module, const char *funcname, void (**f)(void), const char *sig) {
|
|
34668
34692
|
PyObject *d = 0;
|
|
34669
34693
|
PyObject *cobj = 0;
|
|
34670
34694
|
union {
|
|
@@ -34956,6 +34980,17 @@ static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) {
|
|
|
34956
34980
|
static CYTHON_INLINE PyObject * __Pyx_PyLong_FromSize_t(size_t ival) {
|
|
34957
34981
|
return PyLong_FromSize_t(ival);
|
|
34958
34982
|
}
|
|
34983
|
+
#if CYTHON_USE_PYLONG_INTERNALS
|
|
34984
|
+
static CYTHON_INLINE int __Pyx_PyLong_CompactAsLong(PyObject *x, long *return_value) {
|
|
34985
|
+
if (unlikely(!__Pyx_PyLong_IsCompact(x)))
|
|
34986
|
+
return 0;
|
|
34987
|
+
Py_ssize_t value = __Pyx_PyLong_CompactValue(x);
|
|
34988
|
+
if ((sizeof(long) < sizeof(Py_ssize_t)) && unlikely(value != (long) value))
|
|
34989
|
+
return 0;
|
|
34990
|
+
*return_value = (long) value;
|
|
34991
|
+
return 1;
|
|
34992
|
+
}
|
|
34993
|
+
#endif
|
|
34959
34994
|
|
|
34960
34995
|
|
|
34961
34996
|
/* MultiPhaseInitModuleState */
|