edsger 0.1.5__cp311-cp311-macosx_11_0_arm64.whl → 0.1.6__cp311-cp311-macosx_11_0_arm64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- edsger/_version.py +1 -1
- edsger/bellman_ford.c +1344 -967
- edsger/bellman_ford.cpython-311-darwin.so +0 -0
- edsger/bellman_ford.pyx +7 -0
- edsger/bfs.c +33575 -0
- edsger/bfs.cpython-311-darwin.so +0 -0
- edsger/bfs.pyx +243 -0
- edsger/commons.c +283 -278
- edsger/commons.cpython-311-darwin.so +0 -0
- edsger/commons.pyx +7 -0
- edsger/dijkstra.c +2417 -1856
- edsger/dijkstra.cpython-311-darwin.so +0 -0
- edsger/dijkstra.pyx +7 -0
- edsger/graph_importer.py +340 -0
- edsger/networks.py +4 -2
- edsger/path.py +676 -129
- edsger/path_tracking.c +407 -301
- edsger/path_tracking.cpython-311-darwin.so +0 -0
- edsger/path_tracking.pyx +7 -0
- edsger/pq_4ary_dec_0b.c +1159 -1015
- edsger/pq_4ary_dec_0b.cpython-311-darwin.so +0 -0
- edsger/pq_4ary_dec_0b.pyx +7 -0
- edsger/spiess_florian.c +1394 -1139
- edsger/spiess_florian.cpython-311-darwin.so +0 -0
- edsger/spiess_florian.pyx +7 -0
- edsger/star.c +1224 -766
- edsger/star.cpython-311-darwin.so +0 -0
- edsger/star.pyx +7 -0
- edsger/utils.py +9 -8
- {edsger-0.1.5.dist-info → edsger-0.1.6.dist-info}/METADATA +124 -2
- edsger-0.1.6.dist-info/RECORD +40 -0
- edsger-0.1.5.dist-info/RECORD +0 -36
- {edsger-0.1.5.dist-info → edsger-0.1.6.dist-info}/WHEEL +0 -0
- {edsger-0.1.5.dist-info → edsger-0.1.6.dist-info}/licenses/AUTHORS.rst +0 -0
- {edsger-0.1.5.dist-info → edsger-0.1.6.dist-info}/licenses/LICENSE +0 -0
- {edsger-0.1.5.dist-info → edsger-0.1.6.dist-info}/top_level.txt +0 -0
edsger/commons.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>
|
@@ -1384,7 +1385,7 @@ static const char *__pyx_filename;
|
|
1384
1385
|
|
1385
1386
|
static const char* const __pyx_f[] = {
|
1386
1387
|
"src/edsger/commons.pyx",
|
1387
|
-
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1388
|
+
"../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd",
|
1388
1389
|
"cpython/type.pxd",
|
1389
1390
|
};
|
1390
1391
|
/* #### Code section: utility_code_proto_before_types ### */
|
@@ -1546,7 +1547,7 @@ static const char* const __pyx_f[] = {
|
|
1546
1547
|
|
1547
1548
|
/* #### Code section: numeric_typedefs ### */
|
1548
1549
|
|
1549
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1550
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":743
|
1550
1551
|
* # in Cython to enable them only on the right systems.
|
1551
1552
|
*
|
1552
1553
|
* ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
|
@@ -1555,7 +1556,7 @@ static const char* const __pyx_f[] = {
|
|
1555
1556
|
*/
|
1556
1557
|
typedef npy_int8 __pyx_t_5numpy_int8_t;
|
1557
1558
|
|
1558
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1559
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":744
|
1559
1560
|
*
|
1560
1561
|
* ctypedef npy_int8 int8_t
|
1561
1562
|
* ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
|
@@ -1564,7 +1565,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
|
|
1564
1565
|
*/
|
1565
1566
|
typedef npy_int16 __pyx_t_5numpy_int16_t;
|
1566
1567
|
|
1567
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1568
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":745
|
1568
1569
|
* ctypedef npy_int8 int8_t
|
1569
1570
|
* ctypedef npy_int16 int16_t
|
1570
1571
|
* ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
|
@@ -1573,7 +1574,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
|
|
1573
1574
|
*/
|
1574
1575
|
typedef npy_int32 __pyx_t_5numpy_int32_t;
|
1575
1576
|
|
1576
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1577
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":746
|
1577
1578
|
* ctypedef npy_int16 int16_t
|
1578
1579
|
* ctypedef npy_int32 int32_t
|
1579
1580
|
* ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
|
@@ -1582,7 +1583,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
|
|
1582
1583
|
*/
|
1583
1584
|
typedef npy_int64 __pyx_t_5numpy_int64_t;
|
1584
1585
|
|
1585
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1586
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":748
|
1586
1587
|
* ctypedef npy_int64 int64_t
|
1587
1588
|
*
|
1588
1589
|
* ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
|
@@ -1591,7 +1592,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
|
|
1591
1592
|
*/
|
1592
1593
|
typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
1593
1594
|
|
1594
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1595
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":749
|
1595
1596
|
*
|
1596
1597
|
* ctypedef npy_uint8 uint8_t
|
1597
1598
|
* ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
|
@@ -1600,7 +1601,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
|
|
1600
1601
|
*/
|
1601
1602
|
typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
1602
1603
|
|
1603
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1604
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":750
|
1604
1605
|
* ctypedef npy_uint8 uint8_t
|
1605
1606
|
* ctypedef npy_uint16 uint16_t
|
1606
1607
|
* ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
|
@@ -1609,7 +1610,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
|
|
1609
1610
|
*/
|
1610
1611
|
typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
1611
1612
|
|
1612
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1613
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":751
|
1613
1614
|
* ctypedef npy_uint16 uint16_t
|
1614
1615
|
* ctypedef npy_uint32 uint32_t
|
1615
1616
|
* ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
|
@@ -1618,7 +1619,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
|
|
1618
1619
|
*/
|
1619
1620
|
typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
1620
1621
|
|
1621
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1622
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":753
|
1622
1623
|
* ctypedef npy_uint64 uint64_t
|
1623
1624
|
*
|
1624
1625
|
* ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
|
@@ -1627,7 +1628,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
|
|
1627
1628
|
*/
|
1628
1629
|
typedef npy_float32 __pyx_t_5numpy_float32_t;
|
1629
1630
|
|
1630
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1631
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":754
|
1631
1632
|
*
|
1632
1633
|
* ctypedef npy_float32 float32_t
|
1633
1634
|
* ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
|
@@ -1636,7 +1637,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
|
|
1636
1637
|
*/
|
1637
1638
|
typedef npy_float64 __pyx_t_5numpy_float64_t;
|
1638
1639
|
|
1639
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1640
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":761
|
1640
1641
|
* ctypedef double complex complex128_t
|
1641
1642
|
*
|
1642
1643
|
* ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
|
@@ -1645,7 +1646,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
|
|
1645
1646
|
*/
|
1646
1647
|
typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
1647
1648
|
|
1648
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1649
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":762
|
1649
1650
|
*
|
1650
1651
|
* ctypedef npy_longlong longlong_t
|
1651
1652
|
* ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
|
@@ -1654,7 +1655,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
|
|
1654
1655
|
*/
|
1655
1656
|
typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
1656
1657
|
|
1657
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1658
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":764
|
1658
1659
|
* ctypedef npy_ulonglong ulonglong_t
|
1659
1660
|
*
|
1660
1661
|
* ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
|
@@ -1663,7 +1664,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
|
|
1663
1664
|
*/
|
1664
1665
|
typedef npy_intp __pyx_t_5numpy_intp_t;
|
1665
1666
|
|
1666
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1667
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":765
|
1667
1668
|
*
|
1668
1669
|
* ctypedef npy_intp intp_t
|
1669
1670
|
* ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
|
@@ -1672,7 +1673,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
|
|
1672
1673
|
*/
|
1673
1674
|
typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
1674
1675
|
|
1675
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1676
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":767
|
1676
1677
|
* ctypedef npy_uintp uintp_t
|
1677
1678
|
*
|
1678
1679
|
* ctypedef npy_double float_t # <<<<<<<<<<<<<<
|
@@ -1681,7 +1682,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
|
|
1681
1682
|
*/
|
1682
1683
|
typedef npy_double __pyx_t_5numpy_float_t;
|
1683
1684
|
|
1684
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1685
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":768
|
1685
1686
|
*
|
1686
1687
|
* ctypedef npy_double float_t
|
1687
1688
|
* ctypedef npy_double double_t # <<<<<<<<<<<<<<
|
@@ -1690,7 +1691,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
|
|
1690
1691
|
*/
|
1691
1692
|
typedef npy_double __pyx_t_5numpy_double_t;
|
1692
1693
|
|
1693
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
1694
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":769
|
1694
1695
|
* ctypedef npy_double float_t
|
1695
1696
|
* ctypedef npy_double double_t
|
1696
1697
|
* ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
|
@@ -1973,22 +1974,22 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCallDict(PyObject *func, PyObj
|
|
1973
1974
|
static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause);
|
1974
1975
|
|
1975
1976
|
/* TypeImport.proto */
|
1976
|
-
#ifndef
|
1977
|
-
#define
|
1977
|
+
#ifndef __PYX_HAVE_RT_ImportType_proto_3_1_4
|
1978
|
+
#define __PYX_HAVE_RT_ImportType_proto_3_1_4
|
1978
1979
|
#if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
|
1979
1980
|
#include <stdalign.h>
|
1980
1981
|
#endif
|
1981
1982
|
#if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
|
1982
|
-
#define
|
1983
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) alignof(s)
|
1983
1984
|
#else
|
1984
|
-
#define
|
1985
|
+
#define __PYX_GET_STRUCT_ALIGNMENT_3_1_4(s) sizeof(void*)
|
1985
1986
|
#endif
|
1986
|
-
enum
|
1987
|
-
|
1988
|
-
|
1989
|
-
|
1987
|
+
enum __Pyx_ImportType_CheckSize_3_1_4 {
|
1988
|
+
__Pyx_ImportType_CheckSize_Error_3_1_4 = 0,
|
1989
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4 = 1,
|
1990
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4 = 2
|
1990
1991
|
};
|
1991
|
-
static PyTypeObject *
|
1992
|
+
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);
|
1992
1993
|
#endif
|
1993
1994
|
|
1994
1995
|
/* IncludeStringH.proto */
|
@@ -2636,7 +2637,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
2636
2637
|
#endif
|
2637
2638
|
/* #### Code section: module_code ### */
|
2638
2639
|
|
2639
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2640
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":242
|
2640
2641
|
* cdef int type_num
|
2641
2642
|
*
|
2642
2643
|
* @property # <<<<<<<<<<<<<<
|
@@ -2647,7 +2648,7 @@ static CYTHON_SMALL_CODE int __pyx_m_traverse(PyObject *m, visitproc visit, void
|
|
2647
2648
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_Descr *__pyx_v_self) {
|
2648
2649
|
npy_intp __pyx_r;
|
2649
2650
|
|
2650
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2651
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":244
|
2651
2652
|
* @property
|
2652
2653
|
* cdef inline npy_intp itemsize(self) noexcept nogil:
|
2653
2654
|
* return PyDataType_ELSIZE(self) # <<<<<<<<<<<<<<
|
@@ -2657,7 +2658,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
2657
2658
|
__pyx_r = PyDataType_ELSIZE(__pyx_v_self);
|
2658
2659
|
goto __pyx_L0;
|
2659
2660
|
|
2660
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2661
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":242
|
2661
2662
|
* cdef int type_num
|
2662
2663
|
*
|
2663
2664
|
* @property # <<<<<<<<<<<<<<
|
@@ -2670,7 +2671,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
2670
2671
|
return __pyx_r;
|
2671
2672
|
}
|
2672
2673
|
|
2673
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2674
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":246
|
2674
2675
|
* return PyDataType_ELSIZE(self)
|
2675
2676
|
*
|
2676
2677
|
* @property # <<<<<<<<<<<<<<
|
@@ -2681,7 +2682,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_8itemsize_itemsize(PyArray_D
|
|
2681
2682
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray_Descr *__pyx_v_self) {
|
2682
2683
|
npy_intp __pyx_r;
|
2683
2684
|
|
2684
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2685
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":248
|
2685
2686
|
* @property
|
2686
2687
|
* cdef inline npy_intp alignment(self) noexcept nogil:
|
2687
2688
|
* return PyDataType_ALIGNMENT(self) # <<<<<<<<<<<<<<
|
@@ -2691,7 +2692,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
2691
2692
|
__pyx_r = PyDataType_ALIGNMENT(__pyx_v_self);
|
2692
2693
|
goto __pyx_L0;
|
2693
2694
|
|
2694
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2695
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":246
|
2695
2696
|
* return PyDataType_ELSIZE(self)
|
2696
2697
|
*
|
2697
2698
|
* @property # <<<<<<<<<<<<<<
|
@@ -2704,7 +2705,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_5dtype_9alignment_alignment(PyArray
|
|
2704
2705
|
return __pyx_r;
|
2705
2706
|
}
|
2706
2707
|
|
2707
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2708
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":252
|
2708
2709
|
* # Use fields/names with care as they may be NULL. You must check
|
2709
2710
|
* # for this using PyDataType_HASFIELDS.
|
2710
2711
|
* @property # <<<<<<<<<<<<<<
|
@@ -2718,7 +2719,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
2718
2719
|
PyObject *__pyx_t_1;
|
2719
2720
|
__Pyx_RefNannySetupContext("fields", 0);
|
2720
2721
|
|
2721
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2722
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":254
|
2722
2723
|
* @property
|
2723
2724
|
* cdef inline object fields(self):
|
2724
2725
|
* return <object>PyDataType_FIELDS(self) # <<<<<<<<<<<<<<
|
@@ -2731,7 +2732,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
2731
2732
|
__pyx_r = ((PyObject *)__pyx_t_1);
|
2732
2733
|
goto __pyx_L0;
|
2733
2734
|
|
2734
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2735
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":252
|
2735
2736
|
* # Use fields/names with care as they may be NULL. You must check
|
2736
2737
|
* # for this using PyDataType_HASFIELDS.
|
2737
2738
|
* @property # <<<<<<<<<<<<<<
|
@@ -2746,7 +2747,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_6fields_fields(PyArray_Desc
|
|
2746
2747
|
return __pyx_r;
|
2747
2748
|
}
|
2748
2749
|
|
2749
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2750
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":256
|
2750
2751
|
* return <object>PyDataType_FIELDS(self)
|
2751
2752
|
*
|
2752
2753
|
* @property # <<<<<<<<<<<<<<
|
@@ -2760,7 +2761,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2760
2761
|
PyObject *__pyx_t_1;
|
2761
2762
|
__Pyx_RefNannySetupContext("names", 0);
|
2762
2763
|
|
2763
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2764
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":258
|
2764
2765
|
* @property
|
2765
2766
|
* cdef inline tuple names(self):
|
2766
2767
|
* return <tuple>PyDataType_NAMES(self) # <<<<<<<<<<<<<<
|
@@ -2773,7 +2774,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2773
2774
|
__pyx_r = ((PyObject*)__pyx_t_1);
|
2774
2775
|
goto __pyx_L0;
|
2775
2776
|
|
2776
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2777
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":256
|
2777
2778
|
* return <object>PyDataType_FIELDS(self)
|
2778
2779
|
*
|
2779
2780
|
* @property # <<<<<<<<<<<<<<
|
@@ -2788,7 +2789,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2788
2789
|
return __pyx_r;
|
2789
2790
|
}
|
2790
2791
|
|
2791
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2792
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
2792
2793
|
* # valid (the pointer can be NULL). Most users should access
|
2793
2794
|
* # this field via the inline helper method PyDataType_SHAPE.
|
2794
2795
|
* @property # <<<<<<<<<<<<<<
|
@@ -2799,7 +2800,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_5dtype_5names_names(PyArray_Descr
|
|
2799
2800
|
static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarray(PyArray_Descr *__pyx_v_self) {
|
2800
2801
|
PyArray_ArrayDescr *__pyx_r;
|
2801
2802
|
|
2802
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2803
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":265
|
2803
2804
|
* @property
|
2804
2805
|
* cdef inline PyArray_ArrayDescr* subarray(self) noexcept nogil:
|
2805
2806
|
* return PyDataType_SUBARRAY(self) # <<<<<<<<<<<<<<
|
@@ -2809,7 +2810,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
2809
2810
|
__pyx_r = PyDataType_SUBARRAY(__pyx_v_self);
|
2810
2811
|
goto __pyx_L0;
|
2811
2812
|
|
2812
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2813
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":263
|
2813
2814
|
* # valid (the pointer can be NULL). Most users should access
|
2814
2815
|
* # this field via the inline helper method PyDataType_SHAPE.
|
2815
2816
|
* @property # <<<<<<<<<<<<<<
|
@@ -2822,7 +2823,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
2822
2823
|
return __pyx_r;
|
2823
2824
|
}
|
2824
2825
|
|
2825
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2826
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":267
|
2826
2827
|
* return PyDataType_SUBARRAY(self)
|
2827
2828
|
*
|
2828
2829
|
* @property # <<<<<<<<<<<<<<
|
@@ -2833,7 +2834,7 @@ static CYTHON_INLINE PyArray_ArrayDescr *__pyx_f_5numpy_5dtype_8subarray_subarra
|
|
2833
2834
|
static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr *__pyx_v_self) {
|
2834
2835
|
npy_uint64 __pyx_r;
|
2835
2836
|
|
2836
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2837
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":270
|
2837
2838
|
* cdef inline npy_uint64 flags(self) noexcept nogil:
|
2838
2839
|
* """The data types flags."""
|
2839
2840
|
* return PyDataType_FLAGS(self) # <<<<<<<<<<<<<<
|
@@ -2843,7 +2844,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
2843
2844
|
__pyx_r = PyDataType_FLAGS(__pyx_v_self);
|
2844
2845
|
goto __pyx_L0;
|
2845
2846
|
|
2846
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2847
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":267
|
2847
2848
|
* return PyDataType_SUBARRAY(self)
|
2848
2849
|
*
|
2849
2850
|
* @property # <<<<<<<<<<<<<<
|
@@ -2856,7 +2857,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
2856
2857
|
return __pyx_r;
|
2857
2858
|
}
|
2858
2859
|
|
2859
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2860
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":279
|
2860
2861
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
2861
2862
|
*
|
2862
2863
|
* @property # <<<<<<<<<<<<<<
|
@@ -2867,7 +2868,7 @@ static CYTHON_INLINE npy_uint64 __pyx_f_5numpy_5dtype_5flags_flags(PyArray_Descr
|
|
2867
2868
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMultiIterObject *__pyx_v_self) {
|
2868
2869
|
int __pyx_r;
|
2869
2870
|
|
2870
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2871
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":282
|
2871
2872
|
* cdef inline int numiter(self) noexcept nogil:
|
2872
2873
|
* """The number of arrays that need to be broadcast to the same shape."""
|
2873
2874
|
* return PyArray_MultiIter_NUMITER(self) # <<<<<<<<<<<<<<
|
@@ -2877,7 +2878,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
2877
2878
|
__pyx_r = PyArray_MultiIter_NUMITER(__pyx_v_self);
|
2878
2879
|
goto __pyx_L0;
|
2879
2880
|
|
2880
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2881
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":279
|
2881
2882
|
* ctypedef class numpy.broadcast [object PyArrayMultiIterObject, check_size ignore]:
|
2882
2883
|
*
|
2883
2884
|
* @property # <<<<<<<<<<<<<<
|
@@ -2890,7 +2891,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
2890
2891
|
return __pyx_r;
|
2891
2892
|
}
|
2892
2893
|
|
2893
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2894
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
2894
2895
|
* return PyArray_MultiIter_NUMITER(self)
|
2895
2896
|
*
|
2896
2897
|
* @property # <<<<<<<<<<<<<<
|
@@ -2901,7 +2902,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_7numiter_numiter(PyArrayMulti
|
|
2901
2902
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiIterObject *__pyx_v_self) {
|
2902
2903
|
npy_intp __pyx_r;
|
2903
2904
|
|
2904
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2905
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":287
|
2905
2906
|
* cdef inline npy_intp size(self) noexcept nogil:
|
2906
2907
|
* """The total broadcasted size."""
|
2907
2908
|
* return PyArray_MultiIter_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -2911,7 +2912,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
2911
2912
|
__pyx_r = PyArray_MultiIter_SIZE(__pyx_v_self);
|
2912
2913
|
goto __pyx_L0;
|
2913
2914
|
|
2914
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2915
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":284
|
2915
2916
|
* return PyArray_MultiIter_NUMITER(self)
|
2916
2917
|
*
|
2917
2918
|
* @property # <<<<<<<<<<<<<<
|
@@ -2924,7 +2925,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
2924
2925
|
return __pyx_r;
|
2925
2926
|
}
|
2926
2927
|
|
2927
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2928
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":289
|
2928
2929
|
* return PyArray_MultiIter_SIZE(self)
|
2929
2930
|
*
|
2930
2931
|
* @property # <<<<<<<<<<<<<<
|
@@ -2935,7 +2936,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_4size_size(PyArrayMultiI
|
|
2935
2936
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMultiIterObject *__pyx_v_self) {
|
2936
2937
|
npy_intp __pyx_r;
|
2937
2938
|
|
2938
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2939
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":292
|
2939
2940
|
* cdef inline npy_intp index(self) noexcept nogil:
|
2940
2941
|
* """The current (1-d) index into the broadcasted result."""
|
2941
2942
|
* return PyArray_MultiIter_INDEX(self) # <<<<<<<<<<<<<<
|
@@ -2945,7 +2946,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
2945
2946
|
__pyx_r = PyArray_MultiIter_INDEX(__pyx_v_self);
|
2946
2947
|
goto __pyx_L0;
|
2947
2948
|
|
2948
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2949
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":289
|
2949
2950
|
* return PyArray_MultiIter_SIZE(self)
|
2950
2951
|
*
|
2951
2952
|
* @property # <<<<<<<<<<<<<<
|
@@ -2958,7 +2959,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
2958
2959
|
return __pyx_r;
|
2959
2960
|
}
|
2960
2961
|
|
2961
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2962
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":294
|
2962
2963
|
* return PyArray_MultiIter_INDEX(self)
|
2963
2964
|
*
|
2964
2965
|
* @property # <<<<<<<<<<<<<<
|
@@ -2969,7 +2970,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_9broadcast_5index_index(PyArrayMult
|
|
2969
2970
|
static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject *__pyx_v_self) {
|
2970
2971
|
int __pyx_r;
|
2971
2972
|
|
2972
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2973
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":297
|
2973
2974
|
* cdef inline int nd(self) noexcept nogil:
|
2974
2975
|
* """The number of dimensions in the broadcasted result."""
|
2975
2976
|
* return PyArray_MultiIter_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -2979,7 +2980,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
2979
2980
|
__pyx_r = PyArray_MultiIter_NDIM(__pyx_v_self);
|
2980
2981
|
goto __pyx_L0;
|
2981
2982
|
|
2982
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2983
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":294
|
2983
2984
|
* return PyArray_MultiIter_INDEX(self)
|
2984
2985
|
*
|
2985
2986
|
* @property # <<<<<<<<<<<<<<
|
@@ -2992,7 +2993,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
2992
2993
|
return __pyx_r;
|
2993
2994
|
}
|
2994
2995
|
|
2995
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
2996
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":299
|
2996
2997
|
* return PyArray_MultiIter_NDIM(self)
|
2997
2998
|
*
|
2998
2999
|
* @property # <<<<<<<<<<<<<<
|
@@ -3003,7 +3004,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_9broadcast_2nd_nd(PyArrayMultiIterObject
|
|
3003
3004
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions(PyArrayMultiIterObject *__pyx_v_self) {
|
3004
3005
|
npy_intp *__pyx_r;
|
3005
3006
|
|
3006
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3007
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":302
|
3007
3008
|
* cdef inline npy_intp* dimensions(self) noexcept nogil:
|
3008
3009
|
* """The shape of the broadcasted result."""
|
3009
3010
|
* return PyArray_MultiIter_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -3013,7 +3014,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
3013
3014
|
__pyx_r = PyArray_MultiIter_DIMS(__pyx_v_self);
|
3014
3015
|
goto __pyx_L0;
|
3015
3016
|
|
3016
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3017
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":299
|
3017
3018
|
* return PyArray_MultiIter_NDIM(self)
|
3018
3019
|
*
|
3019
3020
|
* @property # <<<<<<<<<<<<<<
|
@@ -3026,7 +3027,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
3026
3027
|
return __pyx_r;
|
3027
3028
|
}
|
3028
3029
|
|
3029
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3030
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":304
|
3030
3031
|
* return PyArray_MultiIter_DIMS(self)
|
3031
3032
|
*
|
3032
3033
|
* @property # <<<<<<<<<<<<<<
|
@@ -3037,7 +3038,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_9broadcast_10dimensions_dimensions
|
|
3037
3038
|
static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiIterObject *__pyx_v_self) {
|
3038
3039
|
void **__pyx_r;
|
3039
3040
|
|
3040
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3041
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":308
|
3041
3042
|
* """An array of iterator objects that holds the iterators for the arrays to be broadcast together.
|
3042
3043
|
* On return, the iterators are adjusted for broadcasting."""
|
3043
3044
|
* return PyArray_MultiIter_ITERS(self) # <<<<<<<<<<<<<<
|
@@ -3047,7 +3048,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
3047
3048
|
__pyx_r = PyArray_MultiIter_ITERS(__pyx_v_self);
|
3048
3049
|
goto __pyx_L0;
|
3049
3050
|
|
3050
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3051
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":304
|
3051
3052
|
* return PyArray_MultiIter_DIMS(self)
|
3052
3053
|
*
|
3053
3054
|
* @property # <<<<<<<<<<<<<<
|
@@ -3060,7 +3061,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
3060
3061
|
return __pyx_r;
|
3061
3062
|
}
|
3062
3063
|
|
3063
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3064
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":322
|
3064
3065
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
3065
3066
|
*
|
3066
3067
|
* @property # <<<<<<<<<<<<<<
|
@@ -3071,7 +3072,7 @@ static CYTHON_INLINE void **__pyx_f_5numpy_9broadcast_5iters_iters(PyArrayMultiI
|
|
3071
3072
|
static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
|
3072
3073
|
PyObject *__pyx_r;
|
3073
3074
|
|
3074
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3075
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":326
|
3075
3076
|
* """Returns a borrowed reference to the object owning the data/memory.
|
3076
3077
|
* """
|
3077
3078
|
* return PyArray_BASE(self) # <<<<<<<<<<<<<<
|
@@ -3081,7 +3082,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
3081
3082
|
__pyx_r = PyArray_BASE(__pyx_v_self);
|
3082
3083
|
goto __pyx_L0;
|
3083
3084
|
|
3084
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3085
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":322
|
3085
3086
|
* # Instead, we use properties that map to the corresponding C-API functions.
|
3086
3087
|
*
|
3087
3088
|
* @property # <<<<<<<<<<<<<<
|
@@ -3094,7 +3095,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
|
|
3094
3095
|
return __pyx_r;
|
3095
3096
|
}
|
3096
3097
|
|
3097
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3098
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":328
|
3098
3099
|
* return PyArray_BASE(self)
|
3099
3100
|
*
|
3100
3101
|
* @property # <<<<<<<<<<<<<<
|
@@ -3108,7 +3109,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3108
3109
|
PyArray_Descr *__pyx_t_1;
|
3109
3110
|
__Pyx_RefNannySetupContext("descr", 0);
|
3110
3111
|
|
3111
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3112
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":332
|
3112
3113
|
* """Returns an owned reference to the dtype of the array.
|
3113
3114
|
* """
|
3114
3115
|
* return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
|
@@ -3121,7 +3122,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3121
3122
|
__pyx_r = ((PyArray_Descr *)__pyx_t_1);
|
3122
3123
|
goto __pyx_L0;
|
3123
3124
|
|
3124
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3125
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":328
|
3125
3126
|
* return PyArray_BASE(self)
|
3126
3127
|
*
|
3127
3128
|
* @property # <<<<<<<<<<<<<<
|
@@ -3136,7 +3137,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3136
3137
|
return __pyx_r;
|
3137
3138
|
}
|
3138
3139
|
|
3139
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3140
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":334
|
3140
3141
|
* return <dtype>PyArray_DESCR(self)
|
3141
3142
|
*
|
3142
3143
|
* @property # <<<<<<<<<<<<<<
|
@@ -3147,7 +3148,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
|
|
3147
3148
|
static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
|
3148
3149
|
int __pyx_r;
|
3149
3150
|
|
3150
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3151
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":338
|
3151
3152
|
* """Returns the number of dimensions in the array.
|
3152
3153
|
* """
|
3153
3154
|
* return PyArray_NDIM(self) # <<<<<<<<<<<<<<
|
@@ -3157,7 +3158,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
3157
3158
|
__pyx_r = PyArray_NDIM(__pyx_v_self);
|
3158
3159
|
goto __pyx_L0;
|
3159
3160
|
|
3160
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3161
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":334
|
3161
3162
|
* return <dtype>PyArray_DESCR(self)
|
3162
3163
|
*
|
3163
3164
|
* @property # <<<<<<<<<<<<<<
|
@@ -3170,7 +3171,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
3170
3171
|
return __pyx_r;
|
3171
3172
|
}
|
3172
3173
|
|
3173
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3174
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":340
|
3174
3175
|
* return PyArray_NDIM(self)
|
3175
3176
|
*
|
3176
3177
|
* @property # <<<<<<<<<<<<<<
|
@@ -3181,7 +3182,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
|
|
3181
3182
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
|
3182
3183
|
npy_intp *__pyx_r;
|
3183
3184
|
|
3184
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3185
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":346
|
3185
3186
|
* Can return NULL for 0-dimensional arrays.
|
3186
3187
|
* """
|
3187
3188
|
* return PyArray_DIMS(self) # <<<<<<<<<<<<<<
|
@@ -3191,7 +3192,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
3191
3192
|
__pyx_r = PyArray_DIMS(__pyx_v_self);
|
3192
3193
|
goto __pyx_L0;
|
3193
3194
|
|
3194
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3195
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":340
|
3195
3196
|
* return PyArray_NDIM(self)
|
3196
3197
|
*
|
3197
3198
|
* @property # <<<<<<<<<<<<<<
|
@@ -3204,7 +3205,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
3204
3205
|
return __pyx_r;
|
3205
3206
|
}
|
3206
3207
|
|
3207
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3208
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":348
|
3208
3209
|
* return PyArray_DIMS(self)
|
3209
3210
|
*
|
3210
3211
|
* @property # <<<<<<<<<<<<<<
|
@@ -3215,7 +3216,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
|
|
3215
3216
|
static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
|
3216
3217
|
npy_intp *__pyx_r;
|
3217
3218
|
|
3218
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3219
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":353
|
3219
3220
|
* The number of elements matches the number of dimensions of the array (ndim).
|
3220
3221
|
* """
|
3221
3222
|
* return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
|
@@ -3225,7 +3226,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
3225
3226
|
__pyx_r = PyArray_STRIDES(__pyx_v_self);
|
3226
3227
|
goto __pyx_L0;
|
3227
3228
|
|
3228
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3229
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":348
|
3229
3230
|
* return PyArray_DIMS(self)
|
3230
3231
|
*
|
3231
3232
|
* @property # <<<<<<<<<<<<<<
|
@@ -3238,7 +3239,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
3238
3239
|
return __pyx_r;
|
3239
3240
|
}
|
3240
3241
|
|
3241
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3242
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":355
|
3242
3243
|
* return PyArray_STRIDES(self)
|
3243
3244
|
*
|
3244
3245
|
* @property # <<<<<<<<<<<<<<
|
@@ -3249,7 +3250,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
|
|
3249
3250
|
static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
|
3250
3251
|
npy_intp __pyx_r;
|
3251
3252
|
|
3252
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3253
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":359
|
3253
3254
|
* """Returns the total size (in number of elements) of the array.
|
3254
3255
|
* """
|
3255
3256
|
* return PyArray_SIZE(self) # <<<<<<<<<<<<<<
|
@@ -3259,7 +3260,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
3259
3260
|
__pyx_r = PyArray_SIZE(__pyx_v_self);
|
3260
3261
|
goto __pyx_L0;
|
3261
3262
|
|
3262
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3263
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":355
|
3263
3264
|
* return PyArray_STRIDES(self)
|
3264
3265
|
*
|
3265
3266
|
* @property # <<<<<<<<<<<<<<
|
@@ -3272,7 +3273,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
3272
3273
|
return __pyx_r;
|
3273
3274
|
}
|
3274
3275
|
|
3275
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3276
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":361
|
3276
3277
|
* return PyArray_SIZE(self)
|
3277
3278
|
*
|
3278
3279
|
* @property # <<<<<<<<<<<<<<
|
@@ -3283,7 +3284,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
|
|
3283
3284
|
static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
|
3284
3285
|
char *__pyx_r;
|
3285
3286
|
|
3286
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3287
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":368
|
3287
3288
|
* of `PyArray_DATA()` instead, which returns a 'void*'.
|
3288
3289
|
* """
|
3289
3290
|
* return PyArray_BYTES(self) # <<<<<<<<<<<<<<
|
@@ -3293,7 +3294,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
3293
3294
|
__pyx_r = PyArray_BYTES(__pyx_v_self);
|
3294
3295
|
goto __pyx_L0;
|
3295
3296
|
|
3296
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3297
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":361
|
3297
3298
|
* return PyArray_SIZE(self)
|
3298
3299
|
*
|
3299
3300
|
* @property # <<<<<<<<<<<<<<
|
@@ -3306,7 +3307,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
|
|
3306
3307
|
return __pyx_r;
|
3307
3308
|
}
|
3308
3309
|
|
3309
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3310
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
3310
3311
|
* ctypedef long double complex clongdouble_t
|
3311
3312
|
*
|
3312
3313
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -3323,7 +3324,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
3323
3324
|
int __pyx_clineno = 0;
|
3324
3325
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0);
|
3325
3326
|
|
3326
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3327
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":777
|
3327
3328
|
*
|
3328
3329
|
* cdef inline object PyArray_MultiIterNew1(a):
|
3329
3330
|
* return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
|
@@ -3337,7 +3338,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
3337
3338
|
__pyx_t_1 = 0;
|
3338
3339
|
goto __pyx_L0;
|
3339
3340
|
|
3340
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3341
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":776
|
3341
3342
|
* ctypedef long double complex clongdouble_t
|
3342
3343
|
*
|
3343
3344
|
* cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
|
@@ -3356,7 +3357,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
|
|
3356
3357
|
return __pyx_r;
|
3357
3358
|
}
|
3358
3359
|
|
3359
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3360
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
3360
3361
|
* return PyArray_MultiIterNew(1, <void*>a)
|
3361
3362
|
*
|
3362
3363
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -3373,7 +3374,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
3373
3374
|
int __pyx_clineno = 0;
|
3374
3375
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0);
|
3375
3376
|
|
3376
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3377
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":780
|
3377
3378
|
*
|
3378
3379
|
* cdef inline object PyArray_MultiIterNew2(a, b):
|
3379
3380
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
|
@@ -3387,7 +3388,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
3387
3388
|
__pyx_t_1 = 0;
|
3388
3389
|
goto __pyx_L0;
|
3389
3390
|
|
3390
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3391
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":779
|
3391
3392
|
* return PyArray_MultiIterNew(1, <void*>a)
|
3392
3393
|
*
|
3393
3394
|
* cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
|
@@ -3406,7 +3407,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
|
|
3406
3407
|
return __pyx_r;
|
3407
3408
|
}
|
3408
3409
|
|
3409
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3410
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
3410
3411
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
3411
3412
|
*
|
3412
3413
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -3423,7 +3424,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
3423
3424
|
int __pyx_clineno = 0;
|
3424
3425
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0);
|
3425
3426
|
|
3426
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3427
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":783
|
3427
3428
|
*
|
3428
3429
|
* cdef inline object PyArray_MultiIterNew3(a, b, c):
|
3429
3430
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
|
@@ -3437,7 +3438,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
3437
3438
|
__pyx_t_1 = 0;
|
3438
3439
|
goto __pyx_L0;
|
3439
3440
|
|
3440
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3441
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":782
|
3441
3442
|
* return PyArray_MultiIterNew(2, <void*>a, <void*>b)
|
3442
3443
|
*
|
3443
3444
|
* cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
|
@@ -3456,7 +3457,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
|
|
3456
3457
|
return __pyx_r;
|
3457
3458
|
}
|
3458
3459
|
|
3459
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3460
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
3460
3461
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
3461
3462
|
*
|
3462
3463
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -3473,7 +3474,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
3473
3474
|
int __pyx_clineno = 0;
|
3474
3475
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0);
|
3475
3476
|
|
3476
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3477
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":786
|
3477
3478
|
*
|
3478
3479
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d):
|
3479
3480
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
|
@@ -3487,7 +3488,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
3487
3488
|
__pyx_t_1 = 0;
|
3488
3489
|
goto __pyx_L0;
|
3489
3490
|
|
3490
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3491
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":785
|
3491
3492
|
* return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
|
3492
3493
|
*
|
3493
3494
|
* cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
|
@@ -3506,7 +3507,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
|
|
3506
3507
|
return __pyx_r;
|
3507
3508
|
}
|
3508
3509
|
|
3509
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3510
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
3510
3511
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
3511
3512
|
*
|
3512
3513
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -3523,7 +3524,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
3523
3524
|
int __pyx_clineno = 0;
|
3524
3525
|
__Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0);
|
3525
3526
|
|
3526
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3527
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":789
|
3527
3528
|
*
|
3528
3529
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
|
3529
3530
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
|
@@ -3537,7 +3538,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
3537
3538
|
__pyx_t_1 = 0;
|
3538
3539
|
goto __pyx_L0;
|
3539
3540
|
|
3540
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3541
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":788
|
3541
3542
|
* return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
|
3542
3543
|
*
|
3543
3544
|
* cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
|
@@ -3556,7 +3557,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
|
|
3556
3557
|
return __pyx_r;
|
3557
3558
|
}
|
3558
3559
|
|
3559
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3560
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
3560
3561
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
3561
3562
|
*
|
3562
3563
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -3571,7 +3572,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3571
3572
|
PyObject *__pyx_t_2;
|
3572
3573
|
__Pyx_RefNannySetupContext("PyDataType_SHAPE", 0);
|
3573
3574
|
|
3574
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3575
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
3575
3576
|
*
|
3576
3577
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
3577
3578
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -3581,7 +3582,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3581
3582
|
__pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
|
3582
3583
|
if (__pyx_t_1) {
|
3583
3584
|
|
3584
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3585
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":793
|
3585
3586
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
3586
3587
|
* if PyDataType_HASSUBARRAY(d):
|
3587
3588
|
* return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
|
@@ -3594,7 +3595,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3594
3595
|
__pyx_r = ((PyObject*)__pyx_t_2);
|
3595
3596
|
goto __pyx_L0;
|
3596
3597
|
|
3597
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3598
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":792
|
3598
3599
|
*
|
3599
3600
|
* cdef inline tuple PyDataType_SHAPE(dtype d):
|
3600
3601
|
* if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
|
@@ -3603,7 +3604,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3603
3604
|
*/
|
3604
3605
|
}
|
3605
3606
|
|
3606
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3607
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":795
|
3607
3608
|
* return <tuple>d.subarray.shape
|
3608
3609
|
* else:
|
3609
3610
|
* return () # <<<<<<<<<<<<<<
|
@@ -3617,7 +3618,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3617
3618
|
goto __pyx_L0;
|
3618
3619
|
}
|
3619
3620
|
|
3620
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3621
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":791
|
3621
3622
|
* return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
|
3622
3623
|
*
|
3623
3624
|
* cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
|
@@ -3632,7 +3633,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
|
|
3632
3633
|
return __pyx_r;
|
3633
3634
|
}
|
3634
3635
|
|
3635
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3636
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
3636
3637
|
* int _import_umath() except -1
|
3637
3638
|
*
|
3638
3639
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -3646,7 +3647,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3646
3647
|
const char *__pyx_filename = NULL;
|
3647
3648
|
int __pyx_clineno = 0;
|
3648
3649
|
|
3649
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3650
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":995
|
3650
3651
|
*
|
3651
3652
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
3652
3653
|
* Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
|
@@ -3655,7 +3656,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3655
3656
|
*/
|
3656
3657
|
Py_INCREF(__pyx_v_base);
|
3657
3658
|
|
3658
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3659
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":996
|
3659
3660
|
* cdef inline void set_array_base(ndarray arr, object base) except *:
|
3660
3661
|
* Py_INCREF(base) # important to do this before stealing the reference below!
|
3661
3662
|
* PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
|
@@ -3664,7 +3665,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3664
3665
|
*/
|
3665
3666
|
__pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 996, __pyx_L1_error)
|
3666
3667
|
|
3667
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3668
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":994
|
3668
3669
|
* int _import_umath() except -1
|
3669
3670
|
*
|
3670
3671
|
* cdef inline void set_array_base(ndarray arr, object base) except *: # <<<<<<<<<<<<<<
|
@@ -3679,7 +3680,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
|
|
3679
3680
|
__pyx_L0:;
|
3680
3681
|
}
|
3681
3682
|
|
3682
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3683
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
3683
3684
|
* PyArray_SetBaseObject(arr, base)
|
3684
3685
|
*
|
3685
3686
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -3694,7 +3695,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3694
3695
|
int __pyx_t_1;
|
3695
3696
|
__Pyx_RefNannySetupContext("get_array_base", 0);
|
3696
3697
|
|
3697
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3698
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":999
|
3698
3699
|
*
|
3699
3700
|
* cdef inline object get_array_base(ndarray arr):
|
3700
3701
|
* base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
|
@@ -3703,7 +3704,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3703
3704
|
*/
|
3704
3705
|
__pyx_v_base = PyArray_BASE(__pyx_v_arr);
|
3705
3706
|
|
3706
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3707
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1000
|
3707
3708
|
* cdef inline object get_array_base(ndarray arr):
|
3708
3709
|
* base = PyArray_BASE(arr)
|
3709
3710
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -3713,7 +3714,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3713
3714
|
__pyx_t_1 = (__pyx_v_base == NULL);
|
3714
3715
|
if (__pyx_t_1) {
|
3715
3716
|
|
3716
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3717
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1001
|
3717
3718
|
* base = PyArray_BASE(arr)
|
3718
3719
|
* if base is NULL:
|
3719
3720
|
* return None # <<<<<<<<<<<<<<
|
@@ -3724,7 +3725,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3724
3725
|
__pyx_r = Py_None; __Pyx_INCREF(Py_None);
|
3725
3726
|
goto __pyx_L0;
|
3726
3727
|
|
3727
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3728
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1000
|
3728
3729
|
* cdef inline object get_array_base(ndarray arr):
|
3729
3730
|
* base = PyArray_BASE(arr)
|
3730
3731
|
* if base is NULL: # <<<<<<<<<<<<<<
|
@@ -3733,7 +3734,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3733
3734
|
*/
|
3734
3735
|
}
|
3735
3736
|
|
3736
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3737
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1002
|
3737
3738
|
* if base is NULL:
|
3738
3739
|
* return None
|
3739
3740
|
* return <object>base # <<<<<<<<<<<<<<
|
@@ -3745,7 +3746,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3745
3746
|
__pyx_r = ((PyObject *)__pyx_v_base);
|
3746
3747
|
goto __pyx_L0;
|
3747
3748
|
|
3748
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3749
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":998
|
3749
3750
|
* PyArray_SetBaseObject(arr, base)
|
3750
3751
|
*
|
3751
3752
|
* cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
|
@@ -3760,7 +3761,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
|
|
3760
3761
|
return __pyx_r;
|
3761
3762
|
}
|
3762
3763
|
|
3763
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3764
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1006
|
3764
3765
|
* # Versions of the import_* functions which are more suitable for
|
3765
3766
|
* # Cython code.
|
3766
3767
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -3787,7 +3788,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3787
3788
|
int __pyx_clineno = 0;
|
3788
3789
|
__Pyx_RefNannySetupContext("import_array", 0);
|
3789
3790
|
|
3790
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3791
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
3791
3792
|
* # Cython code.
|
3792
3793
|
* cdef inline int import_array() except -1:
|
3793
3794
|
* try: # <<<<<<<<<<<<<<
|
@@ -3803,7 +3804,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3803
3804
|
__Pyx_XGOTREF(__pyx_t_3);
|
3804
3805
|
/*try:*/ {
|
3805
3806
|
|
3806
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3807
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1008
|
3807
3808
|
* cdef inline int import_array() except -1:
|
3808
3809
|
* try:
|
3809
3810
|
* __pyx_import_array() # <<<<<<<<<<<<<<
|
@@ -3812,7 +3813,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3812
3813
|
*/
|
3813
3814
|
__pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1008, __pyx_L3_error)
|
3814
3815
|
|
3815
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3816
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
3816
3817
|
* # Cython code.
|
3817
3818
|
* cdef inline int import_array() except -1:
|
3818
3819
|
* try: # <<<<<<<<<<<<<<
|
@@ -3826,7 +3827,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3826
3827
|
goto __pyx_L8_try_end;
|
3827
3828
|
__pyx_L3_error:;
|
3828
3829
|
|
3829
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3830
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1009
|
3830
3831
|
* try:
|
3831
3832
|
* __pyx_import_array()
|
3832
3833
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -3841,7 +3842,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3841
3842
|
__Pyx_XGOTREF(__pyx_t_6);
|
3842
3843
|
__Pyx_XGOTREF(__pyx_t_7);
|
3843
3844
|
|
3844
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3845
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1010
|
3845
3846
|
* __pyx_import_array()
|
3846
3847
|
* except Exception:
|
3847
3848
|
* raise ImportError("numpy._core.multiarray failed to import") # <<<<<<<<<<<<<<
|
@@ -3866,7 +3867,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3866
3867
|
}
|
3867
3868
|
goto __pyx_L5_except_error;
|
3868
3869
|
|
3869
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3870
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1007
|
3870
3871
|
* # Cython code.
|
3871
3872
|
* cdef inline int import_array() except -1:
|
3872
3873
|
* try: # <<<<<<<<<<<<<<
|
@@ -3882,7 +3883,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3882
3883
|
__pyx_L8_try_end:;
|
3883
3884
|
}
|
3884
3885
|
|
3885
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3886
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1006
|
3886
3887
|
* # Versions of the import_* functions which are more suitable for
|
3887
3888
|
* # Cython code.
|
3888
3889
|
* cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
|
@@ -3907,7 +3908,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
|
|
3907
3908
|
return __pyx_r;
|
3908
3909
|
}
|
3909
3910
|
|
3910
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3911
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1012
|
3911
3912
|
* raise ImportError("numpy._core.multiarray failed to import")
|
3912
3913
|
*
|
3913
3914
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -3934,7 +3935,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3934
3935
|
int __pyx_clineno = 0;
|
3935
3936
|
__Pyx_RefNannySetupContext("import_umath", 0);
|
3936
3937
|
|
3937
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3938
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
3938
3939
|
*
|
3939
3940
|
* cdef inline int import_umath() except -1:
|
3940
3941
|
* try: # <<<<<<<<<<<<<<
|
@@ -3950,7 +3951,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3950
3951
|
__Pyx_XGOTREF(__pyx_t_3);
|
3951
3952
|
/*try:*/ {
|
3952
3953
|
|
3953
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3954
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1014
|
3954
3955
|
* cdef inline int import_umath() except -1:
|
3955
3956
|
* try:
|
3956
3957
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -3959,7 +3960,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3959
3960
|
*/
|
3960
3961
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1014, __pyx_L3_error)
|
3961
3962
|
|
3962
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3963
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
3963
3964
|
*
|
3964
3965
|
* cdef inline int import_umath() except -1:
|
3965
3966
|
* try: # <<<<<<<<<<<<<<
|
@@ -3973,7 +3974,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3973
3974
|
goto __pyx_L8_try_end;
|
3974
3975
|
__pyx_L3_error:;
|
3975
3976
|
|
3976
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3977
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1015
|
3977
3978
|
* try:
|
3978
3979
|
* _import_umath()
|
3979
3980
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -3988,7 +3989,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
3988
3989
|
__Pyx_XGOTREF(__pyx_t_6);
|
3989
3990
|
__Pyx_XGOTREF(__pyx_t_7);
|
3990
3991
|
|
3991
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
3992
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1016
|
3992
3993
|
* _import_umath()
|
3993
3994
|
* except Exception:
|
3994
3995
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -4013,7 +4014,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
4013
4014
|
}
|
4014
4015
|
goto __pyx_L5_except_error;
|
4015
4016
|
|
4016
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4017
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1013
|
4017
4018
|
*
|
4018
4019
|
* cdef inline int import_umath() except -1:
|
4019
4020
|
* try: # <<<<<<<<<<<<<<
|
@@ -4029,7 +4030,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
4029
4030
|
__pyx_L8_try_end:;
|
4030
4031
|
}
|
4031
4032
|
|
4032
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4033
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1012
|
4033
4034
|
* raise ImportError("numpy._core.multiarray failed to import")
|
4034
4035
|
*
|
4035
4036
|
* cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
|
@@ -4054,7 +4055,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
|
|
4054
4055
|
return __pyx_r;
|
4055
4056
|
}
|
4056
4057
|
|
4057
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4058
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1018
|
4058
4059
|
* raise ImportError("numpy._core.umath failed to import")
|
4059
4060
|
*
|
4060
4061
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -4081,7 +4082,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4081
4082
|
int __pyx_clineno = 0;
|
4082
4083
|
__Pyx_RefNannySetupContext("import_ufunc", 0);
|
4083
4084
|
|
4084
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4085
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
4085
4086
|
*
|
4086
4087
|
* cdef inline int import_ufunc() except -1:
|
4087
4088
|
* try: # <<<<<<<<<<<<<<
|
@@ -4097,7 +4098,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4097
4098
|
__Pyx_XGOTREF(__pyx_t_3);
|
4098
4099
|
/*try:*/ {
|
4099
4100
|
|
4100
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4101
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1020
|
4101
4102
|
* cdef inline int import_ufunc() except -1:
|
4102
4103
|
* try:
|
4103
4104
|
* _import_umath() # <<<<<<<<<<<<<<
|
@@ -4106,7 +4107,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4106
4107
|
*/
|
4107
4108
|
__pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 1020, __pyx_L3_error)
|
4108
4109
|
|
4109
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4110
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
4110
4111
|
*
|
4111
4112
|
* cdef inline int import_ufunc() except -1:
|
4112
4113
|
* try: # <<<<<<<<<<<<<<
|
@@ -4120,7 +4121,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4120
4121
|
goto __pyx_L8_try_end;
|
4121
4122
|
__pyx_L3_error:;
|
4122
4123
|
|
4123
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4124
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1021
|
4124
4125
|
* try:
|
4125
4126
|
* _import_umath()
|
4126
4127
|
* except Exception: # <<<<<<<<<<<<<<
|
@@ -4135,7 +4136,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4135
4136
|
__Pyx_XGOTREF(__pyx_t_6);
|
4136
4137
|
__Pyx_XGOTREF(__pyx_t_7);
|
4137
4138
|
|
4138
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4139
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1022
|
4139
4140
|
* _import_umath()
|
4140
4141
|
* except Exception:
|
4141
4142
|
* raise ImportError("numpy._core.umath failed to import") # <<<<<<<<<<<<<<
|
@@ -4160,7 +4161,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4160
4161
|
}
|
4161
4162
|
goto __pyx_L5_except_error;
|
4162
4163
|
|
4163
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4164
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1019
|
4164
4165
|
*
|
4165
4166
|
* cdef inline int import_ufunc() except -1:
|
4166
4167
|
* try: # <<<<<<<<<<<<<<
|
@@ -4176,7 +4177,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4176
4177
|
__pyx_L8_try_end:;
|
4177
4178
|
}
|
4178
4179
|
|
4179
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4180
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1018
|
4180
4181
|
* raise ImportError("numpy._core.umath failed to import")
|
4181
4182
|
*
|
4182
4183
|
* cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
|
@@ -4201,7 +4202,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4201
4202
|
return __pyx_r;
|
4202
4203
|
}
|
4203
4204
|
|
4204
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4205
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1025
|
4205
4206
|
*
|
4206
4207
|
*
|
4207
4208
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4212,7 +4213,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
|
|
4212
4213
|
static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
|
4213
4214
|
int __pyx_r;
|
4214
4215
|
|
4215
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4216
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1037
|
4216
4217
|
* bool
|
4217
4218
|
* """
|
4218
4219
|
* return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
|
@@ -4222,7 +4223,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
4222
4223
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
|
4223
4224
|
goto __pyx_L0;
|
4224
4225
|
|
4225
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4226
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1025
|
4226
4227
|
*
|
4227
4228
|
*
|
4228
4229
|
* cdef inline bint is_timedelta64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4235,7 +4236,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
4235
4236
|
return __pyx_r;
|
4236
4237
|
}
|
4237
4238
|
|
4238
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4239
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1040
|
4239
4240
|
*
|
4240
4241
|
*
|
4241
4242
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4246,7 +4247,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
|
|
4246
4247
|
static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
|
4247
4248
|
int __pyx_r;
|
4248
4249
|
|
4249
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4250
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1052
|
4250
4251
|
* bool
|
4251
4252
|
* """
|
4252
4253
|
* return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
|
@@ -4256,7 +4257,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
4256
4257
|
__pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
|
4257
4258
|
goto __pyx_L0;
|
4258
4259
|
|
4259
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4260
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1040
|
4260
4261
|
*
|
4261
4262
|
*
|
4262
4263
|
* cdef inline bint is_datetime64_object(object obj) noexcept: # <<<<<<<<<<<<<<
|
@@ -4269,7 +4270,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
4269
4270
|
return __pyx_r;
|
4270
4271
|
}
|
4271
4272
|
|
4272
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4273
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1055
|
4273
4274
|
*
|
4274
4275
|
*
|
4275
4276
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4280,7 +4281,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
|
|
4280
4281
|
static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
|
4281
4282
|
npy_datetime __pyx_r;
|
4282
4283
|
|
4283
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4284
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1062
|
4284
4285
|
* also needed. That can be found using `get_datetime64_unit`.
|
4285
4286
|
* """
|
4286
4287
|
* return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -4290,7 +4291,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
4290
4291
|
__pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
|
4291
4292
|
goto __pyx_L0;
|
4292
4293
|
|
4293
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4294
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1055
|
4294
4295
|
*
|
4295
4296
|
*
|
4296
4297
|
* cdef inline npy_datetime get_datetime64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4303,7 +4304,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
4303
4304
|
return __pyx_r;
|
4304
4305
|
}
|
4305
4306
|
|
4306
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4307
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1065
|
4307
4308
|
*
|
4308
4309
|
*
|
4309
4310
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4314,7 +4315,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
|
|
4314
4315
|
static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
|
4315
4316
|
npy_timedelta __pyx_r;
|
4316
4317
|
|
4317
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4318
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1069
|
4318
4319
|
* returns the int64 value underlying scalar numpy timedelta64 object
|
4319
4320
|
* """
|
4320
4321
|
* return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
|
@@ -4324,7 +4325,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
4324
4325
|
__pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
|
4325
4326
|
goto __pyx_L0;
|
4326
4327
|
|
4327
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4328
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1065
|
4328
4329
|
*
|
4329
4330
|
*
|
4330
4331
|
* cdef inline npy_timedelta get_timedelta64_value(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4337,7 +4338,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
4337
4338
|
return __pyx_r;
|
4338
4339
|
}
|
4339
4340
|
|
4340
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4341
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1072
|
4341
4342
|
*
|
4342
4343
|
*
|
4343
4344
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4348,7 +4349,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
|
|
4348
4349
|
static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
|
4349
4350
|
NPY_DATETIMEUNIT __pyx_r;
|
4350
4351
|
|
4351
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4352
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1076
|
4352
4353
|
* returns the unit part of the dtype for a numpy datetime64 object.
|
4353
4354
|
* """
|
4354
4355
|
* return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
|
@@ -4358,7 +4359,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
|
|
4358
4359
|
__pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
|
4359
4360
|
goto __pyx_L0;
|
4360
4361
|
|
4361
|
-
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-
|
4362
|
+
/* "../../../../../private/var/folders/y6/nj790rtn62lfktb1sh__79hc0000gn/T/pip-build-env-sh8nzp6u/overlay/lib/python3.11/site-packages/numpy/__init__.cython-30.pxd":1072
|
4362
4363
|
*
|
4363
4364
|
*
|
4364
4365
|
* cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) noexcept nogil: # <<<<<<<<<<<<<<
|
@@ -4447,153 +4448,153 @@ static int __Pyx_modinit_type_import_code(__pyx_mstatetype *__pyx_mstate) {
|
|
4447
4448
|
/*--- Type import code ---*/
|
4448
4449
|
__pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 9, __pyx_L1_error)
|
4449
4450
|
__Pyx_GOTREF(__pyx_t_1);
|
4450
|
-
__pyx_mstate->__pyx_ptype_7cpython_4type_type =
|
4451
|
+
__pyx_mstate->__pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_1_4(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
|
4451
4452
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4452
|
-
sizeof(PyTypeObject),
|
4453
|
+
sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyTypeObject),
|
4453
4454
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4454
4455
|
0, 0,
|
4455
4456
|
#else
|
4456
|
-
sizeof(PyHeapTypeObject),
|
4457
|
+
sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyHeapTypeObject),
|
4457
4458
|
#endif
|
4458
|
-
|
4459
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error)
|
4459
4460
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
4460
4461
|
__pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 228, __pyx_L1_error)
|
4461
4462
|
__Pyx_GOTREF(__pyx_t_1);
|
4462
|
-
__pyx_mstate->__pyx_ptype_5numpy_dtype =
|
4463
|
+
__pyx_mstate->__pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "dtype",
|
4463
4464
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4464
|
-
sizeof(PyArray_Descr),
|
4465
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
4465
4466
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4466
|
-
sizeof(PyArray_Descr),
|
4467
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
4467
4468
|
#else
|
4468
|
-
sizeof(PyArray_Descr),
|
4469
|
+
sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArray_Descr),
|
4469
4470
|
#endif
|
4470
|
-
|
4471
|
-
__pyx_mstate->__pyx_ptype_5numpy_flatiter =
|
4471
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_dtype) __PYX_ERR(1, 228, __pyx_L1_error)
|
4472
|
+
__pyx_mstate->__pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "flatiter",
|
4472
4473
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4473
|
-
sizeof(PyArrayIterObject),
|
4474
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
4474
4475
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4475
|
-
sizeof(PyArrayIterObject),
|
4476
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
4476
4477
|
#else
|
4477
|
-
sizeof(PyArrayIterObject),
|
4478
|
+
sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayIterObject),
|
4478
4479
|
#endif
|
4479
|
-
|
4480
|
-
__pyx_mstate->__pyx_ptype_5numpy_broadcast =
|
4480
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_flatiter) __PYX_ERR(1, 273, __pyx_L1_error)
|
4481
|
+
__pyx_mstate->__pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "broadcast",
|
4481
4482
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4482
|
-
sizeof(PyArrayMultiIterObject),
|
4483
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
4483
4484
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4484
|
-
sizeof(PyArrayMultiIterObject),
|
4485
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
4485
4486
|
#else
|
4486
|
-
sizeof(PyArrayMultiIterObject),
|
4487
|
+
sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayMultiIterObject),
|
4487
4488
|
#endif
|
4488
|
-
|
4489
|
-
__pyx_mstate->__pyx_ptype_5numpy_ndarray =
|
4489
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_broadcast) __PYX_ERR(1, 277, __pyx_L1_error)
|
4490
|
+
__pyx_mstate->__pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "ndarray",
|
4490
4491
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4491
|
-
sizeof(PyArrayObject),
|
4492
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
4492
4493
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4493
|
-
sizeof(PyArrayObject),
|
4494
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
4494
4495
|
#else
|
4495
|
-
sizeof(PyArrayObject),
|
4496
|
+
sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyArrayObject),
|
4496
4497
|
#endif
|
4497
|
-
|
4498
|
-
__pyx_mstate->__pyx_ptype_5numpy_generic =
|
4498
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_ndarray) __PYX_ERR(1, 316, __pyx_L1_error)
|
4499
|
+
__pyx_mstate->__pyx_ptype_5numpy_generic = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "generic",
|
4499
4500
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4500
|
-
sizeof(PyObject),
|
4501
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4501
4502
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4502
|
-
sizeof(PyObject),
|
4503
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4503
4504
|
#else
|
4504
|
-
sizeof(PyObject),
|
4505
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4505
4506
|
#endif
|
4506
|
-
|
4507
|
-
__pyx_mstate->__pyx_ptype_5numpy_number =
|
4507
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_generic) __PYX_ERR(1, 825, __pyx_L1_error)
|
4508
|
+
__pyx_mstate->__pyx_ptype_5numpy_number = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "number",
|
4508
4509
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4509
|
-
sizeof(PyObject),
|
4510
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4510
4511
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4511
|
-
sizeof(PyObject),
|
4512
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4512
4513
|
#else
|
4513
|
-
sizeof(PyObject),
|
4514
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4514
4515
|
#endif
|
4515
|
-
|
4516
|
-
__pyx_mstate->__pyx_ptype_5numpy_integer =
|
4516
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_number) __PYX_ERR(1, 827, __pyx_L1_error)
|
4517
|
+
__pyx_mstate->__pyx_ptype_5numpy_integer = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "integer",
|
4517
4518
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4518
|
-
sizeof(PyObject),
|
4519
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4519
4520
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4520
|
-
sizeof(PyObject),
|
4521
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4521
4522
|
#else
|
4522
|
-
sizeof(PyObject),
|
4523
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4523
4524
|
#endif
|
4524
|
-
|
4525
|
-
__pyx_mstate->__pyx_ptype_5numpy_signedinteger =
|
4525
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_integer) __PYX_ERR(1, 829, __pyx_L1_error)
|
4526
|
+
__pyx_mstate->__pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "signedinteger",
|
4526
4527
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4527
|
-
sizeof(PyObject),
|
4528
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4528
4529
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4529
|
-
sizeof(PyObject),
|
4530
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4530
4531
|
#else
|
4531
|
-
sizeof(PyObject),
|
4532
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4532
4533
|
#endif
|
4533
|
-
|
4534
|
-
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger =
|
4534
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_signedinteger) __PYX_ERR(1, 831, __pyx_L1_error)
|
4535
|
+
__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "unsignedinteger",
|
4535
4536
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4536
|
-
sizeof(PyObject),
|
4537
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4537
4538
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4538
|
-
sizeof(PyObject),
|
4539
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4539
4540
|
#else
|
4540
|
-
sizeof(PyObject),
|
4541
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4541
4542
|
#endif
|
4542
|
-
|
4543
|
-
__pyx_mstate->__pyx_ptype_5numpy_inexact =
|
4543
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(1, 833, __pyx_L1_error)
|
4544
|
+
__pyx_mstate->__pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "inexact",
|
4544
4545
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4545
|
-
sizeof(PyObject),
|
4546
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4546
4547
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4547
|
-
sizeof(PyObject),
|
4548
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4548
4549
|
#else
|
4549
|
-
sizeof(PyObject),
|
4550
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4550
4551
|
#endif
|
4551
|
-
|
4552
|
-
__pyx_mstate->__pyx_ptype_5numpy_floating =
|
4552
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_inexact) __PYX_ERR(1, 835, __pyx_L1_error)
|
4553
|
+
__pyx_mstate->__pyx_ptype_5numpy_floating = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "floating",
|
4553
4554
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4554
|
-
sizeof(PyObject),
|
4555
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4555
4556
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4556
|
-
sizeof(PyObject),
|
4557
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4557
4558
|
#else
|
4558
|
-
sizeof(PyObject),
|
4559
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4559
4560
|
#endif
|
4560
|
-
|
4561
|
-
__pyx_mstate->__pyx_ptype_5numpy_complexfloating =
|
4561
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_floating) __PYX_ERR(1, 837, __pyx_L1_error)
|
4562
|
+
__pyx_mstate->__pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "complexfloating",
|
4562
4563
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4563
|
-
sizeof(PyObject),
|
4564
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4564
4565
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4565
|
-
sizeof(PyObject),
|
4566
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4566
4567
|
#else
|
4567
|
-
sizeof(PyObject),
|
4568
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4568
4569
|
#endif
|
4569
|
-
|
4570
|
-
__pyx_mstate->__pyx_ptype_5numpy_flexible =
|
4570
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_complexfloating) __PYX_ERR(1, 839, __pyx_L1_error)
|
4571
|
+
__pyx_mstate->__pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "flexible",
|
4571
4572
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4572
|
-
sizeof(PyObject),
|
4573
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4573
4574
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4574
|
-
sizeof(PyObject),
|
4575
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4575
4576
|
#else
|
4576
|
-
sizeof(PyObject),
|
4577
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4577
4578
|
#endif
|
4578
|
-
|
4579
|
-
__pyx_mstate->__pyx_ptype_5numpy_character =
|
4579
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_flexible) __PYX_ERR(1, 841, __pyx_L1_error)
|
4580
|
+
__pyx_mstate->__pyx_ptype_5numpy_character = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "character",
|
4580
4581
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4581
|
-
sizeof(PyObject),
|
4582
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4582
4583
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4583
|
-
sizeof(PyObject),
|
4584
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4584
4585
|
#else
|
4585
|
-
sizeof(PyObject),
|
4586
|
+
sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyObject),
|
4586
4587
|
#endif
|
4587
|
-
|
4588
|
-
__pyx_mstate->__pyx_ptype_5numpy_ufunc =
|
4588
|
+
__Pyx_ImportType_CheckSize_Warn_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_character) __PYX_ERR(1, 843, __pyx_L1_error)
|
4589
|
+
__pyx_mstate->__pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_1_4(__pyx_t_1, "numpy", "ufunc",
|
4589
4590
|
#if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
|
4590
|
-
sizeof(PyUFuncObject),
|
4591
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
4591
4592
|
#elif CYTHON_COMPILING_IN_LIMITED_API
|
4592
|
-
sizeof(PyUFuncObject),
|
4593
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
4593
4594
|
#else
|
4594
|
-
sizeof(PyUFuncObject),
|
4595
|
+
sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_1_4(PyUFuncObject),
|
4595
4596
|
#endif
|
4596
|
-
|
4597
|
+
__Pyx_ImportType_CheckSize_Ignore_3_1_4); if (!__pyx_mstate->__pyx_ptype_5numpy_ufunc) __PYX_ERR(1, 907, __pyx_L1_error)
|
4597
4598
|
__Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
|
4598
4599
|
__Pyx_RefNannyFinishContext();
|
4599
4600
|
return 0;
|
@@ -4909,34 +4910,34 @@ __Pyx_RefNannySetupContext("PyInit_commons", 0);
|
|
4909
4910
|
(void)__Pyx_modinit_function_import_code(__pyx_mstate);
|
4910
4911
|
/*--- Execution code ---*/
|
4911
4912
|
|
4912
|
-
/* "edsger/commons.pyx":
|
4913
|
-
*
|
4913
|
+
/* "edsger/commons.pyx":12
|
4914
|
+
* # cython: initializedcheck=False
|
4914
4915
|
*
|
4915
4916
|
* import numpy as np # <<<<<<<<<<<<<<
|
4916
4917
|
*
|
4917
4918
|
* DTYPE_PY = np.float64
|
4918
4919
|
*/
|
4919
|
-
__pyx_t_2 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
4920
|
+
__pyx_t_2 = __Pyx_ImportDottedModule(__pyx_mstate_global->__pyx_n_u_numpy, NULL); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error)
|
4920
4921
|
__Pyx_GOTREF(__pyx_t_2);
|
4921
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_2) < 0) __PYX_ERR(0,
|
4922
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_np, __pyx_t_2) < 0) __PYX_ERR(0, 12, __pyx_L1_error)
|
4922
4923
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
4923
4924
|
|
4924
|
-
/* "edsger/commons.pyx":
|
4925
|
+
/* "edsger/commons.pyx":14
|
4925
4926
|
* import numpy as np
|
4926
4927
|
*
|
4927
4928
|
* DTYPE_PY = np.float64 # <<<<<<<<<<<<<<
|
4928
4929
|
* DTYPE_INF = <DTYPE_t>np.finfo(dtype=DTYPE_PY).max
|
4929
4930
|
* DTYPE_INF_PY = DTYPE_INF
|
4930
4931
|
*/
|
4931
|
-
__Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0,
|
4932
|
+
__Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 14, __pyx_L1_error)
|
4932
4933
|
__Pyx_GOTREF(__pyx_t_2);
|
4933
|
-
__pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_3)) __PYX_ERR(0,
|
4934
|
+
__pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_mstate_global->__pyx_n_u_float64); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 14, __pyx_L1_error)
|
4934
4935
|
__Pyx_GOTREF(__pyx_t_3);
|
4935
4936
|
__Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
|
4936
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_DTYPE_PY, __pyx_t_3) < 0) __PYX_ERR(0,
|
4937
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_DTYPE_PY, __pyx_t_3) < 0) __PYX_ERR(0, 14, __pyx_L1_error)
|
4937
4938
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
4938
4939
|
|
4939
|
-
/* "edsger/commons.pyx":
|
4940
|
+
/* "edsger/commons.pyx":15
|
4940
4941
|
*
|
4941
4942
|
* DTYPE_PY = np.float64
|
4942
4943
|
* DTYPE_INF = <DTYPE_t>np.finfo(dtype=DTYPE_PY).max # <<<<<<<<<<<<<<
|
@@ -4944,47 +4945,47 @@ __Pyx_RefNannySetupContext("PyInit_commons", 0);
|
|
4944
4945
|
*
|
4945
4946
|
*/
|
4946
4947
|
__pyx_t_2 = NULL;
|
4947
|
-
__Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0,
|
4948
|
+
__Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_np); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4948
4949
|
__Pyx_GOTREF(__pyx_t_4);
|
4949
|
-
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_finfo); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
4950
|
+
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_finfo); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4950
4951
|
__Pyx_GOTREF(__pyx_t_5);
|
4951
4952
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
4952
|
-
__Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_DTYPE_PY); if (unlikely(!__pyx_t_4)) __PYX_ERR(0,
|
4953
|
+
__Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_mstate_global->__pyx_n_u_DTYPE_PY); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4953
4954
|
__Pyx_GOTREF(__pyx_t_4);
|
4954
4955
|
__pyx_t_6 = 1;
|
4955
4956
|
{
|
4956
4957
|
PyObject *__pyx_callargs[2 + ((CYTHON_VECTORCALL) ? 1 : 0)] = {__pyx_t_2, NULL};
|
4957
|
-
__pyx_t_7 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0,
|
4958
|
+
__pyx_t_7 = __Pyx_MakeVectorcallBuilderKwds(1); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4958
4959
|
__Pyx_GOTREF(__pyx_t_7);
|
4959
|
-
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_7, __pyx_callargs+1, 0) < 0) __PYX_ERR(0,
|
4960
|
+
if (__Pyx_VectorcallBuilder_AddArg(__pyx_mstate_global->__pyx_n_u_dtype, __pyx_t_4, __pyx_t_7, __pyx_callargs+1, 0) < 0) __PYX_ERR(0, 15, __pyx_L1_error)
|
4960
4961
|
__pyx_t_3 = __Pyx_Object_Vectorcall_CallFromBuilder(__pyx_t_5, __pyx_callargs+__pyx_t_6, (1-__pyx_t_6) | (__pyx_t_6*__Pyx_PY_VECTORCALL_ARGUMENTS_OFFSET), __pyx_t_7);
|
4961
4962
|
__Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
|
4962
4963
|
__Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
|
4963
4964
|
__Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
|
4964
4965
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
4965
|
-
if (unlikely(!__pyx_t_3)) __PYX_ERR(0,
|
4966
|
+
if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4966
4967
|
__Pyx_GOTREF(__pyx_t_3);
|
4967
4968
|
}
|
4968
|
-
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_mstate_global->__pyx_n_u_max); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
4969
|
+
__pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_mstate_global->__pyx_n_u_max); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 15, __pyx_L1_error)
|
4969
4970
|
__Pyx_GOTREF(__pyx_t_5);
|
4970
4971
|
__Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
|
4971
|
-
__pyx_t_8 = __Pyx_PyFloat_AsDouble(__pyx_t_5); if (unlikely((__pyx_t_8 == ((npy_float64)-1)) && PyErr_Occurred())) __PYX_ERR(0,
|
4972
|
+
__pyx_t_8 = __Pyx_PyFloat_AsDouble(__pyx_t_5); if (unlikely((__pyx_t_8 == ((npy_float64)-1)) && PyErr_Occurred())) __PYX_ERR(0, 15, __pyx_L1_error)
|
4972
4973
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
4973
4974
|
__pyx_v_6edsger_7commons_DTYPE_INF = ((__pyx_t_6edsger_7commons_DTYPE_t)__pyx_t_8);
|
4974
4975
|
|
4975
|
-
/* "edsger/commons.pyx":
|
4976
|
+
/* "edsger/commons.pyx":16
|
4976
4977
|
* DTYPE_PY = np.float64
|
4977
4978
|
* DTYPE_INF = <DTYPE_t>np.finfo(dtype=DTYPE_PY).max
|
4978
4979
|
* DTYPE_INF_PY = DTYPE_INF # <<<<<<<<<<<<<<
|
4979
4980
|
*
|
4980
4981
|
* # Spiess & Florian
|
4981
4982
|
*/
|
4982
|
-
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_DTYPE_INF); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
4983
|
+
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_DTYPE_INF); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 16, __pyx_L1_error)
|
4983
4984
|
__Pyx_GOTREF(__pyx_t_5);
|
4984
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_DTYPE_INF_PY, __pyx_t_5) < 0) __PYX_ERR(0,
|
4985
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_DTYPE_INF_PY, __pyx_t_5) < 0) __PYX_ERR(0, 16, __pyx_L1_error)
|
4985
4986
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
4986
4987
|
|
4987
|
-
/* "edsger/commons.pyx":
|
4988
|
+
/* "edsger/commons.pyx":24
|
4988
4989
|
* # this must be a very large number depending on the precision on the computation
|
4989
4990
|
* # INF_FREQ << DTYPE_INF
|
4990
4991
|
* INF_FREQ = 1.0e+20 # <<<<<<<<<<<<<<
|
@@ -4993,40 +4994,44 @@ __Pyx_RefNannySetupContext("PyInit_commons", 0);
|
|
4993
4994
|
*/
|
4994
4995
|
__pyx_v_6edsger_7commons_INF_FREQ = 1.0e+20;
|
4995
4996
|
|
4996
|
-
/* "edsger/commons.pyx":
|
4997
|
+
/* "edsger/commons.pyx":25
|
4997
4998
|
* # INF_FREQ << DTYPE_INF
|
4998
4999
|
* INF_FREQ = 1.0e+20
|
4999
5000
|
* INF_FREQ_PY = INF_FREQ # <<<<<<<<<<<<<<
|
5000
5001
|
*
|
5001
5002
|
* # smallest frequency
|
5002
5003
|
*/
|
5003
|
-
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_INF_FREQ); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
5004
|
+
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_INF_FREQ); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 25, __pyx_L1_error)
|
5004
5005
|
__Pyx_GOTREF(__pyx_t_5);
|
5005
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_INF_FREQ_PY, __pyx_t_5) < 0) __PYX_ERR(0,
|
5006
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_INF_FREQ_PY, __pyx_t_5) < 0) __PYX_ERR(0, 25, __pyx_L1_error)
|
5006
5007
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
5007
5008
|
|
5008
|
-
/* "edsger/commons.pyx":
|
5009
|
+
/* "edsger/commons.pyx":30
|
5009
5010
|
* # WARNING: this must be small but not too small
|
5010
5011
|
* # 1 / MIN_FREQ << DTYPE_INF
|
5011
5012
|
* MIN_FREQ = 1.0 / INF_FREQ # <<<<<<<<<<<<<<
|
5012
5013
|
* MIN_FREQ_PY = MIN_FREQ
|
5013
5014
|
*
|
5014
5015
|
*/
|
5016
|
+
if (unlikely(__pyx_v_6edsger_7commons_INF_FREQ == 0)) {
|
5017
|
+
PyErr_SetString(PyExc_ZeroDivisionError, "float division");
|
5018
|
+
__PYX_ERR(0, 30, __pyx_L1_error)
|
5019
|
+
}
|
5015
5020
|
__pyx_v_6edsger_7commons_MIN_FREQ = (((__pyx_t_6edsger_7commons_DTYPE_t)1.0) / __pyx_v_6edsger_7commons_INF_FREQ);
|
5016
5021
|
|
5017
|
-
/* "edsger/commons.pyx":
|
5022
|
+
/* "edsger/commons.pyx":31
|
5018
5023
|
* # 1 / MIN_FREQ << DTYPE_INF
|
5019
5024
|
* MIN_FREQ = 1.0 / INF_FREQ
|
5020
5025
|
* MIN_FREQ_PY = MIN_FREQ # <<<<<<<<<<<<<<
|
5021
5026
|
*
|
5022
5027
|
* # a very small time interval
|
5023
5028
|
*/
|
5024
|
-
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_MIN_FREQ); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
5029
|
+
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_MIN_FREQ); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 31, __pyx_L1_error)
|
5025
5030
|
__Pyx_GOTREF(__pyx_t_5);
|
5026
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_MIN_FREQ_PY, __pyx_t_5) < 0) __PYX_ERR(0,
|
5031
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_MIN_FREQ_PY, __pyx_t_5) < 0) __PYX_ERR(0, 31, __pyx_L1_error)
|
5027
5032
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
5028
5033
|
|
5029
|
-
/* "edsger/commons.pyx":
|
5034
|
+
/* "edsger/commons.pyx":34
|
5030
5035
|
*
|
5031
5036
|
* # a very small time interval
|
5032
5037
|
* A_VERY_SMALL_TIME_INTERVAL = 1.0e+08 * MIN_FREQ # <<<<<<<<<<<<<<
|
@@ -5035,16 +5040,16 @@ __Pyx_RefNannySetupContext("PyInit_commons", 0);
|
|
5035
5040
|
*/
|
5036
5041
|
__pyx_v_6edsger_7commons_A_VERY_SMALL_TIME_INTERVAL = (1.0e+08 * __pyx_v_6edsger_7commons_MIN_FREQ);
|
5037
5042
|
|
5038
|
-
/* "edsger/commons.pyx":
|
5043
|
+
/* "edsger/commons.pyx":35
|
5039
5044
|
* # a very small time interval
|
5040
5045
|
* A_VERY_SMALL_TIME_INTERVAL = 1.0e+08 * MIN_FREQ
|
5041
5046
|
* A_VERY_SMALL_TIME_INTERVAL_PY = A_VERY_SMALL_TIME_INTERVAL # <<<<<<<<<<<<<<
|
5042
5047
|
*
|
5043
5048
|
*
|
5044
5049
|
*/
|
5045
|
-
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_A_VERY_SMALL_TIME_INTERVAL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0,
|
5050
|
+
__pyx_t_5 = PyFloat_FromDouble(__pyx_v_6edsger_7commons_A_VERY_SMALL_TIME_INTERVAL); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 35, __pyx_L1_error)
|
5046
5051
|
__Pyx_GOTREF(__pyx_t_5);
|
5047
|
-
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_A_VERY_SMALL_TIME_INTERVAL_PY, __pyx_t_5) < 0) __PYX_ERR(0,
|
5052
|
+
if (PyDict_SetItem(__pyx_mstate_global->__pyx_d, __pyx_mstate_global->__pyx_n_u_A_VERY_SMALL_TIME_INTERVAL_PY, __pyx_t_5) < 0) __PYX_ERR(0, 35, __pyx_L1_error)
|
5048
5053
|
__Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
|
5049
5054
|
|
5050
5055
|
/* "edsger/commons.pyx":1
|
@@ -5918,15 +5923,15 @@ bad:
|
|
5918
5923
|
}
|
5919
5924
|
|
5920
5925
|
/* TypeImport */
|
5921
|
-
#ifndef
|
5922
|
-
#define
|
5923
|
-
static PyTypeObject *
|
5924
|
-
size_t size, size_t alignment, enum
|
5926
|
+
#ifndef __PYX_HAVE_RT_ImportType_3_1_4
|
5927
|
+
#define __PYX_HAVE_RT_ImportType_3_1_4
|
5928
|
+
static PyTypeObject *__Pyx_ImportType_3_1_4(PyObject *module, const char *module_name, const char *class_name,
|
5929
|
+
size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_1_4 check_size)
|
5925
5930
|
{
|
5926
5931
|
PyObject *result = 0;
|
5927
5932
|
Py_ssize_t basicsize;
|
5928
5933
|
Py_ssize_t itemsize;
|
5929
|
-
#
|
5934
|
+
#ifdef Py_LIMITED_API
|
5930
5935
|
PyObject *py_basicsize;
|
5931
5936
|
PyObject *py_itemsize;
|
5932
5937
|
#endif
|
@@ -5939,7 +5944,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module
|
|
5939
5944
|
module_name, class_name);
|
5940
5945
|
goto bad;
|
5941
5946
|
}
|
5942
|
-
#
|
5947
|
+
#ifndef Py_LIMITED_API
|
5943
5948
|
basicsize = ((PyTypeObject *)result)->tp_basicsize;
|
5944
5949
|
itemsize = ((PyTypeObject *)result)->tp_itemsize;
|
5945
5950
|
#else
|
@@ -5977,7 +5982,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module
|
|
5977
5982
|
module_name, class_name, size, basicsize+itemsize);
|
5978
5983
|
goto bad;
|
5979
5984
|
}
|
5980
|
-
if (check_size ==
|
5985
|
+
if (check_size == __Pyx_ImportType_CheckSize_Error_3_1_4 &&
|
5981
5986
|
((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
|
5982
5987
|
PyErr_Format(PyExc_ValueError,
|
5983
5988
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
@@ -5985,7 +5990,7 @@ static PyTypeObject *__Pyx_ImportType_3_1_3(PyObject *module, const char *module
|
|
5985
5990
|
module_name, class_name, size, basicsize, basicsize+itemsize);
|
5986
5991
|
goto bad;
|
5987
5992
|
}
|
5988
|
-
else if (check_size ==
|
5993
|
+
else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_1_4 && (size_t)basicsize > size) {
|
5989
5994
|
if (PyErr_WarnFormat(NULL, 0,
|
5990
5995
|
"%.200s.%.200s size changed, may indicate binary incompatibility. "
|
5991
5996
|
"Expected %zd from C header, got %zd from PyObject",
|