edsger 0.1.4__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 +35284 -0
- edsger/bellman_ford.cpython-311-darwin.so +0 -0
- edsger/bellman_ford.pyx +551 -0
- edsger/bfs.c +33575 -0
- edsger/bfs.cpython-311-darwin.so +0 -0
- edsger/bfs.pyx +243 -0
- edsger/commons.c +286 -278
- edsger/commons.cpython-311-darwin.so +0 -0
- edsger/commons.pyx +7 -0
- edsger/dijkstra.c +2433 -1857
- 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 +1410 -264
- edsger/path_tracking.c +423 -302
- edsger/path_tracking.cpython-311-darwin.so +0 -0
- edsger/path_tracking.pyx +7 -0
- edsger/pq_4ary_dec_0b.c +1175 -1016
- edsger/pq_4ary_dec_0b.cpython-311-darwin.so +0 -0
- edsger/pq_4ary_dec_0b.pyx +7 -0
- edsger/spiess_florian.c +1410 -1140
- edsger/spiess_florian.cpython-311-darwin.so +0 -0
- edsger/spiess_florian.pyx +7 -0
- edsger/star.c +1240 -767
- edsger/star.cpython-311-darwin.so +0 -0
- edsger/star.pyx +7 -0
- edsger/utils.py +69 -4
- edsger-0.1.6.dist-info/METADATA +304 -0
- edsger-0.1.6.dist-info/RECORD +40 -0
- edsger-0.1.4.dist-info/METADATA +0 -125
- edsger-0.1.4.dist-info/RECORD +0 -33
- {edsger-0.1.4.dist-info → edsger-0.1.6.dist-info}/WHEEL +0 -0
- {edsger-0.1.4.dist-info → edsger-0.1.6.dist-info}/licenses/AUTHORS.rst +0 -0
- {edsger-0.1.4.dist-info → edsger-0.1.6.dist-info}/licenses/LICENSE +0 -0
- {edsger-0.1.4.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>
|
@@ -404,6 +405,9 @@ END: Cython Metadata */
|
|
404
405
|
enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
|
405
406
|
#endif
|
406
407
|
#endif
|
408
|
+
#ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
|
409
|
+
#define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
|
410
|
+
#endif
|
407
411
|
#ifndef __has_attribute
|
408
412
|
#define __has_attribute(x) 0
|
409
413
|
#endif
|
@@ -1384,7 +1388,7 @@ static const char *__pyx_filename;
|
|
1384
1388
|
static const char* const __pyx_f[] = {
|
1385
1389
|
"src/edsger/path_tracking.pyx",
|
1386
1390
|
"<stringsource>",
|
1387
|
-
"../../../../../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",
|
1388
1392
|
"cpython/type.pxd",
|
1389
1393
|
};
|
1390
1394
|
/* #### Code section: utility_code_proto_before_types ### */
|
@@ -1607,7 +1611,7 @@ typedef struct {
|
|
1607
1611
|
|
1608
1612
|
/* #### Code section: numeric_typedefs ### */
|
1609
1613
|
|
1610
|
-
/* "../../../../../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
|
1611
1615
|
* # in Cython to enable them only on the right systems.
|
1612
1616
|
*
|
1613
1617
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
@@ -1616,7 +1620,7 @@ typedef struct {
|
|
1616
1620
|
*/
|
1617
1621
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
1618
1622
|
|
1619
|
-
/* "../../../../../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
|
1620
1624
|
*
|
1621
1625
|
* ctypedef npy_int8 int8_t
|
1622
1626
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
@@ -1625,7 +1629,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1625
1629
|
*/
|
1626
1630
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
1627
1631
|
|
1628
|
-
/* "../../../../../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
|
1629
1633
|
* ctypedef npy_int8 int8_t
|
1630
1634
|
* ctypedef npy_int16 int16_t
|
1631
1635
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
@@ -1634,7 +1638,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1634
1638
|
*/
|
1635
1639
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
1636
1640
|
|
1637
|
-
/* "../../../../../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
|
1638
1642
|
* ctypedef npy_int16 int16_t
|
1639
1643
|
* ctypedef npy_int32 int32_t
|
1640
1644
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
@@ -1643,7 +1647,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1643
1647
|
*/
|
1644
1648
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
1645
1649
|
|
1646
|
-
/* "../../../../../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
|
1647
1651
|
* ctypedef npy_int64 int64_t
|
1648
1652
|
*
|
1649
1653
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
@@ -1652,7 +1656,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1652
1656
|
*/
|
1653
1657
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
1654
1658
|
|
1655
|
-
/* "../../../../../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
|
1656
1660
|
*
|
1657
1661
|
* ctypedef npy_uint8 uint8_t
|
1658
1662
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
@@ -1661,7 +1665,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1661
1665
|
*/
|
1662
1666
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
1663
1667
|
|
1664
|
-
/* "../../../../../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
|
1665
1669
|
* ctypedef npy_uint8 uint8_t
|
1666
1670
|
* ctypedef npy_uint16 uint16_t
|
1667
1671
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
@@ -1670,7 +1674,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1670
1674
|
*/
|
1671
1675
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
1672
1676
|
|
1673
|
-
/* "../../../../../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
|
1674
1678
|
* ctypedef npy_uint16 uint16_t
|
1675
1679
|
* ctypedef npy_uint32 uint32_t
|
1676
1680
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
@@ -1679,7 +1683,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1679
1683
|
*/
|
1680
1684
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
1681
1685
|
|
1682
|
-
/* "../../../../../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
|
1683
1687
|
* ctypedef npy_uint64 uint64_t
|
1684
1688
|
*
|
1685
1689
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
@@ -1688,7 +1692,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1688
1692
|
*/
|
1689
1693
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
1690
1694
|
|
1691
|
-
/* "../../../../../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
|
1692
1696
|
*
|
1693
1697
|
* ctypedef npy_float32 float32_t
|
1694
1698
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
@@ -1697,7 +1701,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1697
1701
|
*/
|
1698
1702
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
1699
1703
|
|
1700
|
-
/* "../../../../../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
|
1701
1705
|
* ctypedef double complex complex128_t
|
1702
1706
|
*
|
1703
1707
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
@@ -1706,7 +1710,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1706
1710
|
*/
|
1707
1711
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
1708
1712
|
|
1709
|
-
/* "../../../../../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
|
1710
1714
|
*
|
1711
1715
|
* ctypedef npy_longlong longlong_t
|
1712
1716
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
@@ -1715,7 +1719,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1715
1719
|
*/
|
1716
1720
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
1717
1721
|
|
1718
|
-
/* "../../../../../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
|
1719
1723
|
* ctypedef npy_ulonglong ulonglong_t
|
1720
1724
|
*
|
1721
1725
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
@@ -1724,7 +1728,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1724
1728
|
*/
|
1725
1729
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
1726
1730
|
|
1727
|
-
/* "../../../../../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
|
1728
1732
|
*
|
1729
1733
|
* ctypedef npy_intp intp_t
|
1730
1734
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
@@ -1733,7 +1737,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1733
1737
|
*/
|
1734
1738
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
1735
1739
|
|
1736
|
-
/* "../../../../../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
|
1737
1741
|
* ctypedef npy_uintp uintp_t
|
1738
1742
|
*
|
1739
1743
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
@@ -1742,7 +1746,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1742
1746
|
*/
|
1743
1747
|
typedef npy_double __pyx_t_5numpy_float_t;
|
1744
1748
|
|
1745
|
-
/* "../../../../../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
|
1746
1750
|
*
|
1747
1751
|
* ctypedef npy_double float_t
|
1748
1752
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
@@ -1751,7 +1755,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
1751
1755
|
*/
|
1752
1756
|
typedef npy_double __pyx_t_5numpy_double_t;
|
1753
1757
|
|
1754
|
-
/* "../../../../../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
|
1755
1759
|
* ctypedef npy_double float_t
|
1756
1760
|
* ctypedef npy_double double_t
|
1757
1761
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
@@ -2583,6 +2587,17 @@ static int __Pyx_VectorcallBuilder_AddArgStr(const char *key, PyObject *value, P
|
|
2583
2587
|
#define __Pyx_VectorcallBuilder_AddArgStr(key, value, builder, args, n) PyDict_SetItemString(builder, key, value)
|
2584
2588
|
#endif
|
2585
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
|
+
|
2586
2601
|
/* CallTypeTraverse.proto */
|
2587
2602
|
#if !CYTHON_USE_TYPE_SPECS || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x03090000)
|
2588
2603
|
#define __Pyx_call_type_traverse(o, always_call, visit, arg) 0
|
@@ -2636,22 +2651,22 @@ static int __Pyx__DelItemOnTypeDict(PyTypeObject *tp, PyObject *k);
|
|
2636
2651
|
static int __Pyx_setup_reduce(PyObject* type_obj);
|
2637
2652
|
|
2638
2653
|
/* TypeImport.proto */
|
2639
|
-
#ifndef
|
2640
|
-
#define
|
2654
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_4
|
2655
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_4
|
2641
2656
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
2642
2657
|
#include <stdalign.h>
|
2643
2658
|
#endif
|
2644
2659
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
2645
|
-
#define
|
2660
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) alignof(s)
|
2646
2661
|
#else
|
2647
|
-
#define
|
2662
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) sizeof(void*)
|
2648
2663
|
#endif
|
2649
|
-
enum
|
2650
|
-
|
2651
|
-
|
2652
|
-
|
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
|
2653
2668
|
};
|
2654
|
-
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);
|
2655
2670
|
#endif
|
2656
2671
|
|
2657
2672
|
/* FetchSharedCythonModule.proto */
|
@@ -17119,7 +17134,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
17119
17134
|
return __pyx_r;
|
17120
17135
|
}
|
17121
17136
|
|
17122
|
-
/* "../../../../../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
|
17123
17138
|
* cdef int type_num
|
17124
17139
|
*
|
17125
17140
|
* @property # <<<<<<<<<<<<<<
|
@@ -17130,7 +17145,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
|
|
17130
17145
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
17131
17146
|
npy_intp __pyx_r;
|
17132
17147
|
|
17133
|
-
/* "../../../../../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
|
17134
17149
|
* @property
|
17135
17150
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
17136
17151
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
@@ -17140,7 +17155,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17140
17155
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
17141
17156
|
goto __pyx_L0;
|
17142
17157
|
|
17143
|
-
/* "../../../../../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
|
17144
17159
|
* cdef int type_num
|
17145
17160
|
*
|
17146
17161
|
* @property # <<<<<<<<<<<<<<
|
@@ -17153,7 +17168,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17153
17168
|
return __pyx_r;
|
17154
17169
|
}
|
17155
17170
|
|
17156
|
-
/* "../../../../../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
|
17157
17172
|
* return PyDataType_ELSIZE(self)
|
17158
17173
|
*
|
17159
17174
|
* @property # <<<<<<<<<<<<<<
|
@@ -17164,7 +17179,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
17164
17179
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
17165
17180
|
npy_intp __pyx_r;
|
17166
17181
|
|
17167
|
-
/* "../../../../../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
|
17168
17183
|
* @property
|
17169
17184
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
17170
17185
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
@@ -17174,7 +17189,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
17174
17189
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
17175
17190
|
goto __pyx_L0;
|
17176
17191
|
|
17177
|
-
/* "../../../../../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
|
17178
17193
|
* return PyDataType_ELSIZE(self)
|
17179
17194
|
*
|
17180
17195
|
* @property # <<<<<<<<<<<<<<
|
@@ -17187,7 +17202,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
17187
17202
|
return __pyx_r;
|
17188
17203
|
}
|
17189
17204
|
|
17190
|
-
/* "../../../../../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
|
17191
17206
|
* # Use fields/names with care as they may be NULL. You must check
|
17192
17207
|
* # for this using PyDataType_HASFIELDS.
|
17193
17208
|
* @property # <<<<<<<<<<<<<<
|
@@ -17201,7 +17216,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17201
17216
|
PyObject *__pyx_t_1;
|
17202
17217
|
__Pyx_RefNannySetupContext("fields", 0);
|
17203
17218
|
|
17204
|
-
/* "../../../../../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
|
17205
17220
|
* @property
|
17206
17221
|
* cdef inline object fields(self):
|
17207
17222
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
@@ -17214,7 +17229,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17214
17229
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
17215
17230
|
goto __pyx_L0;
|
17216
17231
|
|
17217
|
-
/* "../../../../../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
|
17218
17233
|
* # Use fields/names with care as they may be NULL. You must check
|
17219
17234
|
* # for this using PyDataType_HASFIELDS.
|
17220
17235
|
* @property # <<<<<<<<<<<<<<
|
@@ -17229,7 +17244,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
17229
17244
|
return __pyx_r;
|
17230
17245
|
}
|
17231
17246
|
|
17232
|
-
/* "../../../../../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
|
17233
17248
|
* return <object>PyDataType_FIELDS(self)
|
17234
17249
|
*
|
17235
17250
|
* @property # <<<<<<<<<<<<<<
|
@@ -17243,7 +17258,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17243
17258
|
PyObject *__pyx_t_1;
|
17244
17259
|
__Pyx_RefNannySetupContext("names", 0);
|
17245
17260
|
|
17246
|
-
/* "../../../../../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
|
17247
17262
|
* @property
|
17248
17263
|
* cdef inline tuple names(self):
|
17249
17264
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
@@ -17256,7 +17271,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17256
17271
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
17257
17272
|
goto __pyx_L0;
|
17258
17273
|
|
17259
|
-
/* "../../../../../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
|
17260
17275
|
* return <object>PyDataType_FIELDS(self)
|
17261
17276
|
*
|
17262
17277
|
* @property # <<<<<<<<<<<<<<
|
@@ -17271,7 +17286,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17271
17286
|
return __pyx_r;
|
17272
17287
|
}
|
17273
17288
|
|
17274
|
-
/* "../../../../../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
|
17275
17290
|
* # valid (the pointer can be NULL). Most users should access
|
17276
17291
|
* # this field via the inline helper method PyDataType_SHAPE.
|
17277
17292
|
* @property # <<<<<<<<<<<<<<
|
@@ -17282,7 +17297,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
17282
17297
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
17283
17298
|
PyArray_ArrayDescr *__pyx_r;
|
17284
17299
|
|
17285
|
-
/* "../../../../../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
|
17286
17301
|
* @property
|
17287
17302
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
17288
17303
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
@@ -17292,7 +17307,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17292
17307
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
17293
17308
|
goto __pyx_L0;
|
17294
17309
|
|
17295
|
-
/* "../../../../../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
|
17296
17311
|
* # valid (the pointer can be NULL). Most users should access
|
17297
17312
|
* # this field via the inline helper method PyDataType_SHAPE.
|
17298
17313
|
* @property # <<<<<<<<<<<<<<
|
@@ -17305,7 +17320,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17305
17320
|
return __pyx_r;
|
17306
17321
|
}
|
17307
17322
|
|
17308
|
-
/* "../../../../../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
|
17309
17324
|
* return PyDataType_SUBARRAY(self)
|
17310
17325
|
*
|
17311
17326
|
* @property # <<<<<<<<<<<<<<
|
@@ -17316,7 +17331,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
17316
17331
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
17317
17332
|
npy_uint64 __pyx_r;
|
17318
17333
|
|
17319
|
-
/* "../../../../../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
|
17320
17335
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
17321
17336
|
* """The data types flags."""
|
17322
17337
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
@@ -17326,7 +17341,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17326
17341
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
17327
17342
|
goto __pyx_L0;
|
17328
17343
|
|
17329
|
-
/* "../../../../../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
|
17330
17345
|
* return PyDataType_SUBARRAY(self)
|
17331
17346
|
*
|
17332
17347
|
* @property # <<<<<<<<<<<<<<
|
@@ -17339,7 +17354,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17339
17354
|
return __pyx_r;
|
17340
17355
|
}
|
17341
17356
|
|
17342
|
-
/* "../../../../../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
|
17343
17358
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
17344
17359
|
*
|
17345
17360
|
* @property # <<<<<<<<<<<<<<
|
@@ -17350,7 +17365,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
17350
17365
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
17351
17366
|
int __pyx_r;
|
17352
17367
|
|
17353
|
-
/* "../../../../../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
|
17354
17369
|
* cdef inline int numiter(self) noexcept nogil:
|
17355
17370
|
* """The number of arrays that need to be broadcast to the same shape."""
|
17356
17371
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
@@ -17360,7 +17375,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17360
17375
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
17361
17376
|
goto __pyx_L0;
|
17362
17377
|
|
17363
|
-
/* "../../../../../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
|
17364
17379
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
17365
17380
|
*
|
17366
17381
|
* @property # <<<<<<<<<<<<<<
|
@@ -17373,7 +17388,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17373
17388
|
return __pyx_r;
|
17374
17389
|
}
|
17375
17390
|
|
17376
|
-
/* "../../../../../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
|
17377
17392
|
* return PyArray_MultiIter_NUMITER(self)
|
17378
17393
|
*
|
17379
17394
|
* @property # <<<<<<<<<<<<<<
|
@@ -17384,7 +17399,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
17384
17399
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
17385
17400
|
npy_intp __pyx_r;
|
17386
17401
|
|
17387
|
-
/* "../../../../../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
|
17388
17403
|
* cdef inline npy_intp size(self) noexcept nogil:
|
17389
17404
|
* """The total broadcasted size."""
|
17390
17405
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -17394,7 +17409,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17394
17409
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
17395
17410
|
goto __pyx_L0;
|
17396
17411
|
|
17397
|
-
/* "../../../../../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
|
17398
17413
|
* return PyArray_MultiIter_NUMITER(self)
|
17399
17414
|
*
|
17400
17415
|
* @property # <<<<<<<<<<<<<<
|
@@ -17407,7 +17422,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17407
17422
|
return __pyx_r;
|
17408
17423
|
}
|
17409
17424
|
|
17410
|
-
/* "../../../../../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
|
17411
17426
|
* return PyArray_MultiIter_SIZE(self)
|
17412
17427
|
*
|
17413
17428
|
* @property # <<<<<<<<<<<<<<
|
@@ -17418,7 +17433,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
17418
17433
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
17419
17434
|
npy_intp __pyx_r;
|
17420
17435
|
|
17421
|
-
/* "../../../../../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
|
17422
17437
|
* cdef inline npy_intp index(self) noexcept nogil:
|
17423
17438
|
* """The current (1-d) index into the broadcasted result."""
|
17424
17439
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
@@ -17428,7 +17443,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17428
17443
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
17429
17444
|
goto __pyx_L0;
|
17430
17445
|
|
17431
|
-
/* "../../../../../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
|
17432
17447
|
* return PyArray_MultiIter_SIZE(self)
|
17433
17448
|
*
|
17434
17449
|
* @property # <<<<<<<<<<<<<<
|
@@ -17441,7 +17456,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17441
17456
|
return __pyx_r;
|
17442
17457
|
}
|
17443
17458
|
|
17444
|
-
/* "../../../../../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
|
17445
17460
|
* return PyArray_MultiIter_INDEX(self)
|
17446
17461
|
*
|
17447
17462
|
* @property # <<<<<<<<<<<<<<
|
@@ -17452,7 +17467,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
17452
17467
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
17453
17468
|
int __pyx_r;
|
17454
17469
|
|
17455
|
-
/* "../../../../../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
|
17456
17471
|
* cdef inline int nd(self) noexcept nogil:
|
17457
17472
|
* """The number of dimensions in the broadcasted result."""
|
17458
17473
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -17462,7 +17477,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17462
17477
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
17463
17478
|
goto __pyx_L0;
|
17464
17479
|
|
17465
|
-
/* "../../../../../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
|
17466
17481
|
* return PyArray_MultiIter_INDEX(self)
|
17467
17482
|
*
|
17468
17483
|
* @property # <<<<<<<<<<<<<<
|
@@ -17475,7 +17490,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17475
17490
|
return __pyx_r;
|
17476
17491
|
}
|
17477
17492
|
|
17478
|
-
/* "../../../../../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
|
17479
17494
|
* return PyArray_MultiIter_NDIM(self)
|
17480
17495
|
*
|
17481
17496
|
* @property # <<<<<<<<<<<<<<
|
@@ -17486,7 +17501,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
17486
17501
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
17487
17502
|
npy_intp *__pyx_r;
|
17488
17503
|
|
17489
|
-
/* "../../../../../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
|
17490
17505
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
17491
17506
|
* """The shape of the broadcasted result."""
|
17492
17507
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -17496,7 +17511,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17496
17511
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
17497
17512
|
goto __pyx_L0;
|
17498
17513
|
|
17499
|
-
/* "../../../../../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
|
17500
17515
|
* return PyArray_MultiIter_NDIM(self)
|
17501
17516
|
*
|
17502
17517
|
* @property # <<<<<<<<<<<<<<
|
@@ -17509,7 +17524,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17509
17524
|
return __pyx_r;
|
17510
17525
|
}
|
17511
17526
|
|
17512
|
-
/* "../../../../../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
|
17513
17528
|
* return PyArray_MultiIter_DIMS(self)
|
17514
17529
|
*
|
17515
17530
|
* @property # <<<<<<<<<<<<<<
|
@@ -17520,7 +17535,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
17520
17535
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
17521
17536
|
void **__pyx_r;
|
17522
17537
|
|
17523
|
-
/* "../../../../../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
|
17524
17539
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
17525
17540
|
* On return, the iterators are adjusted for broadcasting."""
|
17526
17541
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
@@ -17530,7 +17545,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17530
17545
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
17531
17546
|
goto __pyx_L0;
|
17532
17547
|
|
17533
|
-
/* "../../../../../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
|
17534
17549
|
* return PyArray_MultiIter_DIMS(self)
|
17535
17550
|
*
|
17536
17551
|
* @property # <<<<<<<<<<<<<<
|
@@ -17543,7 +17558,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17543
17558
|
return __pyx_r;
|
17544
17559
|
}
|
17545
17560
|
|
17546
|
-
/* "../../../../../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
|
17547
17562
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
17548
17563
|
*
|
17549
17564
|
* @property # <<<<<<<<<<<<<<
|
@@ -17554,7 +17569,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
17554
17569
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
17555
17570
|
PyObject *__pyx_r;
|
17556
17571
|
|
17557
|
-
/* "../../../../../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
|
17558
17573
|
* """Returns a borrowed reference to the object owning the data/memory.
|
17559
17574
|
* """
|
17560
17575
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
@@ -17564,7 +17579,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
17564
17579
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
17565
17580
|
goto __pyx_L0;
|
17566
17581
|
|
17567
|
-
/* "../../../../../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
|
17568
17583
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
17569
17584
|
*
|
17570
17585
|
* @property # <<<<<<<<<<<<<<
|
@@ -17577,7 +17592,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
17577
17592
|
return __pyx_r;
|
17578
17593
|
}
|
17579
17594
|
|
17580
|
-
/* "../../../../../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
|
17581
17596
|
* return PyArray_BASE(self)
|
17582
17597
|
*
|
17583
17598
|
* @property # <<<<<<<<<<<<<<
|
@@ -17591,7 +17606,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17591
17606
|
PyArray_Descr *__pyx_t_1;
|
17592
17607
|
__Pyx_RefNannySetupContext("descr", 0);
|
17593
17608
|
|
17594
|
-
/* "../../../../../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
|
17595
17610
|
* """Returns an owned reference to the dtype of the array.
|
17596
17611
|
* """
|
17597
17612
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
@@ -17604,7 +17619,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17604
17619
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
17605
17620
|
goto __pyx_L0;
|
17606
17621
|
|
17607
|
-
/* "../../../../../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
|
17608
17623
|
* return PyArray_BASE(self)
|
17609
17624
|
*
|
17610
17625
|
* @property # <<<<<<<<<<<<<<
|
@@ -17619,7 +17634,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17619
17634
|
return __pyx_r;
|
17620
17635
|
}
|
17621
17636
|
|
17622
|
-
/* "../../../../../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
|
17623
17638
|
* return <dtype>PyArray_DESCR(self)
|
17624
17639
|
*
|
17625
17640
|
* @property # <<<<<<<<<<<<<<
|
@@ -17630,7 +17645,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
17630
17645
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
17631
17646
|
int __pyx_r;
|
17632
17647
|
|
17633
|
-
/* "../../../../../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
|
17634
17649
|
* """Returns the number of dimensions in the array.
|
17635
17650
|
* """
|
17636
17651
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -17640,7 +17655,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17640
17655
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
17641
17656
|
goto __pyx_L0;
|
17642
17657
|
|
17643
|
-
/* "../../../../../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
|
17644
17659
|
* return <dtype>PyArray_DESCR(self)
|
17645
17660
|
*
|
17646
17661
|
* @property # <<<<<<<<<<<<<<
|
@@ -17653,7 +17668,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17653
17668
|
return __pyx_r;
|
17654
17669
|
}
|
17655
17670
|
|
17656
|
-
/* "../../../../../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
|
17657
17672
|
* return PyArray_NDIM(self)
|
17658
17673
|
*
|
17659
17674
|
* @property # <<<<<<<<<<<<<<
|
@@ -17664,7 +17679,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
17664
17679
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
17665
17680
|
npy_intp *__pyx_r;
|
17666
17681
|
|
17667
|
-
/* "../../../../../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
|
17668
17683
|
* Can return NULL for 0-dimensional arrays.
|
17669
17684
|
* """
|
17670
17685
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -17674,7 +17689,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17674
17689
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
17675
17690
|
goto __pyx_L0;
|
17676
17691
|
|
17677
|
-
/* "../../../../../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
|
17678
17693
|
* return PyArray_NDIM(self)
|
17679
17694
|
*
|
17680
17695
|
* @property # <<<<<<<<<<<<<<
|
@@ -17687,7 +17702,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17687
17702
|
return __pyx_r;
|
17688
17703
|
}
|
17689
17704
|
|
17690
|
-
/* "../../../../../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
|
17691
17706
|
* return PyArray_DIMS(self)
|
17692
17707
|
*
|
17693
17708
|
* @property # <<<<<<<<<<<<<<
|
@@ -17698,7 +17713,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
17698
17713
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
17699
17714
|
npy_intp *__pyx_r;
|
17700
17715
|
|
17701
|
-
/* "../../../../../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
|
17702
17717
|
* The number of elements matches the number of dimensions of the array (ndim).
|
17703
17718
|
* """
|
17704
17719
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
@@ -17708,7 +17723,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17708
17723
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
17709
17724
|
goto __pyx_L0;
|
17710
17725
|
|
17711
|
-
/* "../../../../../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
|
17712
17727
|
* return PyArray_DIMS(self)
|
17713
17728
|
*
|
17714
17729
|
* @property # <<<<<<<<<<<<<<
|
@@ -17721,7 +17736,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17721
17736
|
return __pyx_r;
|
17722
17737
|
}
|
17723
17738
|
|
17724
|
-
/* "../../../../../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
|
17725
17740
|
* return PyArray_STRIDES(self)
|
17726
17741
|
*
|
17727
17742
|
* @property # <<<<<<<<<<<<<<
|
@@ -17732,7 +17747,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
17732
17747
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
17733
17748
|
npy_intp __pyx_r;
|
17734
17749
|
|
17735
|
-
/* "../../../../../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
|
17736
17751
|
* """Returns the total size (in number of elements) of the array.
|
17737
17752
|
* """
|
17738
17753
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -17742,7 +17757,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17742
17757
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
17743
17758
|
goto __pyx_L0;
|
17744
17759
|
|
17745
|
-
/* "../../../../../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
|
17746
17761
|
* return PyArray_STRIDES(self)
|
17747
17762
|
*
|
17748
17763
|
* @property # <<<<<<<<<<<<<<
|
@@ -17755,7 +17770,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17755
17770
|
return __pyx_r;
|
17756
17771
|
}
|
17757
17772
|
|
17758
|
-
/* "../../../../../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
|
17759
17774
|
* return PyArray_SIZE(self)
|
17760
17775
|
*
|
17761
17776
|
* @property # <<<<<<<<<<<<<<
|
@@ -17766,7 +17781,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
17766
17781
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
17767
17782
|
char *__pyx_r;
|
17768
17783
|
|
17769
|
-
/* "../../../../../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
|
17770
17785
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
17771
17786
|
* """
|
17772
17787
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
@@ -17776,7 +17791,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
17776
17791
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
17777
17792
|
goto __pyx_L0;
|
17778
17793
|
|
17779
|
-
/* "../../../../../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
|
17780
17795
|
* return PyArray_SIZE(self)
|
17781
17796
|
*
|
17782
17797
|
* @property # <<<<<<<<<<<<<<
|
@@ -17789,7 +17804,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
17789
17804
|
return __pyx_r;
|
17790
17805
|
}
|
17791
17806
|
|
17792
|
-
/* "../../../../../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
|
17793
17808
|
* ctypedef long double complex clongdouble_t
|
17794
17809
|
*
|
17795
17810
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -17806,7 +17821,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
17806
17821
|
int __pyx_clineno = 0;
|
17807
17822
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
17808
17823
|
|
17809
|
-
/* "../../../../../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
|
17810
17825
|
*
|
17811
17826
|
* cdef inline object PyArray_MultiIterNew1(a):
|
17812
17827
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
@@ -17820,7 +17835,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
17820
17835
|
__pyx_t_1 = 0;
|
17821
17836
|
goto __pyx_L0;
|
17822
17837
|
|
17823
|
-
/* "../../../../../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
|
17824
17839
|
* ctypedef long double complex clongdouble_t
|
17825
17840
|
*
|
17826
17841
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -17839,7 +17854,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
17839
17854
|
return __pyx_r;
|
17840
17855
|
}
|
17841
17856
|
|
17842
|
-
/* "../../../../../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
|
17843
17858
|
* return PyArray_MultiIterNew(1, <void*>a)
|
17844
17859
|
*
|
17845
17860
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -17856,7 +17871,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
17856
17871
|
int __pyx_clineno = 0;
|
17857
17872
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
17858
17873
|
|
17859
|
-
/* "../../../../../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
|
17860
17875
|
*
|
17861
17876
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
17862
17877
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
@@ -17870,7 +17885,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
17870
17885
|
__pyx_t_1 = 0;
|
17871
17886
|
goto __pyx_L0;
|
17872
17887
|
|
17873
|
-
/* "../../../../../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
|
17874
17889
|
* return PyArray_MultiIterNew(1, <void*>a)
|
17875
17890
|
*
|
17876
17891
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -17889,7 +17904,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
17889
17904
|
return __pyx_r;
|
17890
17905
|
}
|
17891
17906
|
|
17892
|
-
/* "../../../../../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
|
17893
17908
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
17894
17909
|
*
|
17895
17910
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -17906,7 +17921,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
17906
17921
|
int __pyx_clineno = 0;
|
17907
17922
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
17908
17923
|
|
17909
|
-
/* "../../../../../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
|
17910
17925
|
*
|
17911
17926
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
17912
17927
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
@@ -17920,7 +17935,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
17920
17935
|
__pyx_t_1 = 0;
|
17921
17936
|
goto __pyx_L0;
|
17922
17937
|
|
17923
|
-
/* "../../../../../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
|
17924
17939
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
17925
17940
|
*
|
17926
17941
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -17939,7 +17954,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
17939
17954
|
return __pyx_r;
|
17940
17955
|
}
|
17941
17956
|
|
17942
|
-
/* "../../../../../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
|
17943
17958
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
17944
17959
|
*
|
17945
17960
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -17956,7 +17971,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
17956
17971
|
int __pyx_clineno = 0;
|
17957
17972
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
17958
17973
|
|
17959
|
-
/* "../../../../../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
|
17960
17975
|
*
|
17961
17976
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
17962
17977
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
@@ -17970,7 +17985,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
17970
17985
|
__pyx_t_1 = 0;
|
17971
17986
|
goto __pyx_L0;
|
17972
17987
|
|
17973
|
-
/* "../../../../../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
|
17974
17989
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
17975
17990
|
*
|
17976
17991
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -17989,7 +18004,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
17989
18004
|
return __pyx_r;
|
17990
18005
|
}
|
17991
18006
|
|
17992
|
-
/* "../../../../../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
|
17993
18008
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
17994
18009
|
*
|
17995
18010
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -18006,7 +18021,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18006
18021
|
int __pyx_clineno = 0;
|
18007
18022
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
18008
18023
|
|
18009
|
-
/* "../../../../../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
|
18010
18025
|
*
|
18011
18026
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
18012
18027
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
@@ -18020,7 +18035,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18020
18035
|
__pyx_t_1 = 0;
|
18021
18036
|
goto __pyx_L0;
|
18022
18037
|
|
18023
|
-
/* "../../../../../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
|
18024
18039
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
18025
18040
|
*
|
18026
18041
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -18039,7 +18054,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
18039
18054
|
return __pyx_r;
|
18040
18055
|
}
|
18041
18056
|
|
18042
|
-
/* "../../../../../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
|
18043
18058
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
18044
18059
|
*
|
18045
18060
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -18054,7 +18069,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18054
18069
|
PyObject *__pyx_t_2;
|
18055
18070
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
18056
18071
|
|
18057
|
-
/* "../../../../../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
|
18058
18073
|
*
|
18059
18074
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18060
18075
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -18064,7 +18079,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18064
18079
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
18065
18080
|
if (__pyx_t_1) {
|
18066
18081
|
|
18067
|
-
/* "../../../../../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
|
18068
18083
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18069
18084
|
* if PyDataType_HASSUBARRAY(d):
|
18070
18085
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
@@ -18077,7 +18092,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18077
18092
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
18078
18093
|
goto __pyx_L0;
|
18079
18094
|
|
18080
|
-
/* "../../../../../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
|
18081
18096
|
*
|
18082
18097
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
18083
18098
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -18086,7 +18101,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18086
18101
|
*/
|
18087
18102
|
}
|
18088
18103
|
|
18089
|
-
/* "../../../../../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
|
18090
18105
|
* return <tuple>d.subarray.shape
|
18091
18106
|
* else:
|
18092
18107
|
* return () # <<<<<<<<<<<<<<
|
@@ -18100,7 +18115,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18100
18115
|
goto __pyx_L0;
|
18101
18116
|
}
|
18102
18117
|
|
18103
|
-
/* "../../../../../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
|
18104
18119
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
18105
18120
|
*
|
18106
18121
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -18115,7 +18130,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
18115
18130
|
return __pyx_r;
|
18116
18131
|
}
|
18117
18132
|
|
18118
|
-
/* "../../../../../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
|
18119
18134
|
* int _import_umath() except -1
|
18120
18135
|
*
|
18121
18136
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -18129,7 +18144,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18129
18144
|
const char *__pyx_filename = NULL;
|
18130
18145
|
int __pyx_clineno = 0;
|
18131
18146
|
|
18132
|
-
/* "../../../../../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
|
18133
18148
|
*
|
18134
18149
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
18135
18150
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
@@ -18138,7 +18153,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18138
18153
|
*/
|
18139
18154
|
Py_INCREF(__pyx_v_base);
|
18140
18155
|
|
18141
|
-
/* "../../../../../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
|
18142
18157
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
18143
18158
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
18144
18159
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
@@ -18147,7 +18162,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18147
18162
|
*/
|
18148
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)
|
18149
18164
|
|
18150
|
-
/* "../../../../../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
|
18151
18166
|
* int _import_umath() except -1
|
18152
18167
|
*
|
18153
18168
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -18162,7 +18177,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
18162
18177
|
__pyx_L0:;
|
18163
18178
|
}
|
18164
18179
|
|
18165
|
-
/* "../../../../../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
|
18166
18181
|
* PyArray_SetBaseObject(arr, base)
|
18167
18182
|
*
|
18168
18183
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -18177,7 +18192,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18177
18192
|
int __pyx_t_1;
|
18178
18193
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
18179
18194
|
|
18180
|
-
/* "../../../../../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
|
18181
18196
|
*
|
18182
18197
|
* cdef inline object get_array_base(ndarray arr):
|
18183
18198
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
@@ -18186,7 +18201,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18186
18201
|
*/
|
18187
18202
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
18188
18203
|
|
18189
|
-
/* "../../../../../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
|
18190
18205
|
* cdef inline object get_array_base(ndarray arr):
|
18191
18206
|
* base = PyArray_BASE(arr)
|
18192
18207
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -18196,7 +18211,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18196
18211
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
18197
18212
|
if (__pyx_t_1) {
|
18198
18213
|
|
18199
|
-
/* "../../../../../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
|
18200
18215
|
* base = PyArray_BASE(arr)
|
18201
18216
|
* if base is NULL:
|
18202
18217
|
* return None # <<<<<<<<<<<<<<
|
@@ -18207,7 +18222,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18207
18222
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
18208
18223
|
goto __pyx_L0;
|
18209
18224
|
|
18210
|
-
/* "../../../../../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
|
18211
18226
|
* cdef inline object get_array_base(ndarray arr):
|
18212
18227
|
* base = PyArray_BASE(arr)
|
18213
18228
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -18216,7 +18231,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18216
18231
|
*/
|
18217
18232
|
}
|
18218
18233
|
|
18219
|
-
/* "../../../../../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
|
18220
18235
|
* if base is NULL:
|
18221
18236
|
* return None
|
18222
18237
|
* return <object>base # <<<<<<<<<<<<<<
|
@@ -18228,7 +18243,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18228
18243
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
18229
18244
|
goto __pyx_L0;
|
18230
18245
|
|
18231
|
-
/* "../../../../../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
|
18232
18247
|
* PyArray_SetBaseObject(arr, base)
|
18233
18248
|
*
|
18234
18249
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -18243,7 +18258,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
18243
18258
|
return __pyx_r;
|
18244
18259
|
}
|
18245
18260
|
|
18246
|
-
/* "../../../../../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
|
18247
18262
|
* # Versions of the import_* functions which are more suitable for
|
18248
18263
|
* # Cython code.
|
18249
18264
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -18270,7 +18285,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18270
18285
|
int __pyx_clineno = 0;
|
18271
18286
|
__Pyx_RefNannySetupContext("import_array", 0);
|
18272
18287
|
|
18273
|
-
/* "../../../../../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
|
18274
18289
|
* # Cython code.
|
18275
18290
|
* cdef inline int import_array() except -1:
|
18276
18291
|
* try: # <<<<<<<<<<<<<<
|
@@ -18286,7 +18301,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18286
18301
|
__Pyx_XGOTREF(__pyx_t_3);
|
18287
18302
|
/*try:*/ {
|
18288
18303
|
|
18289
|
-
/* "../../../../../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
|
18290
18305
|
* cdef inline int import_array() except -1:
|
18291
18306
|
* try:
|
18292
18307
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
@@ -18295,7 +18310,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18295
18310
|
*/
|
18296
18311
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1008, __pyx_L3_error)
|
18297
18312
|
|
18298
|
-
/* "../../../../../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
|
18299
18314
|
* # Cython code.
|
18300
18315
|
* cdef inline int import_array() except -1:
|
18301
18316
|
* try: # <<<<<<<<<<<<<<
|
@@ -18309,7 +18324,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18309
18324
|
goto __pyx_L8_try_end;
|
18310
18325
|
__pyx_L3_error:;
|
18311
18326
|
|
18312
|
-
/* "../../../../../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
|
18313
18328
|
* try:
|
18314
18329
|
* __pyx_import_array()
|
18315
18330
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18324,7 +18339,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18324
18339
|
__Pyx_XGOTREF(__pyx_t_6);
|
18325
18340
|
__Pyx_XGOTREF(__pyx_t_7);
|
18326
18341
|
|
18327
|
-
/* "../../../../../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
|
18328
18343
|
* __pyx_import_array()
|
18329
18344
|
* except Exception:
|
18330
18345
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
@@ -18349,7 +18364,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18349
18364
|
}
|
18350
18365
|
goto __pyx_L5_except_error;
|
18351
18366
|
|
18352
|
-
/* "../../../../../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
|
18353
18368
|
* # Cython code.
|
18354
18369
|
* cdef inline int import_array() except -1:
|
18355
18370
|
* try: # <<<<<<<<<<<<<<
|
@@ -18365,7 +18380,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18365
18380
|
__pyx_L8_try_end:;
|
18366
18381
|
}
|
18367
18382
|
|
18368
|
-
/* "../../../../../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
|
18369
18384
|
* # Versions of the import_* functions which are more suitable for
|
18370
18385
|
* # Cython code.
|
18371
18386
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -18390,7 +18405,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
18390
18405
|
return __pyx_r;
|
18391
18406
|
}
|
18392
18407
|
|
18393
|
-
/* "../../../../../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
|
18394
18409
|
* raise ImportError("numpy._core.multiarray failed to import")
|
18395
18410
|
*
|
18396
18411
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -18417,7 +18432,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18417
18432
|
int __pyx_clineno = 0;
|
18418
18433
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
18419
18434
|
|
18420
|
-
/* "../../../../../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
|
18421
18436
|
*
|
18422
18437
|
* cdef inline int import_umath() except -1:
|
18423
18438
|
* try: # <<<<<<<<<<<<<<
|
@@ -18433,7 +18448,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18433
18448
|
__Pyx_XGOTREF(__pyx_t_3);
|
18434
18449
|
/*try:*/ {
|
18435
18450
|
|
18436
|
-
/* "../../../../../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
|
18437
18452
|
* cdef inline int import_umath() except -1:
|
18438
18453
|
* try:
|
18439
18454
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -18442,7 +18457,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18442
18457
|
*/
|
18443
18458
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1014, __pyx_L3_error)
|
18444
18459
|
|
18445
|
-
/* "../../../../../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
|
18446
18461
|
*
|
18447
18462
|
* cdef inline int import_umath() except -1:
|
18448
18463
|
* try: # <<<<<<<<<<<<<<
|
@@ -18456,7 +18471,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18456
18471
|
goto __pyx_L8_try_end;
|
18457
18472
|
__pyx_L3_error:;
|
18458
18473
|
|
18459
|
-
/* "../../../../../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
|
18460
18475
|
* try:
|
18461
18476
|
* _import_umath()
|
18462
18477
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18471,7 +18486,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18471
18486
|
__Pyx_XGOTREF(__pyx_t_6);
|
18472
18487
|
__Pyx_XGOTREF(__pyx_t_7);
|
18473
18488
|
|
18474
|
-
/* "../../../../../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
|
18475
18490
|
* _import_umath()
|
18476
18491
|
* except Exception:
|
18477
18492
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -18496,7 +18511,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18496
18511
|
}
|
18497
18512
|
goto __pyx_L5_except_error;
|
18498
18513
|
|
18499
|
-
/* "../../../../../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
|
18500
18515
|
*
|
18501
18516
|
* cdef inline int import_umath() except -1:
|
18502
18517
|
* try: # <<<<<<<<<<<<<<
|
@@ -18512,7 +18527,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18512
18527
|
__pyx_L8_try_end:;
|
18513
18528
|
}
|
18514
18529
|
|
18515
|
-
/* "../../../../../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
|
18516
18531
|
* raise ImportError("numpy._core.multiarray failed to import")
|
18517
18532
|
*
|
18518
18533
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -18537,7 +18552,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
18537
18552
|
return __pyx_r;
|
18538
18553
|
}
|
18539
18554
|
|
18540
|
-
/* "../../../../../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
|
18541
18556
|
* raise ImportError("numpy._core.umath failed to import")
|
18542
18557
|
*
|
18543
18558
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -18564,7 +18579,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18564
18579
|
int __pyx_clineno = 0;
|
18565
18580
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
18566
18581
|
|
18567
|
-
/* "../../../../../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
|
18568
18583
|
*
|
18569
18584
|
* cdef inline int import_ufunc() except -1:
|
18570
18585
|
* try: # <<<<<<<<<<<<<<
|
@@ -18580,7 +18595,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18580
18595
|
__Pyx_XGOTREF(__pyx_t_3);
|
18581
18596
|
/*try:*/ {
|
18582
18597
|
|
18583
|
-
/* "../../../../../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
|
18584
18599
|
* cdef inline int import_ufunc() except -1:
|
18585
18600
|
* try:
|
18586
18601
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -18589,7 +18604,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18589
18604
|
*/
|
18590
18605
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1020, __pyx_L3_error)
|
18591
18606
|
|
18592
|
-
/* "../../../../../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
|
18593
18608
|
*
|
18594
18609
|
* cdef inline int import_ufunc() except -1:
|
18595
18610
|
* try: # <<<<<<<<<<<<<<
|
@@ -18603,7 +18618,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18603
18618
|
goto __pyx_L8_try_end;
|
18604
18619
|
__pyx_L3_error:;
|
18605
18620
|
|
18606
|
-
/* "../../../../../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
|
18607
18622
|
* try:
|
18608
18623
|
* _import_umath()
|
18609
18624
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -18618,7 +18633,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18618
18633
|
__Pyx_XGOTREF(__pyx_t_6);
|
18619
18634
|
__Pyx_XGOTREF(__pyx_t_7);
|
18620
18635
|
|
18621
|
-
/* "../../../../../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
|
18622
18637
|
* _import_umath()
|
18623
18638
|
* except Exception:
|
18624
18639
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -18643,7 +18658,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18643
18658
|
}
|
18644
18659
|
goto __pyx_L5_except_error;
|
18645
18660
|
|
18646
|
-
/* "../../../../../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
|
18647
18662
|
*
|
18648
18663
|
* cdef inline int import_ufunc() except -1:
|
18649
18664
|
* try: # <<<<<<<<<<<<<<
|
@@ -18659,7 +18674,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18659
18674
|
__pyx_L8_try_end:;
|
18660
18675
|
}
|
18661
18676
|
|
18662
|
-
/* "../../../../../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
|
18663
18678
|
* raise ImportError("numpy._core.umath failed to import")
|
18664
18679
|
*
|
18665
18680
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -18684,7 +18699,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18684
18699
|
return __pyx_r;
|
18685
18700
|
}
|
18686
18701
|
|
18687
|
-
/* "../../../../../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
|
18688
18703
|
*
|
18689
18704
|
*
|
18690
18705
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18695,7 +18710,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
18695
18710
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
18696
18711
|
int __pyx_r;
|
18697
18712
|
|
18698
|
-
/* "../../../../../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
|
18699
18714
|
* bool
|
18700
18715
|
* """
|
18701
18716
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
@@ -18705,7 +18720,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18705
18720
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
18706
18721
|
goto __pyx_L0;
|
18707
18722
|
|
18708
|
-
/* "../../../../../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
|
18709
18724
|
*
|
18710
18725
|
*
|
18711
18726
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18718,7 +18733,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18718
18733
|
return __pyx_r;
|
18719
18734
|
}
|
18720
18735
|
|
18721
|
-
/* "../../../../../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
|
18722
18737
|
*
|
18723
18738
|
*
|
18724
18739
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18729,7 +18744,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
18729
18744
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
18730
18745
|
int __pyx_r;
|
18731
18746
|
|
18732
|
-
/* "../../../../../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
|
18733
18748
|
* bool
|
18734
18749
|
* """
|
18735
18750
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
@@ -18739,7 +18754,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18739
18754
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
18740
18755
|
goto __pyx_L0;
|
18741
18756
|
|
18742
|
-
/* "../../../../../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
|
18743
18758
|
*
|
18744
18759
|
*
|
18745
18760
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -18752,7 +18767,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18752
18767
|
return __pyx_r;
|
18753
18768
|
}
|
18754
18769
|
|
18755
|
-
/* "../../../../../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
|
18756
18771
|
*
|
18757
18772
|
*
|
18758
18773
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18763,7 +18778,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
18763
18778
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
18764
18779
|
npy_datetime __pyx_r;
|
18765
18780
|
|
18766
|
-
/* "../../../../../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
|
18767
18782
|
* also needed. That can be found using `get_datetime64_unit`.
|
18768
18783
|
* """
|
18769
18784
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -18773,7 +18788,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
18773
18788
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
18774
18789
|
goto __pyx_L0;
|
18775
18790
|
|
18776
|
-
/* "../../../../../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
|
18777
18792
|
*
|
18778
18793
|
*
|
18779
18794
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18786,7 +18801,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
18786
18801
|
return __pyx_r;
|
18787
18802
|
}
|
18788
18803
|
|
18789
|
-
/* "../../../../../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
|
18790
18805
|
*
|
18791
18806
|
*
|
18792
18807
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18797,7 +18812,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
18797
18812
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
18798
18813
|
npy_timedelta __pyx_r;
|
18799
18814
|
|
18800
|
-
/* "../../../../../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
|
18801
18816
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
18802
18817
|
* """
|
18803
18818
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -18807,7 +18822,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
18807
18822
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
18808
18823
|
goto __pyx_L0;
|
18809
18824
|
|
18810
|
-
/* "../../../../../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
|
18811
18826
|
*
|
18812
18827
|
*
|
18813
18828
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18820,7 +18835,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
18820
18835
|
return __pyx_r;
|
18821
18836
|
}
|
18822
18837
|
|
18823
|
-
/* "../../../../../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
|
18824
18839
|
*
|
18825
18840
|
*
|
18826
18841
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18831,7 +18846,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
18831
18846
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
18832
18847
|
NPY_DATETIMEUNIT __pyx_r;
|
18833
18848
|
|
18834
|
-
/* "../../../../../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
|
18835
18850
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
18836
18851
|
* """
|
18837
18852
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
@@ -18841,7 +18856,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
18841
18856
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
18842
18857
|
goto __pyx_L0;
|
18843
18858
|
|
18844
|
-
/* "../../../../../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
|
18845
18860
|
*
|
18846
18861
|
*
|
18847
18862
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -18854,7 +18869,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
18854
18869
|
return __pyx_r;
|
18855
18870
|
}
|
18856
18871
|
|
18857
|
-
/* "edsger/path_tracking.pyx":
|
18872
|
+
/* "edsger/path_tracking.pyx":28
|
18858
18873
|
*
|
18859
18874
|
*
|
18860
18875
|
* cpdef cnp.ndarray compute_path(cnp.uint32_t[::1] path_links, int vertex_idx): # <<<<<<<<<<<<<<
|
@@ -18887,7 +18902,7 @@ static PyArrayObject *__pyx_f_6edsger_13path_tracking_compute_path(__Pyx_memview
|
|
18887
18902
|
int __pyx_clineno = 0;
|
18888
18903
|
__Pyx_RefNannySetupContext("compute_path", 0);
|
18889
18904
|
|
18890
|
-
/* "edsger/path_tracking.pyx":
|
18905
|
+
/* "edsger/path_tracking.pyx":43
|
18891
18906
|
* cdef int path_length
|
18892
18907
|
*
|
18893
18908
|
* path_length = _compute_path_first_pass(path_links, vertex_idx) # <<<<<<<<<<<<<<
|
@@ -18896,7 +18911,7 @@ static PyArrayObject *__pyx_f_6edsger_13path_tracking_compute_path(__Pyx_memview
|
|
18896
18911
|
*/
|
18897
18912
|
__pyx_v_path_length = __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__pyx_v_path_links, __pyx_v_vertex_idx);
|
18898
18913
|
|
18899
|
-
/* "edsger/path_tracking.pyx":
|
18914
|
+
/* "edsger/path_tracking.pyx":44
|
18900
18915
|
*
|
18901
18916
|
* path_length = _compute_path_first_pass(path_links, vertex_idx)
|
18902
18917
|
* path_vertices = np.empty(path_length, dtype=np.uint32) # <<<<<<<<<<<<<<
|
@@ -18904,16 +18919,16 @@ static PyArrayObject *__pyx_f_6edsger_13path_tracking_compute_path(__Pyx_memview
|
|
18904
18919
|
*
|
18905
18920
|
*/
|
18906
18921
|
__pyx_t_2 = NULL;
|
18907
|
-
__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)
|
18908
18923
|
__Pyx_GOTREF(__pyx_t_3);
|
18909
|
-
__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)
|
18910
18925
|
__Pyx_GOTREF(__pyx_t_4);
|
18911
18926
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
18912
|
-
__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)
|
18913
18928
|
__Pyx_GOTREF(__pyx_t_3);
|
18914
|
-
__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)
|
18915
18930
|
__Pyx_GOTREF(__pyx_t_5);
|
18916
|
-
__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)
|
18917
18932
|
__Pyx_GOTREF(__pyx_t_6);
|
18918
18933
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
18919
18934
|
__pyx_t_7 = 1;
|
@@ -18930,34 +18945,34 @@ static PyArrayObject *__pyx_f_6edsger_13path_tracking_compute_path(__Pyx_memview
|
|
18930
18945
|
#endif
|
18931
18946
|
{
|
18932
18947
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_2, __pyx_t_3};
|
18933
|
-
__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)
|
18934
18949
|
__Pyx_GOTREF(__pyx_t_5);
|
18935
|
-
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)
|
18936
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);
|
18937
18952
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
18938
18953
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
18939
18954
|
__Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
|
18940
18955
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
18941
18956
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
18942
|
-
if (unlikely(!__pyx_t_1)) __PYX_ERR(0,
|
18957
|
+
if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 44, __pyx_L1_error)
|
18943
18958
|
__Pyx_GOTREF(__pyx_t_1);
|
18944
18959
|
}
|
18945
18960
|
__pyx_v_path_vertices = __pyx_t_1;
|
18946
18961
|
__pyx_t_1 = 0;
|
18947
18962
|
|
18948
|
-
/* "edsger/path_tracking.pyx":
|
18963
|
+
/* "edsger/path_tracking.pyx":45
|
18949
18964
|
* path_length = _compute_path_first_pass(path_links, vertex_idx)
|
18950
18965
|
* path_vertices = np.empty(path_length, dtype=np.uint32)
|
18951
18966
|
* _compute_path_second_pass(path_links, path_vertices, vertex_idx) # <<<<<<<<<<<<<<
|
18952
18967
|
*
|
18953
18968
|
* return path_vertices
|
18954
18969
|
*/
|
18955
|
-
__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)
|
18956
18971
|
__pyx_f_6edsger_13path_tracking__compute_path_second_pass(__pyx_v_path_links, __pyx_t_8, __pyx_v_vertex_idx);
|
18957
18972
|
__PYX_XCLEAR_MEMVIEW(&__pyx_t_8, 1);
|
18958
18973
|
__pyx_t_8.memview = NULL; __pyx_t_8.data = NULL;
|
18959
18974
|
|
18960
|
-
/* "edsger/path_tracking.pyx":
|
18975
|
+
/* "edsger/path_tracking.pyx":47
|
18961
18976
|
* _compute_path_second_pass(path_links, path_vertices, vertex_idx)
|
18962
18977
|
*
|
18963
18978
|
* return path_vertices # <<<<<<<<<<<<<<
|
@@ -18965,12 +18980,12 @@ static PyArrayObject *__pyx_f_6edsger_13path_tracking_compute_path(__Pyx_memview
|
|
18965
18980
|
*
|
18966
18981
|
*/
|
18967
18982
|
__Pyx_XDECREF((PyObject *)__pyx_r);
|
18968
|
-
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)
|
18969
18984
|
__Pyx_INCREF(__pyx_v_path_vertices);
|
18970
18985
|
__pyx_r = ((PyArrayObject *)__pyx_v_path_vertices);
|
18971
18986
|
goto __pyx_L0;
|
18972
18987
|
|
18973
|
-
/* "edsger/path_tracking.pyx":
|
18988
|
+
/* "edsger/path_tracking.pyx":28
|
18974
18989
|
*
|
18975
18990
|
*
|
18976
18991
|
* cpdef cnp.ndarray compute_path(cnp.uint32_t[::1] path_links, int vertex_idx): # <<<<<<<<<<<<<<
|
@@ -19037,39 +19052,39 @@ PyObject *__pyx_args, PyObject *__pyx_kwds
|
|
19037
19052
|
{
|
19038
19053
|
PyObject ** const __pyx_pyargnames[] = {&__pyx_mstate_global->__pyx_n_u_path_links,&__pyx_mstate_global->__pyx_n_u_vertex_idx,0};
|
19039
19054
|
const Py_ssize_t __pyx_kwds_len = (__pyx_kwds) ? __Pyx_NumKwargs_FASTCALL(__pyx_kwds) : 0;
|
19040
|
-
if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0,
|
19055
|
+
if (unlikely(__pyx_kwds_len) < 0) __PYX_ERR(0, 28, __pyx_L3_error)
|
19041
19056
|
if (__pyx_kwds_len > 0) {
|
19042
19057
|
switch (__pyx_nargs) {
|
19043
19058
|
case 2:
|
19044
19059
|
values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
|
19045
|
-
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)
|
19046
19061
|
CYTHON_FALLTHROUGH;
|
19047
19062
|
case 1:
|
19048
19063
|
values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
|
19049
|
-
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)
|
19050
19065
|
CYTHON_FALLTHROUGH;
|
19051
19066
|
case 0: break;
|
19052
19067
|
default: goto __pyx_L5_argtuple_error;
|
19053
19068
|
}
|
19054
19069
|
const Py_ssize_t kwd_pos_args = __pyx_nargs;
|
19055
|
-
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)
|
19056
19071
|
for (Py_ssize_t i = __pyx_nargs; i < 2; i++) {
|
19057
|
-
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) }
|
19058
19073
|
}
|
19059
19074
|
} else if (unlikely(__pyx_nargs != 2)) {
|
19060
19075
|
goto __pyx_L5_argtuple_error;
|
19061
19076
|
} else {
|
19062
19077
|
values[0] = __Pyx_ArgRef_FASTCALL(__pyx_args, 0);
|
19063
|
-
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)
|
19064
19079
|
values[1] = __Pyx_ArgRef_FASTCALL(__pyx_args, 1);
|
19065
|
-
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)
|
19066
19081
|
}
|
19067
|
-
__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,
|
19068
|
-
__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)
|
19069
19084
|
}
|
19070
19085
|
goto __pyx_L6_skip;
|
19071
19086
|
__pyx_L5_argtuple_error:;
|
19072
|
-
__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)
|
19073
19088
|
__pyx_L6_skip:;
|
19074
19089
|
goto __pyx_L4_argument_unpacking_done;
|
19075
19090
|
__pyx_L3_error:;
|
@@ -19101,7 +19116,8 @@ static PyObject *__pyx_pf_6edsger_13path_tracking_compute_path(CYTHON_UNUSED PyO
|
|
19101
19116
|
int __pyx_clineno = 0;
|
19102
19117
|
__Pyx_RefNannySetupContext("compute_path", 0);
|
19103
19118
|
__Pyx_XDECREF(__pyx_r);
|
19104
|
-
|
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)
|
19105
19121
|
__Pyx_GOTREF(__pyx_t_1);
|
19106
19122
|
__pyx_r = __pyx_t_1;
|
19107
19123
|
__pyx_t_1 = 0;
|
@@ -19118,7 +19134,7 @@ static PyObject *__pyx_pf_6edsger_13path_tracking_compute_path(CYTHON_UNUSED PyO
|
|
19118
19134
|
return __pyx_r;
|
19119
19135
|
}
|
19120
19136
|
|
19121
|
-
/* "edsger/path_tracking.pyx":
|
19137
|
+
/* "edsger/path_tracking.pyx":50
|
19122
19138
|
*
|
19123
19139
|
*
|
19124
19140
|
* cdef int _compute_path_first_pass( # <<<<<<<<<<<<<<
|
@@ -19133,8 +19149,13 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19133
19149
|
int __pyx_r;
|
19134
19150
|
int __pyx_t_1;
|
19135
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;
|
19136
19157
|
|
19137
|
-
/* "edsger/path_tracking.pyx":
|
19158
|
+
/* "edsger/path_tracking.pyx":62
|
19138
19159
|
*
|
19139
19160
|
* # initialization
|
19140
19161
|
* j = <size_t>vertex_idx # <<<<<<<<<<<<<<
|
@@ -19143,7 +19164,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19143
19164
|
*/
|
19144
19165
|
__pyx_v_j = ((size_t)__pyx_v_vertex_idx);
|
19145
19166
|
|
19146
|
-
/* "edsger/path_tracking.pyx":
|
19167
|
+
/* "edsger/path_tracking.pyx":63
|
19147
19168
|
* # initialization
|
19148
19169
|
* j = <size_t>vertex_idx
|
19149
19170
|
* i = j + 1 # <<<<<<<<<<<<<<
|
@@ -19152,7 +19173,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19152
19173
|
*/
|
19153
19174
|
__pyx_v_i = (__pyx_v_j + 1);
|
19154
19175
|
|
19155
|
-
/* "edsger/path_tracking.pyx":
|
19176
|
+
/* "edsger/path_tracking.pyx":64
|
19156
19177
|
* j = <size_t>vertex_idx
|
19157
19178
|
* i = j + 1
|
19158
19179
|
* k = 0 # <<<<<<<<<<<<<<
|
@@ -19161,7 +19182,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19161
19182
|
*/
|
19162
19183
|
__pyx_v_k = 0;
|
19163
19184
|
|
19164
|
-
/* "edsger/path_tracking.pyx":
|
19185
|
+
/* "edsger/path_tracking.pyx":67
|
19165
19186
|
*
|
19166
19187
|
* # loop
|
19167
19188
|
* while i != j: # <<<<<<<<<<<<<<
|
@@ -19172,7 +19193,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19172
19193
|
__pyx_t_1 = (__pyx_v_i != __pyx_v_j);
|
19173
19194
|
if (!__pyx_t_1) break;
|
19174
19195
|
|
19175
|
-
/* "edsger/path_tracking.pyx":
|
19196
|
+
/* "edsger/path_tracking.pyx":68
|
19176
19197
|
* # loop
|
19177
19198
|
* while i != j:
|
19178
19199
|
* i = j # <<<<<<<<<<<<<<
|
@@ -19181,7 +19202,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19181
19202
|
*/
|
19182
19203
|
__pyx_v_i = __pyx_v_j;
|
19183
19204
|
|
19184
|
-
/* "edsger/path_tracking.pyx":
|
19205
|
+
/* "edsger/path_tracking.pyx":69
|
19185
19206
|
* while i != j:
|
19186
19207
|
* i = j
|
19187
19208
|
* j = <size_t>path_links[j] # <<<<<<<<<<<<<<
|
@@ -19189,9 +19210,15 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19189
19210
|
*
|
19190
19211
|
*/
|
19191
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
|
+
}
|
19192
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)) ))));
|
19193
19220
|
|
19194
|
-
/* "edsger/path_tracking.pyx":
|
19221
|
+
/* "edsger/path_tracking.pyx":70
|
19195
19222
|
* i = j
|
19196
19223
|
* j = <size_t>path_links[j]
|
19197
19224
|
* k += 1 # <<<<<<<<<<<<<<
|
@@ -19201,7 +19228,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19201
19228
|
__pyx_v_k = (__pyx_v_k + 1);
|
19202
19229
|
}
|
19203
19230
|
|
19204
|
-
/* "edsger/path_tracking.pyx":
|
19231
|
+
/* "edsger/path_tracking.pyx":72
|
19205
19232
|
* k += 1
|
19206
19233
|
*
|
19207
19234
|
* return k # <<<<<<<<<<<<<<
|
@@ -19211,7 +19238,7 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19211
19238
|
__pyx_r = __pyx_v_k;
|
19212
19239
|
goto __pyx_L0;
|
19213
19240
|
|
19214
|
-
/* "edsger/path_tracking.pyx":
|
19241
|
+
/* "edsger/path_tracking.pyx":50
|
19215
19242
|
*
|
19216
19243
|
*
|
19217
19244
|
* cdef int _compute_path_first_pass( # <<<<<<<<<<<<<<
|
@@ -19220,11 +19247,16 @@ static int __pyx_f_6edsger_13path_tracking__compute_path_first_pass(__Pyx_memvie
|
|
19220
19247
|
*/
|
19221
19248
|
|
19222
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);
|
19223
19255
|
__pyx_L0:;
|
19224
19256
|
return __pyx_r;
|
19225
19257
|
}
|
19226
19258
|
|
19227
|
-
/* "edsger/path_tracking.pyx":
|
19259
|
+
/* "edsger/path_tracking.pyx":75
|
19228
19260
|
*
|
19229
19261
|
*
|
19230
19262
|
* cdef void _compute_path_second_pass( # <<<<<<<<<<<<<<
|
@@ -19238,8 +19270,13 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19238
19270
|
size_t __pyx_v_k;
|
19239
19271
|
int __pyx_t_1;
|
19240
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;
|
19241
19278
|
|
19242
|
-
/* "edsger/path_tracking.pyx":
|
19279
|
+
/* "edsger/path_tracking.pyx":85
|
19243
19280
|
*
|
19244
19281
|
* # initialization
|
19245
19282
|
* j = <size_t>vertex_idx # <<<<<<<<<<<<<<
|
@@ -19248,7 +19285,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19248
19285
|
*/
|
19249
19286
|
__pyx_v_j = ((size_t)__pyx_v_vertex_idx);
|
19250
19287
|
|
19251
|
-
/* "edsger/path_tracking.pyx":
|
19288
|
+
/* "edsger/path_tracking.pyx":86
|
19252
19289
|
* # initialization
|
19253
19290
|
* j = <size_t>vertex_idx
|
19254
19291
|
* i = j + 1 # <<<<<<<<<<<<<<
|
@@ -19257,7 +19294,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19257
19294
|
*/
|
19258
19295
|
__pyx_v_i = (__pyx_v_j + 1);
|
19259
19296
|
|
19260
|
-
/* "edsger/path_tracking.pyx":
|
19297
|
+
/* "edsger/path_tracking.pyx":87
|
19261
19298
|
* j = <size_t>vertex_idx
|
19262
19299
|
* i = j + 1
|
19263
19300
|
* k = 0 # <<<<<<<<<<<<<<
|
@@ -19266,7 +19303,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19266
19303
|
*/
|
19267
19304
|
__pyx_v_k = 0;
|
19268
19305
|
|
19269
|
-
/* "edsger/path_tracking.pyx":
|
19306
|
+
/* "edsger/path_tracking.pyx":90
|
19270
19307
|
*
|
19271
19308
|
* # loop
|
19272
19309
|
* while i != j: # <<<<<<<<<<<<<<
|
@@ -19277,7 +19314,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19277
19314
|
__pyx_t_1 = (__pyx_v_i != __pyx_v_j);
|
19278
19315
|
if (!__pyx_t_1) break;
|
19279
19316
|
|
19280
|
-
/* "edsger/path_tracking.pyx":
|
19317
|
+
/* "edsger/path_tracking.pyx":91
|
19281
19318
|
* # loop
|
19282
19319
|
* while i != j:
|
19283
19320
|
* i = j # <<<<<<<<<<<<<<
|
@@ -19286,7 +19323,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19286
19323
|
*/
|
19287
19324
|
__pyx_v_i = __pyx_v_j;
|
19288
19325
|
|
19289
|
-
/* "edsger/path_tracking.pyx":
|
19326
|
+
/* "edsger/path_tracking.pyx":92
|
19290
19327
|
* while i != j:
|
19291
19328
|
* i = j
|
19292
19329
|
* path_vertices[k] = j # <<<<<<<<<<<<<<
|
@@ -19294,9 +19331,15 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19294
19331
|
* k += 1
|
19295
19332
|
*/
|
19296
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
|
+
}
|
19297
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;
|
19298
19341
|
|
19299
|
-
/* "edsger/path_tracking.pyx":
|
19342
|
+
/* "edsger/path_tracking.pyx":93
|
19300
19343
|
* i = j
|
19301
19344
|
* path_vertices[k] = j
|
19302
19345
|
* j = <size_t>path_links[j] # <<<<<<<<<<<<<<
|
@@ -19304,9 +19347,15 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19304
19347
|
*
|
19305
19348
|
*/
|
19306
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
|
+
}
|
19307
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)) ))));
|
19308
19357
|
|
19309
|
-
/* "edsger/path_tracking.pyx":
|
19358
|
+
/* "edsger/path_tracking.pyx":94
|
19310
19359
|
* path_vertices[k] = j
|
19311
19360
|
* j = <size_t>path_links[j]
|
19312
19361
|
* k += 1 # <<<<<<<<<<<<<<
|
@@ -19316,7 +19365,7 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19316
19365
|
__pyx_v_k = (__pyx_v_k + 1);
|
19317
19366
|
}
|
19318
19367
|
|
19319
|
-
/* "edsger/path_tracking.pyx":
|
19368
|
+
/* "edsger/path_tracking.pyx":75
|
19320
19369
|
*
|
19321
19370
|
*
|
19322
19371
|
* cdef void _compute_path_second_pass( # <<<<<<<<<<<<<<
|
@@ -19325,6 +19374,12 @@ static void __pyx_f_6edsger_13path_tracking__compute_path_second_pass(__Pyx_memv
|
|
19325
19374
|
*/
|
19326
19375
|
|
19327
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:;
|
19328
19383
|
}
|
19329
19384
|
/* #### Code section: module_exttypes ### */
|
19330
19385
|
static struct __pyx_vtabstruct_array __pyx_vtable_array;
|
@@ -20411,153 +20466,153 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
20411
20466
|
/*--- Type import code ---*/
|
20412
20467
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
|
20413
20468
|
__Pyx_GOTREF(__pyx_t_1);
|
20414
|
-
__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",
|
20415
20470
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20416
|
-
sizeof(PyTypeObject),
|
20471
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyTypeObject),
|
20417
20472
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20418
20473
|
0, 0,
|
20419
20474
|
#else
|
20420
|
-
sizeof(PyHeapTypeObject),
|
20475
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyHeapTypeObject),
|
20421
20476
|
#endif
|
20422
|
-
|
20477
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
|
20423
20478
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
20424
20479
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 228, __pyx_L1_error)
|
20425
20480
|
__Pyx_GOTREF(__pyx_t_1);
|
20426
|
-
__pyx_mstate->__pyx_ptype_5numpy_dtype =
|
20481
|
+
__pyx_mstate->__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "dtype",
|
20427
20482
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20428
|
-
sizeof(PyArray_Descr),
|
20483
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
20429
20484
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20430
|
-
sizeof(PyArray_Descr),
|
20485
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
20431
20486
|
#else
|
20432
|
-
sizeof(PyArray_Descr),
|
20487
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
20433
20488
|
#endif
|
20434
|
-
|
20435
|
-
__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",
|
20436
20491
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20437
|
-
sizeof(PyArrayIterObject),
|
20492
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
20438
20493
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20439
|
-
sizeof(PyArrayIterObject),
|
20494
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
20440
20495
|
#else
|
20441
|
-
sizeof(PyArrayIterObject),
|
20496
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
20442
20497
|
#endif
|
20443
|
-
|
20444
|
-
__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",
|
20445
20500
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20446
|
-
sizeof(PyArrayMultiIterObject),
|
20501
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
20447
20502
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20448
|
-
sizeof(PyArrayMultiIterObject),
|
20503
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
20449
20504
|
#else
|
20450
|
-
sizeof(PyArrayMultiIterObject),
|
20505
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
20451
20506
|
#endif
|
20452
|
-
|
20453
|
-
__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",
|
20454
20509
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20455
|
-
sizeof(PyArrayObject),
|
20510
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
20456
20511
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20457
|
-
sizeof(PyArrayObject),
|
20512
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
20458
20513
|
#else
|
20459
|
-
sizeof(PyArrayObject),
|
20514
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
20460
20515
|
#endif
|
20461
|
-
|
20462
|
-
__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",
|
20463
20518
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20464
|
-
sizeof(PyObject),
|
20519
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20465
20520
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20466
|
-
sizeof(PyObject),
|
20521
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20467
20522
|
#else
|
20468
|
-
sizeof(PyObject),
|
20523
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20469
20524
|
#endif
|
20470
|
-
|
20471
|
-
__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",
|
20472
20527
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20473
|
-
sizeof(PyObject),
|
20528
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20474
20529
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20475
|
-
sizeof(PyObject),
|
20530
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20476
20531
|
#else
|
20477
|
-
sizeof(PyObject),
|
20532
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20478
20533
|
#endif
|
20479
|
-
|
20480
|
-
__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",
|
20481
20536
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20482
|
-
sizeof(PyObject),
|
20537
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20483
20538
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20484
|
-
sizeof(PyObject),
|
20539
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20485
20540
|
#else
|
20486
|
-
sizeof(PyObject),
|
20541
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20487
20542
|
#endif
|
20488
|
-
|
20489
|
-
__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",
|
20490
20545
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20491
|
-
sizeof(PyObject),
|
20546
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20492
20547
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20493
|
-
sizeof(PyObject),
|
20548
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20494
20549
|
#else
|
20495
|
-
sizeof(PyObject),
|
20550
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20496
20551
|
#endif
|
20497
|
-
|
20498
|
-
__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",
|
20499
20554
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20500
|
-
sizeof(PyObject),
|
20555
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20501
20556
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20502
|
-
sizeof(PyObject),
|
20557
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20503
20558
|
#else
|
20504
|
-
sizeof(PyObject),
|
20559
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20505
20560
|
#endif
|
20506
|
-
|
20507
|
-
__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",
|
20508
20563
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20509
|
-
sizeof(PyObject),
|
20564
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20510
20565
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20511
|
-
sizeof(PyObject),
|
20566
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20512
20567
|
#else
|
20513
|
-
sizeof(PyObject),
|
20568
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20514
20569
|
#endif
|
20515
|
-
|
20516
|
-
__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",
|
20517
20572
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20518
|
-
sizeof(PyObject),
|
20573
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20519
20574
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20520
|
-
sizeof(PyObject),
|
20575
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20521
20576
|
#else
|
20522
|
-
sizeof(PyObject),
|
20577
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20523
20578
|
#endif
|
20524
|
-
|
20525
|
-
__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",
|
20526
20581
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20527
|
-
sizeof(PyObject),
|
20582
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20528
20583
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20529
|
-
sizeof(PyObject),
|
20584
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20530
20585
|
#else
|
20531
|
-
sizeof(PyObject),
|
20586
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20532
20587
|
#endif
|
20533
|
-
|
20534
|
-
__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",
|
20535
20590
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20536
|
-
sizeof(PyObject),
|
20591
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20537
20592
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20538
|
-
sizeof(PyObject),
|
20593
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20539
20594
|
#else
|
20540
|
-
sizeof(PyObject),
|
20595
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20541
20596
|
#endif
|
20542
|
-
|
20543
|
-
__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",
|
20544
20599
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20545
|
-
sizeof(PyObject),
|
20600
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20546
20601
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20547
|
-
sizeof(PyObject),
|
20602
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20548
20603
|
#else
|
20549
|
-
sizeof(PyObject),
|
20604
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
20550
20605
|
#endif
|
20551
|
-
|
20552
|
-
__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",
|
20553
20608
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
20554
|
-
sizeof(PyUFuncObject),
|
20609
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
20555
20610
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
20556
|
-
sizeof(PyUFuncObject),
|
20611
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
20557
20612
|
#else
|
20558
|
-
sizeof(PyUFuncObject),
|
20613
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
20559
20614
|
#endif
|
20560
|
-
|
20615
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 907, __pyx_L1_error)
|
20561
20616
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
20562
20617
|
__Pyx_RefNannyFinishContext();
|
20563
20618
|
return 0;
|
@@ -21406,28 +21461,28 @@ __Pyx_RefNannySetupContext("PyInit_path_tracking", 0);
|
|
21406
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)
|
21407
21462
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
21408
21463
|
|
21409
|
-
/* "edsger/path_tracking.pyx":
|
21410
|
-
*
|
21464
|
+
/* "edsger/path_tracking.pyx":24
|
21465
|
+
* # cython: initializedcheck=False
|
21411
21466
|
*
|
21412
21467
|
* import numpy as np # <<<<<<<<<<<<<<
|
21413
21468
|
* cimport numpy as cnp
|
21414
21469
|
*
|
21415
21470
|
*/
|
21416
|
-
__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)
|
21417
21472
|
__Pyx_GOTREF(__pyx_t_5);
|
21418
|
-
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)
|
21419
21474
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
21420
21475
|
|
21421
|
-
/* "edsger/path_tracking.pyx":
|
21476
|
+
/* "edsger/path_tracking.pyx":28
|
21422
21477
|
*
|
21423
21478
|
*
|
21424
21479
|
* cpdef cnp.ndarray compute_path(cnp.uint32_t[::1] path_links, int vertex_idx): # <<<<<<<<<<<<<<
|
21425
21480
|
* """Compute path from predecessors or successors.
|
21426
21481
|
*
|
21427
21482
|
*/
|
21428
|
-
__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)
|
21429
21484
|
__Pyx_GOTREF(__pyx_t_5);
|
21430
|
-
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)
|
21431
21486
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
21432
21487
|
|
21433
21488
|
/* "edsger/path_tracking.pyx":1
|
@@ -21746,7 +21801,7 @@ static int __Pyx_CreateCodeObjects(__pyx_mstatetype *__pyx_mstate) {
|
|
21746
21801
|
PyObject* tuple_dedup_map = PyDict_New();
|
21747
21802
|
if (unlikely(!tuple_dedup_map)) return -1;
|
21748
21803
|
{
|
21749
|
-
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};
|
21750
21805
|
PyObject* const varnames[] = {__pyx_mstate->__pyx_n_u_path_links, __pyx_mstate->__pyx_n_u_vertex_idx};
|
21751
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;
|
21752
21807
|
}
|
@@ -24617,6 +24672,55 @@ CYTHON_UNUSED static int __Pyx_VectorcallBuilder_AddArg_Check(PyObject *key, PyO
|
|
24617
24672
|
}
|
24618
24673
|
#endif
|
24619
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
|
+
|
24620
24724
|
/* CallTypeTraverse */
|
24621
24725
|
#if !CYTHON_USE_TYPE_SPECS || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX < 0x03090000)
|
24622
24726
|
#else
|
@@ -24737,6 +24841,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
24737
24841
|
changed = 1;
|
24738
24842
|
}
|
24739
24843
|
#endif // CYTHON_METH_FASTCALL
|
24844
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
24740
24845
|
else if (strcmp(memb->name, "__module__") == 0) {
|
24741
24846
|
PyObject *descr;
|
24742
24847
|
assert(memb->type == T_OBJECT);
|
@@ -24751,11 +24856,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
24751
24856
|
}
|
24752
24857
|
changed = 1;
|
24753
24858
|
}
|
24859
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
24754
24860
|
}
|
24755
24861
|
memb++;
|
24756
24862
|
}
|
24757
24863
|
}
|
24758
24864
|
#endif // !CYTHON_COMPILING_IN_LIMITED_API
|
24865
|
+
#if !CYTHON_COMPILING_IN_PYPY
|
24759
24866
|
slot = spec->slots;
|
24760
24867
|
while (slot && slot->slot && slot->slot != Py_tp_getset)
|
24761
24868
|
slot++;
|
@@ -24787,6 +24894,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
|
|
24787
24894
|
++getset;
|
24788
24895
|
}
|
24789
24896
|
}
|
24897
|
+
#endif // !CYTHON_COMPILING_IN_PYPY
|
24790
24898
|
if (changed)
|
24791
24899
|
PyType_Modified(type);
|
24792
24900
|
#endif // PY_VERSION_HEX > 0x030900B1
|
@@ -24891,6 +24999,13 @@ try_unpack:
|
|
24891
24999
|
|
24892
25000
|
/* PyObjectCallMethod0 */
|
24893
25001
|
static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
|
25002
|
+
#if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
|
25003
|
+
PyObject *args[1] = {obj};
|
25004
|
+
(void) __Pyx_PyObject_GetMethod;
|
25005
|
+
(void) __Pyx_PyObject_CallOneArg;
|
25006
|
+
(void) __Pyx_PyObject_CallNoArg;
|
25007
|
+
return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
|
25008
|
+
#else
|
24894
25009
|
PyObject *method = NULL, *result = NULL;
|
24895
25010
|
int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
|
24896
25011
|
if (likely(is_method)) {
|
@@ -24903,6 +25018,7 @@ static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name
|
|
24903
25018
|
Py_DECREF(method);
|
24904
25019
|
bad:
|
24905
25020
|
return result;
|
25021
|
+
#endif
|
24906
25022
|
}
|
24907
25023
|
|
24908
25024
|
/* ValidateBasesTuple */
|
@@ -25332,15 +25448,15 @@ __PYX_GOOD:
|
|
25332
25448
|
}
|
25333
25449
|
|
25334
25450
|
/* TypeImport */
|
25335
|
-
#ifndef
|
25336
|
-
#define
|
25337
|
-
static PyTypeObject *
|
25338
|
-
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)
|
25339
25455
|
{
|
25340
25456
|
PyObject *result = 0;
|
25341
25457
|
Py_ssize_t basicsize;
|
25342
25458
|
Py_ssize_t itemsize;
|
25343
|
-
#
|
25459
|
+
#ifdef Py_LIMITED_API
|
25344
25460
|
PyObject *py_basicsize;
|
25345
25461
|
PyObject *py_itemsize;
|
25346
25462
|
#endif
|
@@ -25353,7 +25469,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
25353
25469
|
module_name, class_name);
|
25354
25470
|
goto bad;
|
25355
25471
|
}
|
25356
|
-
#
|
25472
|
+
#ifndef Py_LIMITED_API
|
25357
25473
|
basicsize = ((PyTypeObject *)result)->tp_basicsize;
|
25358
25474
|
itemsize = ((PyTypeObject *)result)->tp_itemsize;
|
25359
25475
|
#else
|
@@ -25391,7 +25507,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
25391
25507
|
module_name, class_name, size, basicsize+itemsize);
|
25392
25508
|
goto bad;
|
25393
25509
|
}
|
25394
|
-
if (check_size ==
|
25510
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_4 &&
|
25395
25511
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
25396
25512
|
PyErr_Format(PyExc_ValueError,
|
25397
25513
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
@@ -25399,7 +25515,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_2(PyObject *module, const char *module
|
|
25399
25515
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
25400
25516
|
goto bad;
|
25401
25517
|
}
|
25402
|
-
else if (check_size ==
|
25518
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_4 && (size_t)basicsize > size) {
|
25403
25519
|
if (PyErr_WarnFormat(NULL, 0,
|
25404
25520
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
25405
25521
|
"Expected %zd from C header, got %zd from PyObject",
|
@@ -25540,7 +25656,7 @@ bad:
|
|
25540
25656
|
}
|
25541
25657
|
|
25542
25658
|
/* CommonTypesMetaclass */
|
25543
|
-
PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
25659
|
+
static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
|
25544
25660
|
return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
|
25545
25661
|
}
|
25546
25662
|
static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
|
@@ -25569,6 +25685,7 @@ static int __pyx_CommonTypesMetaclass_init(PyObject *module) {
|
|
25569
25685
|
return -1;
|
25570
25686
|
}
|
25571
25687
|
mstate->__pyx_CommonTypesMetaclassType = __Pyx_FetchCommonTypeFromSpec(NULL, module, &__pyx_CommonTypesMetaclass_spec, bases);
|
25688
|
+
Py_DECREF(bases);
|
25572
25689
|
if (unlikely(mstate->__pyx_CommonTypesMetaclassType == NULL)) {
|
25573
25690
|
return -1;
|
25574
25691
|
}
|
@@ -29590,6 +29707,10 @@ __Pyx_PyType_GetFullyQualifiedName(PyTypeObject* tp)
|
|
29590
29707
|
PyCode_NewWithPosOnlyArgs
|
29591
29708
|
#endif
|
29592
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
|
29593
29714
|
return result;
|
29594
29715
|
}
|
29595
29716
|
#elif PY_VERSION_HEX >= 0x030800B2 && !CYTHON_COMPILING_IN_PYPY
|