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