edsger 0.1.5__cp311-cp311-macosx_11_0_arm64.whl → 0.1.6__cp311-cp311-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- edsger/_version.py +1 -1
- edsger/bellman_ford.c +1344 -967
- edsger/bellman_ford.cpython-311-darwin.so +0 -0
- edsger/bellman_ford.pyx +7 -0
- edsger/bfs.c +33575 -0
- edsger/bfs.cpython-311-darwin.so +0 -0
- edsger/bfs.pyx +243 -0
- edsger/commons.c +283 -278
- edsger/commons.cpython-311-darwin.so +0 -0
- edsger/commons.pyx +7 -0
- edsger/dijkstra.c +2417 -1856
- edsger/dijkstra.cpython-311-darwin.so +0 -0
- edsger/dijkstra.pyx +7 -0
- edsger/graph_importer.py +340 -0
- edsger/networks.py +4 -2
- edsger/path.py +676 -129
- edsger/path_tracking.c +407 -301
- edsger/path_tracking.cpython-311-darwin.so +0 -0
- edsger/path_tracking.pyx +7 -0
- edsger/pq_4ary_dec_0b.c +1159 -1015
- edsger/pq_4ary_dec_0b.cpython-311-darwin.so +0 -0
- edsger/pq_4ary_dec_0b.pyx +7 -0
- edsger/spiess_florian.c +1394 -1139
- edsger/spiess_florian.cpython-311-darwin.so +0 -0
- edsger/spiess_florian.pyx +7 -0
- edsger/star.c +1224 -766
- edsger/star.cpython-311-darwin.so +0 -0
- edsger/star.pyx +7 -0
- edsger/utils.py +9 -8
- {edsger-0.1.5.dist-info → edsger-0.1.6.dist-info}/METADATA +124 -2
- edsger-0.1.6.dist-info/RECORD +40 -0
- edsger-0.1.5.dist-info/RECORD +0 -36
- {edsger-0.1.5.dist-info → edsger-0.1.6.dist-info}/WHEEL +0 -0
- {edsger-0.1.5.dist-info → edsger-0.1.6.dist-info}/licenses/AUTHORS.rst +0 -0
- {edsger-0.1.5.dist-info → edsger-0.1.6.dist-info}/licenses/LICENSE +0 -0
- {edsger-0.1.5.dist-info → edsger-0.1.6.dist-info}/top_level.txt +0 -0
edsger/path_tracking.c
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
/* Generated by Cython 3.1.
|
1
|
+
/* Generated by Cython 3.1.4 */
|
2
2
|
|
3
3
|
/* BEGIN: Cython Metadata
|
4
4
|
{
|
@@ -12,7 +12,8 @@
|
|
12
12
|
"depends": [],
|
13
13
|
"extra_compile_args": [
|
14
14
|
"-Ofast",
|
15
|
-
"-flto"
|
15
|
+
"-flto",
|
16
|
+
"-march=native"
|
16
17
|
],
|
17
18
|
"extra_link_args": [
|
18
19
|
"-flto"
|
@@ -40,8 +41,8 @@ END: Cython Metadata */
|
|
40
41
|
#elif PY_VERSION_HEX < 0x03080000
|
41
42
|
#error Cython requires Python 3.8+.
|
42
43
|
#else
|
43
|
-
#define __PYX_ABI_VERSION "
|
44
|
-
#define CYTHON_HEX_VERSION
|
44
|
+
#define __PYX_ABI_VERSION "3_1_4"
|
45
|
+
#define CYTHON_HEX_VERSION 0x030104F0
|
45
46
|
#define CYTHON_FUTURE_DIVISION 1
|
46
47
|
/* CModulePreamble */
|
47
48
|
#include <stddef.h>
|
@@ -1387,7 +1388,7 @@ static const char *__pyx_filename;
|
|
1387
1388
|
static const char* const __pyx_f[] = {
|
1388
1389
|
"src/edsger/path_tracking.pyx",
|
1389
1390
|
"<stringsource>",
|
1390
|
-
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1391
|
+
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd",
|
1391
1392
|
"cpython/type.pxd",
|
1392
1393
|
};
|
1393
1394
|
/* #### Code section: utility_code_proto_before_types ### */
|
@@ -1610,7 +1611,7 @@ typedef struct {
|
|
1610
1611
|
|
1611
1612
|
/* #### Code section: numeric_typedefs ### */
|
1612
1613
|
|
1613
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1614
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":743
|
1614
1615
|
* # in Cython to enable them only on the right systems.
|
1615
1616
|
*
|
1616
1617
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
@@ -1619,7 +1620,7 @@ typedef struct {
|
|
1619
1620
|
*/
|
1620
1621
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
1621
1622
|
|
1622
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1623
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":744
|
1623
1624
|
*
|
1624
1625
|
* ctypedef npy_int8 int8_t
|
1625
1626
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
@@ -1628,7 +1629,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1628
1629
|
*/
|
1629
1630
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
1630
1631
|
|
1631
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1632
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
|
1632
1633
|
* ctypedef npy_int8 int8_t
|
1633
1634
|
* ctypedef npy_int16 int16_t
|
1634
1635
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
@@ -1637,7 +1638,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1637
1638
|
*/
|
1638
1639
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
1639
1640
|
|
1640
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1641
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
|
1641
1642
|
* ctypedef npy_int16 int16_t
|
1642
1643
|
* ctypedef npy_int32 int32_t
|
1643
1644
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
@@ -1646,7 +1647,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1646
1647
|
*/
|
1647
1648
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
1648
1649
|
|
1649
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1650
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":748
|
1650
1651
|
* ctypedef npy_int64 int64_t
|
1651
1652
|
*
|
1652
1653
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
@@ -1655,7 +1656,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1655
1656
|
*/
|
1656
1657
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
1657
1658
|
|
1658
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1659
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":749
|
1659
1660
|
*
|
1660
1661
|
* ctypedef npy_uint8 uint8_t
|
1661
1662
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
@@ -1664,7 +1665,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1664
1665
|
*/
|
1665
1666
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
1666
1667
|
|
1667
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1668
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":750
|
1668
1669
|
* ctypedef npy_uint8 uint8_t
|
1669
1670
|
* ctypedef npy_uint16 uint16_t
|
1670
1671
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
@@ -1673,7 +1674,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1673
1674
|
*/
|
1674
1675
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
1675
1676
|
|
1676
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1677
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":751
|
1677
1678
|
* ctypedef npy_uint16 uint16_t
|
1678
1679
|
* ctypedef npy_uint32 uint32_t
|
1679
1680
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
@@ -1682,7 +1683,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1682
1683
|
*/
|
1683
1684
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
1684
1685
|
|
1685
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1686
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":753
|
1686
1687
|
* ctypedef npy_uint64 uint64_t
|
1687
1688
|
*
|
1688
1689
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
@@ -1691,7 +1692,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1691
1692
|
*/
|
1692
1693
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
1693
1694
|
|
1694
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1695
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":754
|
1695
1696
|
*
|
1696
1697
|
* ctypedef npy_float32 float32_t
|
1697
1698
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
@@ -1700,7 +1701,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1700
1701
|
*/
|
1701
1702
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
1702
1703
|
|
1703
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1704
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
|
1704
1705
|
* ctypedef double complex complex128_t
|
1705
1706
|
*
|
1706
1707
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
@@ -1709,7 +1710,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1709
1710
|
*/
|
1710
1711
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
1711
1712
|
|
1712
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1713
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":762
|
1713
1714
|
*
|
1714
1715
|
* ctypedef npy_longlong longlong_t
|
1715
1716
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
@@ -1718,7 +1719,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1718
1719
|
*/
|
1719
1720
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
1720
1721
|
|
1721
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1722
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
|
1722
1723
|
* ctypedef npy_ulonglong ulonglong_t
|
1723
1724
|
*
|
1724
1725
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
@@ -1727,7 +1728,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1727
1728
|
*/
|
1728
1729
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
1729
1730
|
|
1730
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1731
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":765
|
1731
1732
|
*
|
1732
1733
|
* ctypedef npy_intp intp_t
|
1733
1734
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
@@ -1736,7 +1737,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1736
1737
|
*/
|
1737
1738
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
1738
1739
|
|
1739
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1740
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
|
1740
1741
|
* ctypedef npy_uintp uintp_t
|
1741
1742
|
*
|
1742
1743
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
@@ -1745,7 +1746,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1745
1746
|
*/
|
1746
1747
|
typedef npy_double __pyx_t_5numpy_float_t;
|
1747
1748
|
|
1748
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1749
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
|
1749
1750
|
*
|
1750
1751
|
* ctypedef npy_double float_t
|
1751
1752
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
@@ -1754,7 +1755,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
1754
1755
|
*/
|
1755
1756
|
typedef npy_double __pyx_t_5numpy_double_t;
|
1756
1757
|
|
1757
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1758
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":769
|
1758
1759
|
* ctypedef npy_double float_t
|
1759
1760
|
* ctypedef npy_double double_t
|
1760
1761
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
@@ -2586,6 +2587,17 @@ static int __Pyx_VectorcallBuilder_AddArgStr(const char *key, PyObject *value, P
|
|
2586
2587
|
#define __Pyx_VectorcallBuilder_AddArgStr(key, value, builder, args, n) PyDict_SetItemString(builder, key, value)
|
2587
2588
|
#endif
|
2588
2589
|
|
2590
|
+
/* BufferIndexError.proto */
|
2591
|
+
static void __Pyx_RaiseBufferIndexError(int axis);
|
2592
|
+
|
2593
|
+
/* BufferIndexErrorNogil.proto */
|
2594
|
+
static void __Pyx_RaiseBufferIndexErrorNogil(int axis);
|
2595
|
+
|
2596
|
+
/* WriteUnraisableException.proto */
|
2597
|
+
static void __Pyx_WriteUnraisable(const char *name, int clineno,
|
2598
|
+
int lineno, const char *filename,
|
2599
|
+
int full_traceback, int nogil);
|
2600
|
+
|
2589
2601
|
/* CallTypeTraverse.proto */
|
2590
2602
|
#if !CYTHON_USE_TYPE_SPECS || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x03090000)
|
2591
2603
|
#define __Pyx_call_type_traverse(o, always_call, visit, arg) 0
|
@@ -2639,22 +2651,22 @@ static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k);
|
|
2639
2651
|
static int __Pyx_setup_reduce(PyObject* type_obj);
|
2640
2652
|
|
2641
2653
|
/* TypeImport.proto */
|
2642
|
-
#ifndef
|
2643
|
-
#define
|
2654
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_4
|
2655
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_4
|
2644
2656
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
2645
2657
|
#include <stdalign.h>
|
2646
2658
|
#endif
|
2647
2659
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
2648
|
-
#define
|
2660
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) alignof(s)
|
2649
2661
|
#else
|
2650
|
-
#define
|
2662
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) sizeof(void*)
|
2651
2663
|
#endif
|
2652
|
-
enum
|
2653
|
-
|
2654
|
-
|
2655
|
-
|
2664
|
+
enum __Pyx_ImportType_CheckSize_3_1_4 {
|
2665
|
+
__Pyx_ImportType_CheckSize_Error_3_1_4 = 0,
|
2666
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4 = 1,
|
2667
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4 = 2
|
2656
2668
|
};
|
2657
|
-
static PyTypeObject *
|
2669
|
+
static PyTypeObject *__Pyx_ImportType_3_1_4(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_4 check_size);
|
2658
2670
|
#endif
|
2659
2671
|
|
2660
2672
|
/* FetchSharedCythonModule.proto */
|
@@ -17122,7 +17134,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
17122
17134
|
return __pyx_r;
|
17123
17135
|
}
|
17124
17136
|
|
17125
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17137
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":242
|
17126
17138
|
* cdef int type_num
|
17127
17139
|
*
|
17128
17140
|
* @property # <<<<<<<<<<<<<<
|
@@ -17133,7 +17145,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
17133
17145
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
17134
17146
|
npy_intp __pyx_r;
|
17135
17147
|
|
17136
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17148
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":244
|
17137
17149
|
* @property
|
17138
17150
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
17139
17151
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
@@ -17143,7 +17155,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17143
17155
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
17144
17156
|
goto __pyx_L0;
|
17145
17157
|
|
17146
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17158
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":242
|
17147
17159
|
* cdef int type_num
|
17148
17160
|
*
|
17149
17161
|
* @property # <<<<<<<<<<<<<<
|
@@ -17156,7 +17168,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17156
17168
|
return __pyx_r;
|
17157
17169
|
}
|
17158
17170
|
|
17159
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17171
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":246
|
17160
17172
|
* return PyDataType_ELSIZE(self)
|
17161
17173
|
*
|
17162
17174
|
* @property # <<<<<<<<<<<<<<
|
@@ -17167,7 +17179,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17167
17179
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
17168
17180
|
npy_intp __pyx_r;
|
17169
17181
|
|
17170
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17182
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
|
17171
17183
|
* @property
|
17172
17184
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
17173
17185
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
@@ -17177,7 +17189,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
17177
17189
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
17178
17190
|
goto __pyx_L0;
|
17179
17191
|
|
17180
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17192
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":246
|
17181
17193
|
* return PyDataType_ELSIZE(self)
|
17182
17194
|
*
|
17183
17195
|
* @property # <<<<<<<<<<<<<<
|
@@ -17190,7 +17202,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
17190
17202
|
return __pyx_r;
|
17191
17203
|
}
|
17192
17204
|
|
17193
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17205
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":252
|
17194
17206
|
* # Use fields/names with care as they may be NULL. You must check
|
17195
17207
|
* # for this using PyDataType_HASFIELDS.
|
17196
17208
|
* @property # <<<<<<<<<<<<<<
|
@@ -17204,7 +17216,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17204
17216
|
PyObject *__pyx_t_1;
|
17205
17217
|
__Pyx_RefNannySetupContext("fields", 0);
|
17206
17218
|
|
17207
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17219
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
|
17208
17220
|
* @property
|
17209
17221
|
* cdef inline object fields(self):
|
17210
17222
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
@@ -17217,7 +17229,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17217
17229
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
17218
17230
|
goto __pyx_L0;
|
17219
17231
|
|
17220
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17232
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":252
|
17221
17233
|
* # Use fields/names with care as they may be NULL. You must check
|
17222
17234
|
* # for this using PyDataType_HASFIELDS.
|
17223
17235
|
* @property # <<<<<<<<<<<<<<
|
@@ -17232,7 +17244,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17232
17244
|
return __pyx_r;
|
17233
17245
|
}
|
17234
17246
|
|
17235
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17247
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":256
|
17236
17248
|
* return <object>PyDataType_FIELDS(self)
|
17237
17249
|
*
|
17238
17250
|
* @property # <<<<<<<<<<<<<<
|
@@ -17246,7 +17258,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17246
17258
|
PyObject *__pyx_t_1;
|
17247
17259
|
__Pyx_RefNannySetupContext("names", 0);
|
17248
17260
|
|
17249
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17261
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":258
|
17250
17262
|
* @property
|
17251
17263
|
* cdef inline tuple names(self):
|
17252
17264
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
@@ -17259,7 +17271,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17259
17271
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
17260
17272
|
goto __pyx_L0;
|
17261
17273
|
|
17262
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17274
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":256
|
17263
17275
|
* return <object>PyDataType_FIELDS(self)
|
17264
17276
|
*
|
17265
17277
|
* @property # <<<<<<<<<<<<<<
|
@@ -17274,7 +17286,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17274
17286
|
return __pyx_r;
|
17275
17287
|
}
|
17276
17288
|
|
17277
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17289
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
17278
17290
|
* # valid (the pointer can be NULL). Most users should access
|
17279
17291
|
* # this field via the inline helper method PyDataType_SHAPE.
|
17280
17292
|
* @property # <<<<<<<<<<<<<<
|
@@ -17285,7 +17297,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17285
17297
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
17286
17298
|
PyArray_ArrayDescr *__pyx_r;
|
17287
17299
|
|
17288
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17300
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":265
|
17289
17301
|
* @property
|
17290
17302
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
17291
17303
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
@@ -17295,7 +17307,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17295
17307
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
17296
17308
|
goto __pyx_L0;
|
17297
17309
|
|
17298
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17310
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
17299
17311
|
* # valid (the pointer can be NULL). Most users should access
|
17300
17312
|
* # this field via the inline helper method PyDataType_SHAPE.
|
17301
17313
|
* @property # <<<<<<<<<<<<<<
|
@@ -17308,7 +17320,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17308
17320
|
return __pyx_r;
|
17309
17321
|
}
|
17310
17322
|
|
17311
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17323
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":267
|
17312
17324
|
* return PyDataType_SUBARRAY(self)
|
17313
17325
|
*
|
17314
17326
|
* @property # <<<<<<<<<<<<<<
|
@@ -17319,7 +17331,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17319
17331
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
17320
17332
|
npy_uint64 __pyx_r;
|
17321
17333
|
|
17322
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17334
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":270
|
17323
17335
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
17324
17336
|
* """The data types flags."""
|
17325
17337
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
@@ -17329,7 +17341,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17329
17341
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
17330
17342
|
goto __pyx_L0;
|
17331
17343
|
|
17332
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17344
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":267
|
17333
17345
|
* return PyDataType_SUBARRAY(self)
|
17334
17346
|
*
|
17335
17347
|
* @property # <<<<<<<<<<<<<<
|
@@ -17342,7 +17354,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17342
17354
|
return __pyx_r;
|
17343
17355
|
}
|
17344
17356
|
|
17345
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17357
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":279
|
17346
17358
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
17347
17359
|
*
|
17348
17360
|
* @property # <<<<<<<<<<<<<<
|
@@ -17353,7 +17365,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17353
17365
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
17354
17366
|
int __pyx_r;
|
17355
17367
|
|
17356
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17368
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":282
|
17357
17369
|
* cdef inline int numiter(self) noexcept nogil:
|
17358
17370
|
* """The number of arrays that need to be broadcast to the same shape."""
|
17359
17371
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
@@ -17363,7 +17375,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17363
17375
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
17364
17376
|
goto __pyx_L0;
|
17365
17377
|
|
17366
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17378
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":279
|
17367
17379
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
17368
17380
|
*
|
17369
17381
|
* @property # <<<<<<<<<<<<<<
|
@@ -17376,7 +17388,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17376
17388
|
return __pyx_r;
|
17377
17389
|
}
|
17378
17390
|
|
17379
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17391
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
17380
17392
|
* return PyArray_MultiIter_NUMITER(self)
|
17381
17393
|
*
|
17382
17394
|
* @property # <<<<<<<<<<<<<<
|
@@ -17387,7 +17399,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17387
17399
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
17388
17400
|
npy_intp __pyx_r;
|
17389
17401
|
|
17390
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17402
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":287
|
17391
17403
|
* cdef inline npy_intp size(self) noexcept nogil:
|
17392
17404
|
* """The total broadcasted size."""
|
17393
17405
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -17397,7 +17409,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17397
17409
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
17398
17410
|
goto __pyx_L0;
|
17399
17411
|
|
17400
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17412
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
17401
17413
|
* return PyArray_MultiIter_NUMITER(self)
|
17402
17414
|
*
|
17403
17415
|
* @property # <<<<<<<<<<<<<<
|
@@ -17410,7 +17422,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17410
17422
|
return __pyx_r;
|
17411
17423
|
}
|
17412
17424
|
|
17413
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17425
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":289
|
17414
17426
|
* return PyArray_MultiIter_SIZE(self)
|
17415
17427
|
*
|
17416
17428
|
* @property # <<<<<<<<<<<<<<
|
@@ -17421,7 +17433,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17421
17433
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
17422
17434
|
npy_intp __pyx_r;
|
17423
17435
|
|
17424
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17436
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":292
|
17425
17437
|
* cdef inline npy_intp index(self) noexcept nogil:
|
17426
17438
|
* """The current (1-d) index into the broadcasted result."""
|
17427
17439
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
@@ -17431,7 +17443,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17431
17443
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
17432
17444
|
goto __pyx_L0;
|
17433
17445
|
|
17434
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17446
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":289
|
17435
17447
|
* return PyArray_MultiIter_SIZE(self)
|
17436
17448
|
*
|
17437
17449
|
* @property # <<<<<<<<<<<<<<
|
@@ -17444,7 +17456,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17444
17456
|
return __pyx_r;
|
17445
17457
|
}
|
17446
17458
|
|
17447
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17459
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":294
|
17448
17460
|
* return PyArray_MultiIter_INDEX(self)
|
17449
17461
|
*
|
17450
17462
|
* @property # <<<<<<<<<<<<<<
|
@@ -17455,7 +17467,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17455
17467
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
17456
17468
|
int __pyx_r;
|
17457
17469
|
|
17458
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17470
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":297
|
17459
17471
|
* cdef inline int nd(self) noexcept nogil:
|
17460
17472
|
* """The number of dimensions in the broadcasted result."""
|
17461
17473
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -17465,7 +17477,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17465
17477
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
17466
17478
|
goto __pyx_L0;
|
17467
17479
|
|
17468
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17480
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":294
|
17469
17481
|
* return PyArray_MultiIter_INDEX(self)
|
17470
17482
|
*
|
17471
17483
|
* @property # <<<<<<<<<<<<<<
|
@@ -17478,7 +17490,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17478
17490
|
return __pyx_r;
|
17479
17491
|
}
|
17480
17492
|
|
17481
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17493
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":299
|
17482
17494
|
* return PyArray_MultiIter_NDIM(self)
|
17483
17495
|
*
|
17484
17496
|
* @property # <<<<<<<<<<<<<<
|
@@ -17489,7 +17501,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17489
17501
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
17490
17502
|
npy_intp *__pyx_r;
|
17491
17503
|
|
17492
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17504
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":302
|
17493
17505
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
17494
17506
|
* """The shape of the broadcasted result."""
|
17495
17507
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -17499,7 +17511,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17499
17511
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
17500
17512
|
goto __pyx_L0;
|
17501
17513
|
|
17502
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17514
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":299
|
17503
17515
|
* return PyArray_MultiIter_NDIM(self)
|
17504
17516
|
*
|
17505
17517
|
* @property # <<<<<<<<<<<<<<
|
@@ -17512,7 +17524,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17512
17524
|
return __pyx_r;
|
17513
17525
|
}
|
17514
17526
|
|
17515
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17527
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":304
|
17516
17528
|
* return PyArray_MultiIter_DIMS(self)
|
17517
17529
|
*
|
17518
17530
|
* @property # <<<<<<<<<<<<<<
|
@@ -17523,7 +17535,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17523
17535
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
17524
17536
|
void **__pyx_r;
|
17525
17537
|
|
17526
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17538
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":308
|
17527
17539
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
17528
17540
|
* On return, the iterators are adjusted for broadcasting."""
|
17529
17541
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
@@ -17533,7 +17545,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17533
17545
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
17534
17546
|
goto __pyx_L0;
|
17535
17547
|
|
17536
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17548
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":304
|
17537
17549
|
* return PyArray_MultiIter_DIMS(self)
|
17538
17550
|
*
|
17539
17551
|
* @property # <<<<<<<<<<<<<<
|
@@ -17546,7 +17558,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17546
17558
|
return __pyx_r;
|
17547
17559
|
}
|
17548
17560
|
|
17549
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17561
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":322
|
17550
17562
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
17551
17563
|
*
|
17552
17564
|
* @property # <<<<<<<<<<<<<<
|
@@ -17557,7 +17569,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17557
17569
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
17558
17570
|
PyObject *__pyx_r;
|
17559
17571
|
|
17560
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17572
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":326
|
17561
17573
|
* """Returns a borrowed reference to the object owning the data/memory.
|
17562
17574
|
* """
|
17563
17575
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
@@ -17567,7 +17579,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
17567
17579
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
17568
17580
|
goto __pyx_L0;
|
17569
17581
|
|
17570
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17582
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":322
|
17571
17583
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
17572
17584
|
*
|
17573
17585
|
* @property # <<<<<<<<<<<<<<
|
@@ -17580,7 +17592,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
17580
17592
|
return __pyx_r;
|
17581
17593
|
}
|
17582
17594
|
|
17583
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17595
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":328
|
17584
17596
|
* return PyArray_BASE(self)
|
17585
17597
|
*
|
17586
17598
|
* @property # <<<<<<<<<<<<<<
|
@@ -17594,7 +17606,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17594
17606
|
PyArray_Descr *__pyx_t_1;
|
17595
17607
|
__Pyx_RefNannySetupContext("descr", 0);
|
17596
17608
|
|
17597
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17609
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":332
|
17598
17610
|
* """Returns an owned reference to the dtype of the array.
|
17599
17611
|
* """
|
17600
17612
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
@@ -17607,7 +17619,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17607
17619
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
17608
17620
|
goto __pyx_L0;
|
17609
17621
|
|
17610
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17622
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":328
|
17611
17623
|
* return PyArray_BASE(self)
|
17612
17624
|
*
|
17613
17625
|
* @property # <<<<<<<<<<<<<<
|
@@ -17622,7 +17634,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17622
17634
|
return __pyx_r;
|
17623
17635
|
}
|
17624
17636
|
|
17625
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17637
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":334
|
17626
17638
|
* return <dtype>PyArray_DESCR(self)
|
17627
17639
|
*
|
17628
17640
|
* @property # <<<<<<<<<<<<<<
|
@@ -17633,7 +17645,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17633
17645
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
17634
17646
|
int __pyx_r;
|
17635
17647
|
|
17636
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17648
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":338
|
17637
17649
|
* """Returns the number of dimensions in the array.
|
17638
17650
|
* """
|
17639
17651
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -17643,7 +17655,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17643
17655
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
17644
17656
|
goto __pyx_L0;
|
17645
17657
|
|
17646
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17658
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":334
|
17647
17659
|
* return <dtype>PyArray_DESCR(self)
|
17648
17660
|
*
|
17649
17661
|
* @property # <<<<<<<<<<<<<<
|
@@ -17656,7 +17668,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17656
17668
|
return __pyx_r;
|
17657
17669
|
}
|
17658
17670
|
|
17659
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17671
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":340
|
17660
17672
|
* return PyArray_NDIM(self)
|
17661
17673
|
*
|
17662
17674
|
* @property # <<<<<<<<<<<<<<
|
@@ -17667,7 +17679,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17667
17679
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
17668
17680
|
npy_intp *__pyx_r;
|
17669
17681
|
|
17670
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17682
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":346
|
17671
17683
|
* Can return NULL for 0-dimensional arrays.
|
17672
17684
|
* """
|
17673
17685
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -17677,7 +17689,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17677
17689
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
17678
17690
|
goto __pyx_L0;
|
17679
17691
|
|
17680
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17692
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":340
|
17681
17693
|
* return PyArray_NDIM(self)
|
17682
17694
|
*
|
17683
17695
|
* @property # <<<<<<<<<<<<<<
|
@@ -17690,7 +17702,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17690
17702
|
return __pyx_r;
|
17691
17703
|
}
|
17692
17704
|
|
17693
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17705
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":348
|
17694
17706
|
* return PyArray_DIMS(self)
|
17695
17707
|
*
|
17696
17708
|
* @property # <<<<<<<<<<<<<<
|
@@ -17701,7 +17713,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17701
17713
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
17702
17714
|
npy_intp *__pyx_r;
|
17703
17715
|
|
17704
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17716
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":353
|
17705
17717
|
* The number of elements matches the number of dimensions of the array (ndim).
|
17706
17718
|
* """
|
17707
17719
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
@@ -17711,7 +17723,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17711
17723
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
17712
17724
|
goto __pyx_L0;
|
17713
17725
|
|
17714
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17726
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":348
|
17715
17727
|
* return PyArray_DIMS(self)
|
17716
17728
|
*
|
17717
17729
|
* @property # <<<<<<<<<<<<<<
|
@@ -17724,7 +17736,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17724
17736
|
return __pyx_r;
|
17725
17737
|
}
|
17726
17738
|
|
17727
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17739
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":355
|
17728
17740
|
* return PyArray_STRIDES(self)
|
17729
17741
|
*
|
17730
17742
|
* @property # <<<<<<<<<<<<<<
|
@@ -17735,7 +17747,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17735
17747
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
17736
17748
|
npy_intp __pyx_r;
|
17737
17749
|
|
17738
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17750
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":359
|
17739
17751
|
* """Returns the total size (in number of elements) of the array.
|
17740
17752
|
* """
|
17741
17753
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -17745,7 +17757,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17745
17757
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
17746
17758
|
goto __pyx_L0;
|
17747
17759
|
|
17748
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17760
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":355
|
17749
17761
|
* return PyArray_STRIDES(self)
|
17750
17762
|
*
|
17751
17763
|
* @property # <<<<<<<<<<<<<<
|
@@ -17758,7 +17770,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17758
17770
|
return __pyx_r;
|
17759
17771
|
}
|
17760
17772
|
|
17761
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17773
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":361
|
17762
17774
|
* return PyArray_SIZE(self)
|
17763
17775
|
*
|
17764
17776
|
* @property # <<<<<<<<<<<<<<
|
@@ -17769,7 +17781,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17769
17781
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
17770
17782
|
char *__pyx_r;
|
17771
17783
|
|
17772
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17784
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":368
|
17773
17785
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
17774
17786
|
* """
|
17775
17787
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
@@ -17779,7 +17791,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
17779
17791
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
17780
17792
|
goto __pyx_L0;
|
17781
17793
|
|
17782
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17794
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":361
|
17783
17795
|
* return PyArray_SIZE(self)
|
17784
17796
|
*
|
17785
17797
|
* @property # <<<<<<<<<<<<<<
|
@@ -17792,7 +17804,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
17792
17804
|
return __pyx_r;
|
17793
17805
|
}
|
17794
17806
|
|
17795
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17807
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
17796
17808
|
* ctypedef long double complex clongdouble_t
|
17797
17809
|
*
|
17798
17810
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -17809,7 +17821,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
17809
17821
|
int __pyx_clineno = 0;
|
17810
17822
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
17811
17823
|
|
17812
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17824
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
|
17813
17825
|
*
|
17814
17826
|
* cdef inline object PyArray_MultiIterNew1(a):
|
17815
17827
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
@@ -17823,7 +17835,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
17823
17835
|
__pyx_t_1 = 0;
|
17824
17836
|
goto __pyx_L0;
|
17825
17837
|
|
17826
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17838
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
17827
17839
|
* ctypedef long double complex clongdouble_t
|
17828
17840
|
*
|
17829
17841
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -17842,7 +17854,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
17842
17854
|
return __pyx_r;
|
17843
17855
|
}
|
17844
17856
|
|
17845
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17857
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
17846
17858
|
* return PyArray_MultiIterNew(1, <void*>a)
|
17847
17859
|
*
|
17848
17860
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -17859,7 +17871,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
17859
17871
|
int __pyx_clineno = 0;
|
17860
17872
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
17861
17873
|
|
17862
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17874
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
|
17863
17875
|
*
|
17864
17876
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
17865
17877
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
@@ -17873,7 +17885,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
17873
17885
|
__pyx_t_1 = 0;
|
17874
17886
|
goto __pyx_L0;
|
17875
17887
|
|
17876
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17888
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
17877
17889
|
* return PyArray_MultiIterNew(1, <void*>a)
|
17878
17890
|
*
|
17879
17891
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -17892,7 +17904,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
17892
17904
|
return __pyx_r;
|
17893
17905
|
}
|
17894
17906
|
|
17895
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17907
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
17896
17908
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
17897
17909
|
*
|
17898
17910
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -17909,7 +17921,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
17909
17921
|
int __pyx_clineno = 0;
|
17910
17922
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
17911
17923
|
|
17912
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17924
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
|
17913
17925
|
*
|
17914
17926
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
17915
17927
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
@@ -17923,7 +17935,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
17923
17935
|
__pyx_t_1 = 0;
|
17924
17936
|
goto __pyx_L0;
|
17925
17937
|
|
17926
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17938
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
17927
17939
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
17928
17940
|
*
|
17929
17941
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -17942,7 +17954,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
17942
17954
|
return __pyx_r;
|
17943
17955
|
}
|
17944
17956
|
|
17945
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17957
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
17946
17958
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
17947
17959
|
*
|
17948
17960
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -17959,7 +17971,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
17959
17971
|
int __pyx_clineno = 0;
|
17960
17972
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
17961
17973
|
|
17962
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17974
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
|
17963
17975
|
*
|
17964
17976
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
17965
17977
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
@@ -17973,7 +17985,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
17973
17985
|
__pyx_t_1 = 0;
|
17974
17986
|
goto __pyx_L0;
|
17975
17987
|
|
17976
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
17988
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
17977
17989
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
17978
17990
|
*
|
17979
17991
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -17992,7 +18004,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
17992
18004
|
return __pyx_r;
|
17993
18005
|
}
|
17994
18006
|
|
17995
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18007
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
17996
18008
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
17997
18009
|
*
|
17998
18010
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -18009,7 +18021,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18009
18021
|
int __pyx_clineno = 0;
|
18010
18022
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
18011
18023
|
|
18012
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18024
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
|
18013
18025
|
*
|
18014
18026
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
18015
18027
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
@@ -18023,7 +18035,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18023
18035
|
__pyx_t_1 = 0;
|
18024
18036
|
goto __pyx_L0;
|
18025
18037
|
|
18026
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18038
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
18027
18039
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
18028
18040
|
*
|
18029
18041
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -18042,7 +18054,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18042
18054
|
return __pyx_r;
|
18043
18055
|
}
|
18044
18056
|
|
18045
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18057
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
18046
18058
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
18047
18059
|
*
|
18048
18060
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -18057,7 +18069,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18057
18069
|
PyObject *__pyx_t_2;
|
18058
18070
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
18059
18071
|
|
18060
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18072
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
18061
18073
|
*
|
18062
18074
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18063
18075
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -18067,7 +18079,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18067
18079
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
18068
18080
|
if (__pyx_t_1) {
|
18069
18081
|
|
18070
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18082
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
|
18071
18083
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18072
18084
|
* if PyDataType_HASSUBARRAY(d):
|
18073
18085
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
@@ -18080,7 +18092,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18080
18092
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
18081
18093
|
goto __pyx_L0;
|
18082
18094
|
|
18083
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18095
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
18084
18096
|
*
|
18085
18097
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18086
18098
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -18089,7 +18101,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18089
18101
|
*/
|
18090
18102
|
}
|
18091
18103
|
|
18092
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18104
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
|
18093
18105
|
* return <tuple>d.subarray.shape
|
18094
18106
|
* else:
|
18095
18107
|
* return () # <<<<<<<<<<<<<<
|
@@ -18103,7 +18115,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18103
18115
|
goto __pyx_L0;
|
18104
18116
|
}
|
18105
18117
|
|
18106
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18118
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
18107
18119
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
18108
18120
|
*
|
18109
18121
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -18118,7 +18130,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18118
18130
|
return __pyx_r;
|
18119
18131
|
}
|
18120
18132
|
|
18121
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18133
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
18122
18134
|
* int _import_umath() except -1
|
18123
18135
|
*
|
18124
18136
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -18132,7 +18144,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18132
18144
|
const char *__pyx_filename = NULL;
|
18133
18145
|
int __pyx_clineno = 0;
|
18134
18146
|
|
18135
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18147
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
18136
18148
|
*
|
18137
18149
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
18138
18150
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
@@ -18141,7 +18153,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18141
18153
|
*/
|
18142
18154
|
Py_INCREF(__pyx_v_base);
|
18143
18155
|
|
18144
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18156
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
|
18145
18157
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
18146
18158
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
18147
18159
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
@@ -18150,7 +18162,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18150
18162
|
*/
|
18151
18163
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 996, __pyx_L1_error)
|
18152
18164
|
|
18153
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18165
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
18154
18166
|
* int _import_umath() except -1
|
18155
18167
|
*
|
18156
18168
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -18165,7 +18177,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18165
18177
|
__pyx_L0:;
|
18166
18178
|
}
|
18167
18179
|
|
18168
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18180
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
18169
18181
|
* PyArray_SetBaseObject(arr, base)
|
18170
18182
|
*
|
18171
18183
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -18180,7 +18192,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18180
18192
|
int __pyx_t_1;
|
18181
18193
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
18182
18194
|
|
18183
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18195
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":999
|
18184
18196
|
*
|
18185
18197
|
* cdef inline object get_array_base(ndarray arr):
|
18186
18198
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
@@ -18189,7 +18201,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18189
18201
|
*/
|
18190
18202
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
18191
18203
|
|
18192
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18204
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1000
|
18193
18205
|
* cdef inline object get_array_base(ndarray arr):
|
18194
18206
|
* base = PyArray_BASE(arr)
|
18195
18207
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -18199,7 +18211,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18199
18211
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
18200
18212
|
if (__pyx_t_1) {
|
18201
18213
|
|
18202
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18214
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
|
18203
18215
|
* base = PyArray_BASE(arr)
|
18204
18216
|
* if base is NULL:
|
18205
18217
|
* return None # <<<<<<<<<<<<<<
|
@@ -18210,7 +18222,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18210
18222
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
18211
18223
|
goto __pyx_L0;
|
18212
18224
|
|
18213
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18225
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1000
|
18214
18226
|
* cdef inline object get_array_base(ndarray arr):
|
18215
18227
|
* base = PyArray_BASE(arr)
|
18216
18228
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -18219,7 +18231,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18219
18231
|
*/
|
18220
18232
|
}
|
18221
18233
|
|
18222
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18234
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1002
|
18223
18235
|
* if base is NULL:
|
18224
18236
|
* return None
|
18225
18237
|
* return <object>base # <<<<<<<<<<<<<<
|
@@ -18231,7 +18243,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18231
18243
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
18232
18244
|
goto __pyx_L0;
|
18233
18245
|
|
18234
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18246
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
18235
18247
|
* PyArray_SetBaseObject(arr, base)
|
18236
18248
|
*
|
18237
18249
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -18246,7 +18258,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18246
18258
|
return __pyx_r;
|
18247
18259
|
}
|
18248
18260
|
|
18249
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18261
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1006
|
18250
18262
|
* # Versions of the import_* functions which are more suitable for
|
18251
18263
|
* # Cython code.
|
18252
18264
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -18273,7 +18285,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18273
18285
|
int __pyx_clineno = 0;
|
18274
18286
|
__Pyx_RefNannySetupContext("import_array", 0);
|
18275
18287
|
|
18276
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18288
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
18277
18289
|
* # Cython code.
|
18278
18290
|
* cdef inline int import_array() except -1:
|
18279
18291
|
* try: # <<<<<<<<<<<<<<
|
@@ -18289,7 +18301,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18289
18301
|
__Pyx_XGOTREF(__pyx_t_3);
|
18290
18302
|
/*try:*/ {
|
18291
18303
|
|
18292
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18304
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1008
|
18293
18305
|
* cdef inline int import_array() except -1:
|
18294
18306
|
* try:
|
18295
18307
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
@@ -18298,7 +18310,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18298
18310
|
*/
|
18299
18311
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1008, __pyx_L3_error)
|
18300
18312
|
|
18301
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18313
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
18302
18314
|
* # Cython code.
|
18303
18315
|
* cdef inline int import_array() except -1:
|
18304
18316
|
* try: # <<<<<<<<<<<<<<
|
@@ -18312,7 +18324,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18312
18324
|
goto __pyx_L8_try_end;
|
18313
18325
|
__pyx_L3_error:;
|
18314
18326
|
|
18315
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18327
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1009
|
18316
18328
|
* try:
|
18317
18329
|
* __pyx_import_array()
|
18318
18330
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18327,7 +18339,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18327
18339
|
__Pyx_XGOTREF(__pyx_t_6);
|
18328
18340
|
__Pyx_XGOTREF(__pyx_t_7);
|
18329
18341
|
|
18330
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18342
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1010
|
18331
18343
|
* __pyx_import_array()
|
18332
18344
|
* except Exception:
|
18333
18345
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
@@ -18352,7 +18364,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18352
18364
|
}
|
18353
18365
|
goto __pyx_L5_except_error;
|
18354
18366
|
|
18355
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18367
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
18356
18368
|
* # Cython code.
|
18357
18369
|
* cdef inline int import_array() except -1:
|
18358
18370
|
* try: # <<<<<<<<<<<<<<
|
@@ -18368,7 +18380,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18368
18380
|
__pyx_L8_try_end:;
|
18369
18381
|
}
|
18370
18382
|
|
18371
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18383
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1006
|
18372
18384
|
* # Versions of the import_* functions which are more suitable for
|
18373
18385
|
* # Cython code.
|
18374
18386
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -18393,7 +18405,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18393
18405
|
return __pyx_r;
|
18394
18406
|
}
|
18395
18407
|
|
18396
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18408
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1012
|
18397
18409
|
* raise ImportError("numpy._core.multiarray failed to import")
|
18398
18410
|
*
|
18399
18411
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -18420,7 +18432,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18420
18432
|
int __pyx_clineno = 0;
|
18421
18433
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
18422
18434
|
|
18423
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18435
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
18424
18436
|
*
|
18425
18437
|
* cdef inline int import_umath() except -1:
|
18426
18438
|
* try: # <<<<<<<<<<<<<<
|
@@ -18436,7 +18448,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18436
18448
|
__Pyx_XGOTREF(__pyx_t_3);
|
18437
18449
|
/*try:*/ {
|
18438
18450
|
|
18439
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18451
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1014
|
18440
18452
|
* cdef inline int import_umath() except -1:
|
18441
18453
|
* try:
|
18442
18454
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -18445,7 +18457,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18445
18457
|
*/
|
18446
18458
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1014, __pyx_L3_error)
|
18447
18459
|
|
18448
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18460
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
18449
18461
|
*
|
18450
18462
|
* cdef inline int import_umath() except -1:
|
18451
18463
|
* try: # <<<<<<<<<<<<<<
|
@@ -18459,7 +18471,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18459
18471
|
goto __pyx_L8_try_end;
|
18460
18472
|
__pyx_L3_error:;
|
18461
18473
|
|
18462
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18474
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1015
|
18463
18475
|
* try:
|
18464
18476
|
* _import_umath()
|
18465
18477
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18474,7 +18486,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18474
18486
|
__Pyx_XGOTREF(__pyx_t_6);
|
18475
18487
|
__Pyx_XGOTREF(__pyx_t_7);
|
18476
18488
|
|
18477
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18489
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
|
18478
18490
|
* _import_umath()
|
18479
18491
|
* except Exception:
|
18480
18492
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -18499,7 +18511,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18499
18511
|
}
|
18500
18512
|
goto __pyx_L5_except_error;
|
18501
18513
|
|
18502
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18514
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
18503
18515
|
*
|
18504
18516
|
* cdef inline int import_umath() except -1:
|
18505
18517
|
* try: # <<<<<<<<<<<<<<
|
@@ -18515,7 +18527,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18515
18527
|
__pyx_L8_try_end:;
|
18516
18528
|
}
|
18517
18529
|
|
18518
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18530
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1012
|
18519
18531
|
* raise ImportError("numpy._core.multiarray failed to import")
|
18520
18532
|
*
|
18521
18533
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -18540,7 +18552,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18540
18552
|
return __pyx_r;
|
18541
18553
|
}
|
18542
18554
|
|
18543
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18555
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1018
|
18544
18556
|
* raise ImportError("numpy._core.umath failed to import")
|
18545
18557
|
*
|
18546
18558
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -18567,7 +18579,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18567
18579
|
int __pyx_clineno = 0;
|
18568
18580
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
18569
18581
|
|
18570
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18582
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
18571
18583
|
*
|
18572
18584
|
* cdef inline int import_ufunc() except -1:
|
18573
18585
|
* try: # <<<<<<<<<<<<<<
|
@@ -18583,7 +18595,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18583
18595
|
__Pyx_XGOTREF(__pyx_t_3);
|
18584
18596
|
/*try:*/ {
|
18585
18597
|
|
18586
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18598
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1020
|
18587
18599
|
* cdef inline int import_ufunc() except -1:
|
18588
18600
|
* try:
|
18589
18601
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -18592,7 +18604,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18592
18604
|
*/
|
18593
18605
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1020, __pyx_L3_error)
|
18594
18606
|
|
18595
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18607
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
18596
18608
|
*
|
18597
18609
|
* cdef inline int import_ufunc() except -1:
|
18598
18610
|
* try: # <<<<<<<<<<<<<<
|
@@ -18606,7 +18618,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18606
18618
|
goto __pyx_L8_try_end;
|
18607
18619
|
__pyx_L3_error:;
|
18608
18620
|
|
18609
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18621
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1021
|
18610
18622
|
* try:
|
18611
18623
|
* _import_umath()
|
18612
18624
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18621,7 +18633,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18621
18633
|
__Pyx_XGOTREF(__pyx_t_6);
|
18622
18634
|
__Pyx_XGOTREF(__pyx_t_7);
|
18623
18635
|
|
18624
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18636
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1022
|
18625
18637
|
* _import_umath()
|
18626
18638
|
* except Exception:
|
18627
18639
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -18646,7 +18658,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18646
18658
|
}
|
18647
18659
|
goto __pyx_L5_except_error;
|
18648
18660
|
|
18649
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18661
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
18650
18662
|
*
|
18651
18663
|
* cdef inline int import_ufunc() except -1:
|
18652
18664
|
* try: # <<<<<<<<<<<<<<
|
@@ -18662,7 +18674,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18662
18674
|
__pyx_L8_try_end:;
|
18663
18675
|
}
|
18664
18676
|
|
18665
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18677
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1018
|
18666
18678
|
* raise ImportError("numpy._core.umath failed to import")
|
18667
18679
|
*
|
18668
18680
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -18687,7 +18699,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18687
18699
|
return __pyx_r;
|
18688
18700
|
}
|
18689
18701
|
|
18690
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18702
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1025
|
18691
18703
|
*
|
18692
18704
|
*
|
18693
18705
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18698,7 +18710,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18698
18710
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
18699
18711
|
int __pyx_r;
|
18700
18712
|
|
18701
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18713
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1037
|
18702
18714
|
* bool
|
18703
18715
|
* """
|
18704
18716
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
@@ -18708,7 +18720,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18708
18720
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
18709
18721
|
goto __pyx_L0;
|
18710
18722
|
|
18711
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18723
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1025
|
18712
18724
|
*
|
18713
18725
|
*
|
18714
18726
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18721,7 +18733,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18721
18733
|
return __pyx_r;
|
18722
18734
|
}
|
18723
18735
|
|
18724
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18736
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1040
|
18725
18737
|
*
|
18726
18738
|
*
|
18727
18739
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18732,7 +18744,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18732
18744
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
18733
18745
|
int __pyx_r;
|
18734
18746
|
|
18735
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18747
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
|
18736
18748
|
* bool
|
18737
18749
|
* """
|
18738
18750
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
@@ -18742,7 +18754,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18742
18754
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
18743
18755
|
goto __pyx_L0;
|
18744
18756
|
|
18745
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18757
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1040
|
18746
18758
|
*
|
18747
18759
|
*
|
18748
18760
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18755,7 +18767,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18755
18767
|
return __pyx_r;
|
18756
18768
|
}
|
18757
18769
|
|
18758
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18770
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1055
|
18759
18771
|
*
|
18760
18772
|
*
|
18761
18773
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18766,7 +18778,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18766
18778
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
18767
18779
|
npy_datetime __pyx_r;
|
18768
18780
|
|
18769
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18781
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1062
|
18770
18782
|
* also needed. That can be found using `get_datetime64_unit`.
|
18771
18783
|
* """
|
18772
18784
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -18776,7 +18788,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
18776
18788
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
18777
18789
|
goto __pyx_L0;
|
18778
18790
|
|
18779
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18791
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1055
|
18780
18792
|
*
|
18781
18793
|
*
|
18782
18794
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18789,7 +18801,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
18789
18801
|
return __pyx_r;
|
18790
18802
|
}
|
18791
18803
|
|
18792
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18804
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1065
|
18793
18805
|
*
|
18794
18806
|
*
|
18795
18807
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18800,7 +18812,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
18800
18812
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
18801
18813
|
npy_timedelta __pyx_r;
|
18802
18814
|
|
18803
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18815
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1069
|
18804
18816
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
18805
18817
|
* """
|
18806
18818
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -18810,7 +18822,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
18810
18822
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
18811
18823
|
goto __pyx_L0;
|
18812
18824
|
|
18813
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18825
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1065
|
18814
18826
|
*
|
18815
18827
|
*
|
18816
18828
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18823,7 +18835,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
18823
18835
|
return __pyx_r;
|
18824
18836
|
}
|
18825
18837
|
|
18826
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18838
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1072
|
18827
18839
|
*
|
18828
18840
|
*
|
18829
18841
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18834,7 +18846,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
18834
18846
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
18835
18847
|
NPY_DATETIMEUNIT __pyx_r;
|
18836
18848
|
|
18837
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18849
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1076
|
18838
18850
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
18839
18851
|
* """
|
18840
18852
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
@@ -18844,7 +18856,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
18844
18856
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
18845
18857
|
goto __pyx_L0;
|
18846
18858
|
|
18847
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
18859
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1072
|
18848
18860
|
*
|
18849
18861
|
*
|
18850
18862
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18857,7 +18869,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
18857
18869
|
return __pyx_r;
|
18858
18870
|
}
|
18859
18871
|
|
18860
|
-
/* "edsger/path_tracking.pyx":
|
18872
|
+
/* "edsger/path_tracking.pyx":28
|
18861
18873
|
*
|
18862
18874
|
*
|
18863
18875
|
* cpdef cnp.ndarray compute_path(cnp.uint32_t[::1] path_links, int vertex_idx): # <<<<<<<<<<<<<<
|
@@ -18890,7 +18902,7 @@ static PyArrayObject *__pyx_f_6edsger_13path_tracking_compute_path(__Pyx_memview
|
|
18890
18902
|
int __pyx_clineno = 0;
|
18891
18903
|
__Pyx_RefNannySetupContext("compute_path", 0);
|
18892
18904
|
|
18893
|
-
/* "edsger/path_tracking.pyx":
|
18905
|
+
/* "edsger/path_tracking.pyx":43
|
18894
18906
|
* cdef int path_length
|
18895
18907
|
*
|
18896
18908
|
* path_length = _compute_path_first_pass(path_links, vertex_idx) # <<<<<<<<<<<<<<
|
@@ -18899,7 +18911,7 @@ static PyArrayObject *__pyx_f_6edsger_13path_tracking_compute_path(__Pyx_memview
|
|
18899
18911
|
*/
|
18900
18912
|
__pyx_v_path_length = __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__pyx_v_path_links, __pyx_v_vertex_idx);
|
18901
18913
|
|
18902
|
-
/* "edsger/path_tracking.pyx":
|
18914
|
+
/* "edsger/path_tracking.pyx":44
|
18903
18915
|
*
|
18904
18916
|
* path_length = _compute_path_first_pass(path_links, vertex_idx)
|
18905
18917
|
* path_vertices = np.empty(path_length, dtype=np.uint32) # <<<<<<<<<<<<<<
|
@@ -18907,16 +18919,16 @@ static PyArrayObject *__pyx_f_6edsger_13path_tracking_compute_path(__Pyx_memview
|
|
18907
18919
|
*
|
18908
18920
|
*/
|
18909
18921
|
__pyx_t_2 = NULL;
|
18910
|
-
__Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_3)) __PYX_ERR(0,
|
18922
|
+
__Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 44, __pyx_L1_error)
|
18911
18923
|
__Pyx_GOTREF(__pyx_t_3);
|
18912
|
-
__pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_mstate_global->__pyx_n_u_empty); if (unlikely(!__pyx_t_4)) __PYX_ERR(0,
|
18924
|
+
__pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_mstate_global->__pyx_n_u_empty); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 44, __pyx_L1_error)
|
18913
18925
|
__Pyx_GOTREF(__pyx_t_4);
|
18914
18926
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
18915
|
-
__pyx_t_3 = __Pyx_PyLong_From_int(__pyx_v_path_length); if (unlikely(!__pyx_t_3)) __PYX_ERR(0,
|
18927
|
+
__pyx_t_3 = __Pyx_PyLong_From_int(__pyx_v_path_length); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 44, __pyx_L1_error)
|
18916
18928
|
__Pyx_GOTREF(__pyx_t_3);
|
18917
|
-
__Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
18929
|
+
__Pyx_GetModuleGlobalName(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 44, __pyx_L1_error)
|
18918
18930
|
__Pyx_GOTREF(__pyx_t_5);
|
18919
|
-
__pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_uint32); if (unlikely(!__pyx_t_6)) __PYX_ERR(0,
|
18931
|
+
__pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_5, __pyx_mstate_global->__pyx_n_u_uint32); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 44, __pyx_L1_error)
|
18920
18932
|
__Pyx_GOTREF(__pyx_t_6);
|
18921
18933
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
18922
18934
|
__pyx_t_7 = 1;
|
@@ -18933,34 +18945,34 @@ static PyArrayObject *__pyx_f_6edsger_13path_tracking_compute_path(__Pyx_memview
|
|
18933
18945
|
#endif
|
18934
18946
|
{
|
18935
18947
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_2, __pyx_t_3};
|
18936
|
-
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
18948
|
+
__pyx_t_5 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 44, __pyx_L1_error)
|
18937
18949
|
__Pyx_GOTREF(__pyx_t_5);
|
18938
|
-
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,
|
18950
|
+
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, 44, __pyx_L1_error)
|
18939
18951
|
__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);
|
18940
18952
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
18941
18953
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
18942
18954
|
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
|
18943
18955
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
18944
18956
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
18945
|
-
if (unlikely(!__pyx_t_1)) __PYX_ERR(0,
|
18957
|
+
if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error)
|
18946
18958
|
__Pyx_GOTREF(__pyx_t_1);
|
18947
18959
|
}
|
18948
18960
|
__pyx_v_path_vertices = __pyx_t_1;
|
18949
18961
|
__pyx_t_1 = 0;
|
18950
18962
|
|
18951
|
-
/* "edsger/path_tracking.pyx":
|
18963
|
+
/* "edsger/path_tracking.pyx":45
|
18952
18964
|
* path_length = _compute_path_first_pass(path_links, vertex_idx)
|
18953
18965
|
* path_vertices = np.empty(path_length, dtype=np.uint32)
|
18954
18966
|
* _compute_path_second_pass(path_links, path_vertices, vertex_idx) # <<<<<<<<<<<<<<
|
18955
18967
|
*
|
18956
18968
|
* return path_vertices
|
18957
18969
|
*/
|
18958
|
-
__pyx_t_8 = __Pyx_PyObject_to_MemoryviewSlice_dc_nn___pyx_t_5numpy_uint32_t(__pyx_v_path_vertices, PyBUF_WRITABLE); if (unlikely(!__pyx_t_8.memview)) __PYX_ERR(0,
|
18970
|
+
__pyx_t_8 = __Pyx_PyObject_to_MemoryviewSlice_dc_nn___pyx_t_5numpy_uint32_t(__pyx_v_path_vertices, PyBUF_WRITABLE); if (unlikely(!__pyx_t_8.memview)) __PYX_ERR(0, 45, __pyx_L1_error)
|
18959
18971
|
__pyx_f_6edsger_13path_tracking__compute_path_second_pass(__pyx_v_path_links, __pyx_t_8, __pyx_v_vertex_idx);
|
18960
18972
|
__PYX_XCLEAR_MEMVIEW(&__pyx_t_8, 1);
|
18961
18973
|
__pyx_t_8.memview = NULL; __pyx_t_8.data = NULL;
|
18962
18974
|
|
18963
|
-
/* "edsger/path_tracking.pyx":
|
18975
|
+
/* "edsger/path_tracking.pyx":47
|
18964
18976
|
* _compute_path_second_pass(path_links, path_vertices, vertex_idx)
|
18965
18977
|
*
|
18966
18978
|
* return path_vertices # <<<<<<<<<<<<<<
|
@@ -18968,12 +18980,12 @@ static PyArrayObject *__pyx_f_6edsger_13path_tracking_compute_path(__Pyx_memview
|
|
18968
18980
|
*
|
18969
18981
|
*/
|
18970
18982
|
__Pyx_XDECREF((PyObject *)__pyx_r);
|
18971
|
-
if (!(likely(((__pyx_v_path_vertices) == Py_None) || likely(__Pyx_TypeTest(__pyx_v_path_vertices, __pyx_mstate_global->__pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0,
|
18983
|
+
if (!(likely(((__pyx_v_path_vertices) == Py_None) || likely(__Pyx_TypeTest(__pyx_v_path_vertices, __pyx_mstate_global->__pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 47, __pyx_L1_error)
|
18972
18984
|
__Pyx_INCREF(__pyx_v_path_vertices);
|
18973
18985
|
__pyx_r = ((PyArrayObject *)__pyx_v_path_vertices);
|
18974
18986
|
goto __pyx_L0;
|
18975
18987
|
|
18976
|
-
/* "edsger/path_tracking.pyx":
|
18988
|
+
/* "edsger/path_tracking.pyx":28
|
18977
18989
|
*
|
18978
18990
|
*
|
18979
18991
|
* cpdef cnp.ndarray compute_path(cnp.uint32_t[::1] path_links, int vertex_idx): # <<<<<<<<<<<<<<
|
@@ -19040,39 +19052,39 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
19040
19052
|
{
|
19041
19053
|
PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_path_links,&__pyx_mstate_global->__pyx_n_u_vertex_idx,0};
|
19042
19054
|
const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0;
|
19043
|
-
if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0,
|
19055
|
+
if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0, 28, __pyx_L3_error)
|
19044
19056
|
if (__pyx_kwds_len > 0) {
|
19045
19057
|
switch (__pyx_nargs) {
|
19046
19058
|
case 2:
|
19047
19059
|
values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
|
19048
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0,
|
19060
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 28, __pyx_L3_error)
|
19049
19061
|
CYTHON_FALLTHROUGH;
|
19050
19062
|
case 1:
|
19051
19063
|
values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
|
19052
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0,
|
19064
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 28, __pyx_L3_error)
|
19053
19065
|
CYTHON_FALLTHROUGH;
|
19054
19066
|
case 0: break;
|
19055
19067
|
default: goto __pyx_L5_argtuple_error;
|
19056
19068
|
}
|
19057
19069
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
19058
|
-
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "compute_path", 0) < 0) __PYX_ERR(0,
|
19070
|
+
if (__Pyx_ParseKeywords(__pyx_kwds, __pyx_kwvalues, __pyx_pyargnames, 0, values, kwd_pos_args, __pyx_kwds_len, "compute_path", 0) < 0) __PYX_ERR(0, 28, __pyx_L3_error)
|
19059
19071
|
for (Py_ssize_t i = __pyx_nargs; i < 2; i++) {
|
19060
|
-
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("compute_path", 1, 2, 2, i); __PYX_ERR(0,
|
19072
|
+
if (unlikely(!values[i])) { __Pyx_RaiseArgtupleInvalid("compute_path", 1, 2, 2, i); __PYX_ERR(0, 28, __pyx_L3_error) }
|
19061
19073
|
}
|
19062
19074
|
} else if (unlikely(__pyx_nargs != 2)) {
|
19063
19075
|
goto __pyx_L5_argtuple_error;
|
19064
19076
|
} else {
|
19065
19077
|
values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
|
19066
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0,
|
19078
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[0])) __PYX_ERR(0, 28, __pyx_L3_error)
|
19067
19079
|
values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
|
19068
|
-
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0,
|
19080
|
+
if (!CYTHON_ASSUME_SAFE_MACROS && unlikely(!values[1])) __PYX_ERR(0, 28, __pyx_L3_error)
|
19069
19081
|
}
|
19070
|
-
__pyx_v_path_links = __Pyx_PyObject_to_MemoryviewSlice_dc_nn___pyx_t_5numpy_uint32_t(values[0], PyBUF_WRITABLE); if (unlikely(!__pyx_v_path_links.memview)) __PYX_ERR(0,
|
19071
|
-
__pyx_v_vertex_idx = __Pyx_PyLong_As_int(values[1]); if (unlikely((__pyx_v_vertex_idx == (int)-1) && PyErr_Occurred())) __PYX_ERR(0,
|
19082
|
+
__pyx_v_path_links = __Pyx_PyObject_to_MemoryviewSlice_dc_nn___pyx_t_5numpy_uint32_t(values[0], PyBUF_WRITABLE); if (unlikely(!__pyx_v_path_links.memview)) __PYX_ERR(0, 28, __pyx_L3_error)
|
19083
|
+
__pyx_v_vertex_idx = __Pyx_PyLong_As_int(values[1]); if (unlikely((__pyx_v_vertex_idx == (int)-1) && PyErr_Occurred())) __PYX_ERR(0, 28, __pyx_L3_error)
|
19072
19084
|
}
|
19073
19085
|
goto __pyx_L6_skip;
|
19074
19086
|
__pyx_L5_argtuple_error:;
|
19075
|
-
__Pyx_RaiseArgtupleInvalid("compute_path", 1, 2, 2, __pyx_nargs); __PYX_ERR(0,
|
19087
|
+
__Pyx_RaiseArgtupleInvalid("compute_path", 1, 2, 2, __pyx_nargs); __PYX_ERR(0, 28, __pyx_L3_error)
|
19076
19088
|
__pyx_L6_skip:;
|
19077
19089
|
goto __pyx_L4_argument_unpacking_done;
|
19078
19090
|
__pyx_L3_error:;
|
@@ -19104,7 +19116,8 @@ static PyObject *__pyx_pf_6edsger_13path_tracking_compute_path(CYTHON_UNUSED PyO
|
|
19104
19116
|
int __pyx_clineno = 0;
|
19105
19117
|
__Pyx_RefNannySetupContext("compute_path", 0);
|
19106
19118
|
__Pyx_XDECREF(__pyx_r);
|
19107
|
-
|
19119
|
+
if (unlikely(!__pyx_v_path_links.memview)) { __Pyx_RaiseUnboundLocalError("path_links"); __PYX_ERR(0, 28, __pyx_L1_error) }
|
19120
|
+
__pyx_t_1 = ((PyObject *)__pyx_f_6edsger_13path_tracking_compute_path(__pyx_v_path_links, __pyx_v_vertex_idx, 1)); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 28, __pyx_L1_error)
|
19108
19121
|
__Pyx_GOTREF(__pyx_t_1);
|
19109
19122
|
__pyx_r = __pyx_t_1;
|
19110
19123
|
__pyx_t_1 = 0;
|
@@ -19121,7 +19134,7 @@ static PyObject *__pyx_pf_6edsger_13path_tracking_compute_path(CYTHON_UNUSED PyO
|
|
19121
19134
|
return __pyx_r;
|
19122
19135
|
}
|
19123
19136
|
|
19124
|
-
/* "edsger/path_tracking.pyx":
|
19137
|
+
/* "edsger/path_tracking.pyx":50
|
19125
19138
|
*
|
19126
19139
|
*
|
19127
19140
|
* cdef int _compute_path_first_pass( # <<<<<<<<<<<<<<
|
@@ -19136,8 +19149,13 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19136
19149
|
int __pyx_r;
|
19137
19150
|
int __pyx_t_1;
|
19138
19151
|
size_t __pyx_t_2;
|
19152
|
+
int __pyx_t_3;
|
19153
|
+
int __pyx_lineno = 0;
|
19154
|
+
const char *__pyx_filename = NULL;
|
19155
|
+
int __pyx_clineno = 0;
|
19156
|
+
PyGILState_STATE __pyx_gilstate_save;
|
19139
19157
|
|
19140
|
-
/* "edsger/path_tracking.pyx":
|
19158
|
+
/* "edsger/path_tracking.pyx":62
|
19141
19159
|
*
|
19142
19160
|
* # initialization
|
19143
19161
|
* j = <size_t>vertex_idx # <<<<<<<<<<<<<<
|
@@ -19146,7 +19164,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19146
19164
|
*/
|
19147
19165
|
__pyx_v_j = ((size_t)__pyx_v_vertex_idx);
|
19148
19166
|
|
19149
|
-
/* "edsger/path_tracking.pyx":
|
19167
|
+
/* "edsger/path_tracking.pyx":63
|
19150
19168
|
* # initialization
|
19151
19169
|
* j = <size_t>vertex_idx
|
19152
19170
|
* i = j + 1 # <<<<<<<<<<<<<<
|
@@ -19155,7 +19173,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19155
19173
|
*/
|
19156
19174
|
__pyx_v_i = (__pyx_v_j + 1);
|
19157
19175
|
|
19158
|
-
/* "edsger/path_tracking.pyx":
|
19176
|
+
/* "edsger/path_tracking.pyx":64
|
19159
19177
|
* j = <size_t>vertex_idx
|
19160
19178
|
* i = j + 1
|
19161
19179
|
* k = 0 # <<<<<<<<<<<<<<
|
@@ -19164,7 +19182,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19164
19182
|
*/
|
19165
19183
|
__pyx_v_k = 0;
|
19166
19184
|
|
19167
|
-
/* "edsger/path_tracking.pyx":
|
19185
|
+
/* "edsger/path_tracking.pyx":67
|
19168
19186
|
*
|
19169
19187
|
* # loop
|
19170
19188
|
* while i != j: # <<<<<<<<<<<<<<
|
@@ -19175,7 +19193,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19175
19193
|
__pyx_t_1 = (__pyx_v_i != __pyx_v_j);
|
19176
19194
|
if (!__pyx_t_1) break;
|
19177
19195
|
|
19178
|
-
/* "edsger/path_tracking.pyx":
|
19196
|
+
/* "edsger/path_tracking.pyx":68
|
19179
19197
|
* # loop
|
19180
19198
|
* while i != j:
|
19181
19199
|
* i = j # <<<<<<<<<<<<<<
|
@@ -19184,7 +19202,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19184
19202
|
*/
|
19185
19203
|
__pyx_v_i = __pyx_v_j;
|
19186
19204
|
|
19187
|
-
/* "edsger/path_tracking.pyx":
|
19205
|
+
/* "edsger/path_tracking.pyx":69
|
19188
19206
|
* while i != j:
|
19189
19207
|
* i = j
|
19190
19208
|
* j = <size_t>path_links[j] # <<<<<<<<<<<<<<
|
@@ -19192,9 +19210,15 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19192
19210
|
*
|
19193
19211
|
*/
|
19194
19212
|
__pyx_t_2 = __pyx_v_j;
|
19213
|
+
__pyx_t_3 = -1;
|
19214
|
+
if (unlikely(__pyx_t_2 >= (size_t)__pyx_v_path_links.shape[0])) __pyx_t_3 = 0;
|
19215
|
+
if (unlikely(__pyx_t_3 != -1)) {
|
19216
|
+
__Pyx_RaiseBufferIndexErrorNogil(__pyx_t_3);
|
19217
|
+
__PYX_ERR(0, 69, __pyx_L1_error)
|
19218
|
+
}
|
19195
19219
|
__pyx_v_j = ((size_t)(*((__pyx_t_5numpy_uint32_t *) ( /* dim=0 */ ((char *) (((__pyx_t_5numpy_uint32_t *) __pyx_v_path_links.data) + __pyx_t_2)) ))));
|
19196
19220
|
|
19197
|
-
/* "edsger/path_tracking.pyx":
|
19221
|
+
/* "edsger/path_tracking.pyx":70
|
19198
19222
|
* i = j
|
19199
19223
|
* j = <size_t>path_links[j]
|
19200
19224
|
* k += 1 # <<<<<<<<<<<<<<
|
@@ -19204,7 +19228,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19204
19228
|
__pyx_v_k = (__pyx_v_k + 1);
|
19205
19229
|
}
|
19206
19230
|
|
19207
|
-
/* "edsger/path_tracking.pyx":
|
19231
|
+
/* "edsger/path_tracking.pyx":72
|
19208
19232
|
* k += 1
|
19209
19233
|
*
|
19210
19234
|
* return k # <<<<<<<<<<<<<<
|
@@ -19214,7 +19238,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19214
19238
|
__pyx_r = __pyx_v_k;
|
19215
19239
|
goto __pyx_L0;
|
19216
19240
|
|
19217
|
-
/* "edsger/path_tracking.pyx":
|
19241
|
+
/* "edsger/path_tracking.pyx":50
|
19218
19242
|
*
|
19219
19243
|
*
|
19220
19244
|
* cdef int _compute_path_first_pass( # <<<<<<<<<<<<<<
|
@@ -19223,11 +19247,16 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19223
19247
|
*/
|
19224
19248
|
|
19225
19249
|
/* function exit code */
|
19250
|
+
__pyx_L1_error:;
|
19251
|
+
__pyx_gilstate_save = __Pyx_PyGILState_Ensure();
|
19252
|
+
__Pyx_WriteUnraisable("edsger.path_tracking._compute_path_first_pass", __pyx_clineno, __pyx_lineno, __pyx_filename, 1, 0);
|
19253
|
+
__pyx_r = 0;
|
19254
|
+
__Pyx_PyGILState_Release(__pyx_gilstate_save);
|
19226
19255
|
__pyx_L0:;
|
19227
19256
|
return __pyx_r;
|
19228
19257
|
}
|
19229
19258
|
|
19230
|
-
/* "edsger/path_tracking.pyx":
|
19259
|
+
/* "edsger/path_tracking.pyx":75
|
19231
19260
|
*
|
19232
19261
|
*
|
19233
19262
|
* cdef void _compute_path_second_pass( # <<<<<<<<<<<<<<
|
@@ -19241,8 +19270,13 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19241
19270
|
size_t __pyx_v_k;
|
19242
19271
|
int __pyx_t_1;
|
19243
19272
|
size_t __pyx_t_2;
|
19273
|
+
int __pyx_t_3;
|
19274
|
+
int __pyx_lineno = 0;
|
19275
|
+
const char *__pyx_filename = NULL;
|
19276
|
+
int __pyx_clineno = 0;
|
19277
|
+
PyGILState_STATE __pyx_gilstate_save;
|
19244
19278
|
|
19245
|
-
/* "edsger/path_tracking.pyx":
|
19279
|
+
/* "edsger/path_tracking.pyx":85
|
19246
19280
|
*
|
19247
19281
|
* # initialization
|
19248
19282
|
* j = <size_t>vertex_idx # <<<<<<<<<<<<<<
|
@@ -19251,7 +19285,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19251
19285
|
*/
|
19252
19286
|
__pyx_v_j = ((size_t)__pyx_v_vertex_idx);
|
19253
19287
|
|
19254
|
-
/* "edsger/path_tracking.pyx":
|
19288
|
+
/* "edsger/path_tracking.pyx":86
|
19255
19289
|
* # initialization
|
19256
19290
|
* j = <size_t>vertex_idx
|
19257
19291
|
* i = j + 1 # <<<<<<<<<<<<<<
|
@@ -19260,7 +19294,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19260
19294
|
*/
|
19261
19295
|
__pyx_v_i = (__pyx_v_j + 1);
|
19262
19296
|
|
19263
|
-
/* "edsger/path_tracking.pyx":
|
19297
|
+
/* "edsger/path_tracking.pyx":87
|
19264
19298
|
* j = <size_t>vertex_idx
|
19265
19299
|
* i = j + 1
|
19266
19300
|
* k = 0 # <<<<<<<<<<<<<<
|
@@ -19269,7 +19303,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19269
19303
|
*/
|
19270
19304
|
__pyx_v_k = 0;
|
19271
19305
|
|
19272
|
-
/* "edsger/path_tracking.pyx":
|
19306
|
+
/* "edsger/path_tracking.pyx":90
|
19273
19307
|
*
|
19274
19308
|
* # loop
|
19275
19309
|
* while i != j: # <<<<<<<<<<<<<<
|
@@ -19280,7 +19314,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19280
19314
|
__pyx_t_1 = (__pyx_v_i != __pyx_v_j);
|
19281
19315
|
if (!__pyx_t_1) break;
|
19282
19316
|
|
19283
|
-
/* "edsger/path_tracking.pyx":
|
19317
|
+
/* "edsger/path_tracking.pyx":91
|
19284
19318
|
* # loop
|
19285
19319
|
* while i != j:
|
19286
19320
|
* i = j # <<<<<<<<<<<<<<
|
@@ -19289,7 +19323,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19289
19323
|
*/
|
19290
19324
|
__pyx_v_i = __pyx_v_j;
|
19291
19325
|
|
19292
|
-
/* "edsger/path_tracking.pyx":
|
19326
|
+
/* "edsger/path_tracking.pyx":92
|
19293
19327
|
* while i != j:
|
19294
19328
|
* i = j
|
19295
19329
|
* path_vertices[k] = j # <<<<<<<<<<<<<<
|
@@ -19297,9 +19331,15 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19297
19331
|
* k += 1
|
19298
19332
|
*/
|
19299
19333
|
__pyx_t_2 = __pyx_v_k;
|
19334
|
+
__pyx_t_3 = -1;
|
19335
|
+
if (unlikely(__pyx_t_2 >= (size_t)__pyx_v_path_vertices.shape[0])) __pyx_t_3 = 0;
|
19336
|
+
if (unlikely(__pyx_t_3 != -1)) {
|
19337
|
+
__Pyx_RaiseBufferIndexErrorNogil(__pyx_t_3);
|
19338
|
+
__PYX_ERR(0, 92, __pyx_L1_error)
|
19339
|
+
}
|
19300
19340
|
*((__pyx_t_5numpy_uint32_t *) ( /* dim=0 */ ((char *) (((__pyx_t_5numpy_uint32_t *) __pyx_v_path_vertices.data) + __pyx_t_2)) )) = __pyx_v_j;
|
19301
19341
|
|
19302
|
-
/* "edsger/path_tracking.pyx":
|
19342
|
+
/* "edsger/path_tracking.pyx":93
|
19303
19343
|
* i = j
|
19304
19344
|
* path_vertices[k] = j
|
19305
19345
|
* j = <size_t>path_links[j] # <<<<<<<<<<<<<<
|
@@ -19307,9 +19347,15 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19307
19347
|
*
|
19308
19348
|
*/
|
19309
19349
|
__pyx_t_2 = __pyx_v_j;
|
19350
|
+
__pyx_t_3 = -1;
|
19351
|
+
if (unlikely(__pyx_t_2 >= (size_t)__pyx_v_path_links.shape[0])) __pyx_t_3 = 0;
|
19352
|
+
if (unlikely(__pyx_t_3 != -1)) {
|
19353
|
+
__Pyx_RaiseBufferIndexErrorNogil(__pyx_t_3);
|
19354
|
+
__PYX_ERR(0, 93, __pyx_L1_error)
|
19355
|
+
}
|
19310
19356
|
__pyx_v_j = ((size_t)(*((__pyx_t_5numpy_uint32_t *) ( /* dim=0 */ ((char *) (((__pyx_t_5numpy_uint32_t *) __pyx_v_path_links.data) + __pyx_t_2)) ))));
|
19311
19357
|
|
19312
|
-
/* "edsger/path_tracking.pyx":
|
19358
|
+
/* "edsger/path_tracking.pyx":94
|
19313
19359
|
* path_vertices[k] = j
|
19314
19360
|
* j = <size_t>path_links[j]
|
19315
19361
|
* k += 1 # <<<<<<<<<<<<<<
|
@@ -19319,7 +19365,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19319
19365
|
__pyx_v_k = (__pyx_v_k + 1);
|
19320
19366
|
}
|
19321
19367
|
|
19322
|
-
/* "edsger/path_tracking.pyx":
|
19368
|
+
/* "edsger/path_tracking.pyx":75
|
19323
19369
|
*
|
19324
19370
|
*
|
19325
19371
|
* cdef void _compute_path_second_pass( # <<<<<<<<<<<<<<
|
@@ -19328,6 +19374,12 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19328
19374
|
*/
|
19329
19375
|
|
19330
19376
|
/* function exit code */
|
19377
|
+
goto __pyx_L0;
|
19378
|
+
__pyx_L1_error:;
|
19379
|
+
__pyx_gilstate_save = __Pyx_PyGILState_Ensure();
|
19380
|
+
__Pyx_WriteUnraisable("edsger.path_tracking._compute_path_second_pass", __pyx_clineno, __pyx_lineno, __pyx_filename, 1, 0);
|
19381
|
+
__Pyx_PyGILState_Release(__pyx_gilstate_save);
|
19382
|
+
__pyx_L0:;
|
19331
19383
|
}
|
19332
19384
|
/* #### Code section: module_exttypes ### */
|
19333
19385
|
static struct __pyx_vtabstruct_array __pyx_vtable_array;
|
@@ -20414,153 +20466,153 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
20414
20466
|
/*--- Type import code ---*/
|
20415
20467
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
20416
20468
|
__Pyx_GOTREF(__pyx_t_1);
|
20417
|
-
__pyx_mstate->__pyx_ptype_7cpython_4type_type =
|
20469
|
+
__pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_4(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
20418
20470
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20419
|
-
sizeof(PyTypeObject),
|
20471
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyTypeObject),
|
20420
20472
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20421
20473
|
0, 0,
|
20422
20474
|
#else
|
20423
|
-
sizeof(PyHeapTypeObject),
|
20475
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyHeapTypeObject),
|
20424
20476
|
#endif
|
20425
|
-
|
20477
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
20426
20478
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
20427
20479
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 228, __pyx_L1_error)
|
20428
20480
|
__Pyx_GOTREF(__pyx_t_1);
|
20429
|
-
__pyx_mstate->__pyx_ptype_5numpy_dtype =
|
20481
|
+
__pyx_mstate->__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "dtype",
|
20430
20482
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20431
|
-
sizeof(PyArray_Descr),
|
20483
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
20432
20484
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20433
|
-
sizeof(PyArray_Descr),
|
20485
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
20434
20486
|
#else
|
20435
|
-
sizeof(PyArray_Descr),
|
20487
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
20436
20488
|
#endif
|
20437
|
-
|
20438
|
-
__pyx_mstate->__pyx_ptype_5numpy_flatiter =
|
20489
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 228, __pyx_L1_error)
|
20490
|
+
__pyx_mstate->__pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "flatiter",
|
20439
20491
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20440
|
-
sizeof(PyArrayIterObject),
|
20492
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
20441
20493
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20442
|
-
sizeof(PyArrayIterObject),
|
20494
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
20443
20495
|
#else
|
20444
|
-
sizeof(PyArrayIterObject),
|
20496
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
20445
20497
|
#endif
|
20446
|
-
|
20447
|
-
__pyx_mstate->__pyx_ptype_5numpy_broadcast =
|
20498
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 273, __pyx_L1_error)
|
20499
|
+
__pyx_mstate->__pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "broadcast",
|
20448
20500
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20449
|
-
sizeof(PyArrayMultiIterObject),
|
20501
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
20450
20502
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20451
|
-
sizeof(PyArrayMultiIterObject),
|
20503
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
20452
20504
|
#else
|
20453
|
-
sizeof(PyArrayMultiIterObject),
|
20505
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
20454
20506
|
#endif
|
20455
|
-
|
20456
|
-
__pyx_mstate->__pyx_ptype_5numpy_ndarray =
|
20507
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 277, __pyx_L1_error)
|
20508
|
+
__pyx_mstate->__pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "ndarray",
|
20457
20509
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20458
|
-
sizeof(PyArrayObject),
|
20510
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
20459
20511
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20460
|
-
sizeof(PyArrayObject),
|
20512
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
20461
20513
|
#else
|
20462
|
-
sizeof(PyArrayObject),
|
20514
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
20463
20515
|
#endif
|
20464
|
-
|
20465
|
-
__pyx_mstate->__pyx_ptype_5numpy_generic =
|
20516
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 316, __pyx_L1_error)
|
20517
|
+
__pyx_mstate->__pyx_ptype_5numpy_generic = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "generic",
|
20466
20518
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20467
|
-
sizeof(PyObject),
|
20519
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20468
20520
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20469
|
-
sizeof(PyObject),
|
20521
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20470
20522
|
#else
|
20471
|
-
sizeof(PyObject),
|
20523
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20472
20524
|
#endif
|
20473
|
-
|
20474
|
-
__pyx_mstate->__pyx_ptype_5numpy_number =
|
20525
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_generic) __PYX_ERR(2, 825, __pyx_L1_error)
|
20526
|
+
__pyx_mstate->__pyx_ptype_5numpy_number = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "number",
|
20475
20527
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20476
|
-
sizeof(PyObject),
|
20528
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20477
20529
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20478
|
-
sizeof(PyObject),
|
20530
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20479
20531
|
#else
|
20480
|
-
sizeof(PyObject),
|
20532
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20481
20533
|
#endif
|
20482
|
-
|
20483
|
-
__pyx_mstate->__pyx_ptype_5numpy_integer =
|
20534
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_number) __PYX_ERR(2, 827, __pyx_L1_error)
|
20535
|
+
__pyx_mstate->__pyx_ptype_5numpy_integer = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "integer",
|
20484
20536
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20485
|
-
sizeof(PyObject),
|
20537
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20486
20538
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20487
|
-
sizeof(PyObject),
|
20539
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20488
20540
|
#else
|
20489
|
-
sizeof(PyObject),
|
20541
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20490
20542
|
#endif
|
20491
|
-
|
20492
|
-
__pyx_mstate->__pyx_ptype_5numpy_signedinteger =
|
20543
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_integer) __PYX_ERR(2, 829, __pyx_L1_error)
|
20544
|
+
__pyx_mstate->__pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "signedinteger",
|
20493
20545
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20494
|
-
sizeof(PyObject),
|
20546
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20495
20547
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20496
|
-
sizeof(PyObject),
|
20548
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20497
20549
|
#else
|
20498
|
-
sizeof(PyObject),
|
20550
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20499
20551
|
#endif
|
20500
|
-
|
20501
|
-
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger =
|
20552
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 831, __pyx_L1_error)
|
20553
|
+
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "unsignedinteger",
|
20502
20554
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20503
|
-
sizeof(PyObject),
|
20555
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20504
20556
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20505
|
-
sizeof(PyObject),
|
20557
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20506
20558
|
#else
|
20507
|
-
sizeof(PyObject),
|
20559
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20508
20560
|
#endif
|
20509
|
-
|
20510
|
-
__pyx_mstate->__pyx_ptype_5numpy_inexact =
|
20561
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 833, __pyx_L1_error)
|
20562
|
+
__pyx_mstate->__pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "inexact",
|
20511
20563
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20512
|
-
sizeof(PyObject),
|
20564
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20513
20565
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20514
|
-
sizeof(PyObject),
|
20566
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20515
20567
|
#else
|
20516
|
-
sizeof(PyObject),
|
20568
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20517
20569
|
#endif
|
20518
|
-
|
20519
|
-
__pyx_mstate->__pyx_ptype_5numpy_floating =
|
20570
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 835, __pyx_L1_error)
|
20571
|
+
__pyx_mstate->__pyx_ptype_5numpy_floating = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "floating",
|
20520
20572
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20521
|
-
sizeof(PyObject),
|
20573
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20522
20574
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20523
|
-
sizeof(PyObject),
|
20575
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20524
20576
|
#else
|
20525
|
-
sizeof(PyObject),
|
20577
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20526
20578
|
#endif
|
20527
|
-
|
20528
|
-
__pyx_mstate->__pyx_ptype_5numpy_complexfloating =
|
20579
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_floating) __PYX_ERR(2, 837, __pyx_L1_error)
|
20580
|
+
__pyx_mstate->__pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "complexfloating",
|
20529
20581
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20530
|
-
sizeof(PyObject),
|
20582
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20531
20583
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20532
|
-
sizeof(PyObject),
|
20584
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20533
20585
|
#else
|
20534
|
-
sizeof(PyObject),
|
20586
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20535
20587
|
#endif
|
20536
|
-
|
20537
|
-
__pyx_mstate->__pyx_ptype_5numpy_flexible =
|
20588
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 839, __pyx_L1_error)
|
20589
|
+
__pyx_mstate->__pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "flexible",
|
20538
20590
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20539
|
-
sizeof(PyObject),
|
20591
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20540
20592
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20541
|
-
sizeof(PyObject),
|
20593
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20542
20594
|
#else
|
20543
|
-
sizeof(PyObject),
|
20595
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20544
20596
|
#endif
|
20545
|
-
|
20546
|
-
__pyx_mstate->__pyx_ptype_5numpy_character =
|
20597
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 841, __pyx_L1_error)
|
20598
|
+
__pyx_mstate->__pyx_ptype_5numpy_character = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "character",
|
20547
20599
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20548
|
-
sizeof(PyObject),
|
20600
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20549
20601
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20550
|
-
sizeof(PyObject),
|
20602
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20551
20603
|
#else
|
20552
|
-
sizeof(PyObject),
|
20604
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20553
20605
|
#endif
|
20554
|
-
|
20555
|
-
__pyx_mstate->__pyx_ptype_5numpy_ufunc =
|
20606
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_character) __PYX_ERR(2, 843, __pyx_L1_error)
|
20607
|
+
__pyx_mstate->__pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "ufunc",
|
20556
20608
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20557
|
-
sizeof(PyUFuncObject),
|
20609
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
20558
20610
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20559
|
-
sizeof(PyUFuncObject),
|
20611
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
20560
20612
|
#else
|
20561
|
-
sizeof(PyUFuncObject),
|
20613
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
20562
20614
|
#endif
|
20563
|
-
|
20615
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 907, __pyx_L1_error)
|
20564
20616
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
20565
20617
|
__Pyx_RefNannyFinishContext();
|
20566
20618
|
return 0;
|
@@ -21409,28 +21461,28 @@ __Pyx_RefNannySetupContext("PyInit_path_tracking", 0);
|
|
21409
21461
|
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)
|
21410
21462
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
21411
21463
|
|
21412
|
-
/* "edsger/path_tracking.pyx":
|
21413
|
-
*
|
21464
|
+
/* "edsger/path_tracking.pyx":24
|
21465
|
+
* # cython: initializedcheck=False
|
21414
21466
|
*
|
21415
21467
|
* import numpy as np # <<<<<<<<<<<<<<
|
21416
21468
|
* cimport numpy as cnp
|
21417
21469
|
*
|
21418
21470
|
*/
|
21419
|
-
__pyx_t_5 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
21471
|
+
__pyx_t_5 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 24, __pyx_L1_error)
|
21420
21472
|
__Pyx_GOTREF(__pyx_t_5);
|
21421
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_5) < 0) __PYX_ERR(0,
|
21473
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_5) < 0) __PYX_ERR(0, 24, __pyx_L1_error)
|
21422
21474
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
21423
21475
|
|
21424
|
-
/* "edsger/path_tracking.pyx":
|
21476
|
+
/* "edsger/path_tracking.pyx":28
|
21425
21477
|
*
|
21426
21478
|
*
|
21427
21479
|
* cpdef cnp.ndarray compute_path(cnp.uint32_t[::1] path_links, int vertex_idx): # <<<<<<<<<<<<<<
|
21428
21480
|
* """Compute path from predecessors or successors.
|
21429
21481
|
*
|
21430
21482
|
*/
|
21431
|
-
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6edsger_13path_tracking_1compute_path, 0, __pyx_mstate_global->__pyx_n_u_compute_path, NULL, __pyx_mstate_global->__pyx_n_u_edsger_path_tracking, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
21483
|
+
__pyx_t_5 = __Pyx_CyFunction_New(&__pyx_mdef_6edsger_13path_tracking_1compute_path, 0, __pyx_mstate_global->__pyx_n_u_compute_path, NULL, __pyx_mstate_global->__pyx_n_u_edsger_path_tracking, __pyx_mstate_global->__pyx_d, ((PyObject *)__pyx_mstate_global->__pyx_codeobj_tab[0])); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 28, __pyx_L1_error)
|
21432
21484
|
__Pyx_GOTREF(__pyx_t_5);
|
21433
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_compute_path, __pyx_t_5) < 0) __PYX_ERR(0,
|
21485
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_compute_path, __pyx_t_5) < 0) __PYX_ERR(0, 28, __pyx_L1_error)
|
21434
21486
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
21435
21487
|
|
21436
21488
|
/* "edsger/path_tracking.pyx":1
|
@@ -21749,7 +21801,7 @@ static int __Pyx_CreateCodeObjects(__pyx_mstatetype *__pyx_mstate) {
|
|
21749
21801
|
PyObject* tuple_dedup_map = PyDict_New();
|
21750
21802
|
if (unlikely(!tuple_dedup_map)) return -1;
|
21751
21803
|
{
|
21752
|
-
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS),
|
21804
|
+
const __Pyx_PyCode_New_function_description descr = {2, 0, 0, 2, (unsigned int)(CO_OPTIMIZED|CO_NEWLOCALS), 28, 49};
|
21753
21805
|
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_path_links, __pyx_mstate->__pyx_n_u_vertex_idx};
|
21754
21806
|
__pyx_mstate_global->__pyx_codeobj_tab[0] = __Pyx_PyCode_New(descr, varnames, __pyx_mstate->__pyx_kp_u_src_edsger_path_tracking_pyx, __pyx_mstate->__pyx_n_u_compute_path, __pyx_k_q_BfA_Ql_1, tuple_dedup_map); if (unlikely(!__pyx_mstate_global->__pyx_codeobj_tab[0])) goto bad;
|
21755
21807
|
}
|
@@ -24620,6 +24672,55 @@ CYTHON_UNUSED static int __Pyx_VectorcallBuilder_AddArg_Check(PyObject *key, PyO
|
|
24620
24672
|
}
|
24621
24673
|
#endif
|
24622
24674
|
|
24675
|
+
/* BufferIndexError */
|
24676
|
+
static void __Pyx_RaiseBufferIndexError(int axis) {
|
24677
|
+
PyErr_Format(PyExc_IndexError,
|
24678
|
+
"Out of bounds on buffer access (axis %d)", axis);
|
24679
|
+
}
|
24680
|
+
|
24681
|
+
/* BufferIndexErrorNogil */
|
24682
|
+
static void __Pyx_RaiseBufferIndexErrorNogil(int axis) {
|
24683
|
+
PyGILState_STATE gilstate = PyGILState_Ensure();
|
24684
|
+
__Pyx_RaiseBufferIndexError(axis);
|
24685
|
+
PyGILState_Release(gilstate);
|
24686
|
+
}
|
24687
|
+
|
24688
|
+
/* WriteUnraisableException */
|
24689
|
+
static void __Pyx_WriteUnraisable(const char *name, int clineno,
|
24690
|
+
int lineno, const char *filename,
|
24691
|
+
int full_traceback, int nogil) {
|
24692
|
+
PyObject *old_exc, *old_val, *old_tb;
|
24693
|
+
PyObject *ctx;
|
24694
|
+
__Pyx_PyThreadState_declare
|
24695
|
+
PyGILState_STATE state;
|
24696
|
+
if (nogil)
|
24697
|
+
state = PyGILState_Ensure();
|
24698
|
+
else state = (PyGILState_STATE)0;
|
24699
|
+
CYTHON_UNUSED_VAR(clineno);
|
24700
|
+
CYTHON_UNUSED_VAR(lineno);
|
24701
|
+
CYTHON_UNUSED_VAR(filename);
|
24702
|
+
CYTHON_MAYBE_UNUSED_VAR(nogil);
|
24703
|
+
__Pyx_PyThreadState_assign
|
24704
|
+
__Pyx_ErrFetch(&old_exc, &old_val, &old_tb);
|
24705
|
+
if (full_traceback) {
|
24706
|
+
Py_XINCREF(old_exc);
|
24707
|
+
Py_XINCREF(old_val);
|
24708
|
+
Py_XINCREF(old_tb);
|
24709
|
+
__Pyx_ErrRestore(old_exc, old_val, old_tb);
|
24710
|
+
PyErr_PrintEx(0);
|
24711
|
+
}
|
24712
|
+
ctx = PyUnicode_FromString(name);
|
24713
|
+
__Pyx_ErrRestore(old_exc, old_val, old_tb);
|
24714
|
+
if (!ctx) {
|
24715
|
+
PyErr_WriteUnraisable(Py_None);
|
24716
|
+
} else {
|
24717
|
+
PyErr_WriteUnraisable(ctx);
|
24718
|
+
Py_DECREF(ctx);
|
24719
|
+
}
|
24720
|
+
if (nogil)
|
24721
|
+
PyGILState_Release(state);
|
24722
|
+
}
|
24723
|
+
|
24623
24724
|
/* CallTypeTraverse */
|
24624
24725
|
#if !CYTHON_USE_TYPE_SPECS || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x03090000)
|
24625
24726
|
#else
|
@@ -25347,15 +25448,15 @@ __PYX_GOOD:
|
|
25347
25448
|
}
|
25348
25449
|
|
25349
25450
|
/* TypeImport */
|
25350
|
-
#ifndef
|
25351
|
-
#define
|
25352
|
-
static PyTypeObject *
|
25353
|
-
size_t size, size_t alignment, enum
|
25451
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_4
|
25452
|
+
#define __PYX_HAVE_RT_ImportType_3_1_4
|
25453
|
+
static PyTypeObject *__Pyx_ImportType_3_1_4(PyObject *module, const char *module_name, const char *class_name,
|
25454
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_4 check_size)
|
25354
25455
|
{
|
25355
25456
|
PyObject *result = 0;
|
25356
25457
|
Py_ssize_t basicsize;
|
25357
25458
|
Py_ssize_t itemsize;
|
25358
|
-
#
|
25459
|
+
#ifdef Py_LIMITED_API
|
25359
25460
|
PyObject *py_basicsize;
|
25360
25461
|
PyObject *py_itemsize;
|
25361
25462
|
#endif
|
@@ -25368,7 +25469,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module
|
|
25368
25469
|
module_name, class_name);
|
25369
25470
|
goto bad;
|
25370
25471
|
}
|
25371
|
-
#
|
25472
|
+
#ifndef Py_LIMITED_API
|
25372
25473
|
basicsize = ((PyTypeObject *)result)->tp_basicsize;
|
25373
25474
|
itemsize = ((PyTypeObject *)result)->tp_itemsize;
|
25374
25475
|
#else
|
@@ -25406,7 +25507,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module
|
|
25406
25507
|
module_name, class_name, size, basicsize+itemsize);
|
25407
25508
|
goto bad;
|
25408
25509
|
}
|
25409
|
-
if (check_size ==
|
25510
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_4 &&
|
25410
25511
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
25411
25512
|
PyErr_Format(PyExc_ValueError,
|
25412
25513
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
@@ -25414,7 +25515,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module
|
|
25414
25515
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
25415
25516
|
goto bad;
|
25416
25517
|
}
|
25417
|
-
else if (check_size ==
|
25518
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_4 && (size_t)basicsize > size) {
|
25418
25519
|
if (PyErr_WarnFormat(NULL, 0,
|
25419
25520
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
25420
25521
|
"Expected %zd from C header, got %zd from PyObject",
|
@@ -25584,6 +25685,7 @@ static int __pyx_CommonTypesMetaclass_init(PyObject *module) {
|
|
25584
25685
|
return -1;
|
25585
25686
|
}
|
25586
25687
|
mstate->__pyx_CommonTypesMetaclassType = __Pyx_FetchCommonTypeFromSpec(NULL, module, &__pyx_CommonTypesMetaclass_spec, bases);
|
25688
|
+
Py_DECREF(bases);
|
25587
25689
|
if (unlikely(mstate->__pyx_CommonTypesMetaclassType == NULL)) {
|
25588
25690
|
return -1;
|
25589
25691
|
}
|
@@ -29605,6 +29707,10 @@ __Pyx_PyType_GetFullyQualifiedName(PyTypeObject* tp)
|
|
29605
29707
|
PyCode_NewWithPosOnlyArgs
|
29606
29708
|
#endif
|
29607
29709
|
(a, p, k, l, s, f, code, c, n, v, fv, cell, fn, name, name, fline, lnos, __pyx_mstate_global->__pyx_empty_bytes);
|
29710
|
+
#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030c00A1
|
29711
|
+
if (likely(result))
|
29712
|
+
result->_co_firsttraceable = 0;
|
29713
|
+
#endif
|
29608
29714
|
return result;
|
29609
29715
|
}
|
29610
29716
|
#elif PY_VERSION_HEX >= 0x030800B2 && !CYTHON_COMPILING_IN_PYPY
|