eqc-models 0.9.8__py3-none-any.whl → 0.10.0__py3-none-any.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.
Files changed (68) hide show
  1. eqc_models-0.10.0.data/platlib/compile_extensions.py +67 -0
  2. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/assignment/setpartition.py +8 -29
  3. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/base/polyeval.c +127 -123
  4. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/base/polyeval.cpython-310-darwin.so +0 -0
  5. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/base/polynomial.py +84 -1
  6. eqc_models-0.10.0.data/platlib/eqc_models/base.py +115 -0
  7. eqc_models-0.10.0.data/platlib/eqc_models/combinatorics/setcover.py +93 -0
  8. eqc_models-0.10.0.data/platlib/eqc_models/communitydetection.py +25 -0
  9. eqc_models-0.10.0.data/platlib/eqc_models/eqcdirectsolver.py +61 -0
  10. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/graph/base.py +28 -17
  11. eqc_models-0.10.0.data/platlib/eqc_models/graph/partition.py +148 -0
  12. eqc_models-0.10.0.data/platlib/eqc_models/graphs.py +28 -0
  13. eqc_models-0.10.0.data/platlib/eqc_models/maxcut.py +113 -0
  14. eqc_models-0.10.0.data/platlib/eqc_models/maxkcut.py +185 -0
  15. eqc_models-0.10.0.data/platlib/eqc_models/ml/classifierqboost.py +628 -0
  16. eqc_models-0.10.0.data/platlib/eqc_models/ml/cvqboost_hamiltonian.pyx +83 -0
  17. eqc_models-0.10.0.data/platlib/eqc_models/ml/cvqboost_hamiltonian_c_func.c +68 -0
  18. eqc_models-0.10.0.data/platlib/eqc_models/ml/cvqboost_hamiltonian_c_func.h +14 -0
  19. eqc_models-0.10.0.data/platlib/eqc_models/quadraticmodel.py +131 -0
  20. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/sequence/tsp.py +38 -34
  21. eqc_models-0.10.0.data/platlib/eqc_models/solvers/eqcdirect.py +160 -0
  22. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/solvers/qciclient.py +46 -11
  23. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/utilities/polynomial.py +11 -0
  24. {eqc_models-0.9.8.dist-info → eqc_models-0.10.0.dist-info}/METADATA +3 -2
  25. eqc_models-0.10.0.dist-info/RECORD +65 -0
  26. {eqc_models-0.9.8.dist-info → eqc_models-0.10.0.dist-info}/WHEEL +1 -1
  27. eqc_models-0.9.8.data/platlib/compile_extensions.py +0 -23
  28. eqc_models-0.9.8.data/platlib/eqc_models/ml/classifierqboost.py +0 -423
  29. eqc_models-0.9.8.dist-info/RECORD +0 -52
  30. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/__init__.py +0 -0
  31. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/algorithms/__init__.py +0 -0
  32. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/algorithms/base.py +0 -0
  33. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/algorithms/penaltymultiplier.py +0 -0
  34. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/allocation/__init__.py +0 -0
  35. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/allocation/allocation.py +0 -0
  36. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/allocation/portbase.py +0 -0
  37. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/allocation/portmomentum.py +0 -0
  38. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/assignment/__init__.py +0 -0
  39. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/assignment/qap.py +0 -0
  40. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/base/__init__.py +0 -0
  41. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/base/base.py +0 -0
  42. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/base/constraints.py +0 -0
  43. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/base/operators.py +0 -0
  44. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/base/polyeval.pyx +0 -0
  45. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/base/quadratic.py +0 -0
  46. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/decoding.py +0 -0
  47. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/graph/__init__.py +0 -0
  48. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/graph/hypergraph.py +0 -0
  49. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/graph/maxcut.py +0 -0
  50. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/graph/maxkcut.py +0 -0
  51. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/__init__.py +0 -0
  52. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/classifierbase.py +0 -0
  53. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/classifierqsvm.py +0 -0
  54. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/clustering.py +0 -0
  55. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/clusteringbase.py +0 -0
  56. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/decomposition.py +0 -0
  57. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/forecast.py +0 -0
  58. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/forecastbase.py +0 -0
  59. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/regressor.py +0 -0
  60. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/regressorbase.py +0 -0
  61. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/ml/reservoir.py +0 -0
  62. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/sequence/__init__.py +0 -0
  63. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/solvers/__init__.py +0 -0
  64. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/utilities/__init__.py +0 -0
  65. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/utilities/fileio.py +0 -0
  66. {eqc_models-0.9.8.data → eqc_models-0.10.0.data}/platlib/eqc_models/utilities/qplib.py +0 -0
  67. {eqc_models-0.9.8.dist-info → eqc_models-0.10.0.dist-info}/LICENSE.txt +0 -0
  68. {eqc_models-0.9.8.dist-info → eqc_models-0.10.0.dist-info}/top_level.txt +0 -0
@@ -4,14 +4,18 @@
4
4
  {
5
5
  "distutils": {
6
6
  "depends": [
7
- "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-srw6s27y/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h",
8
- "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-srw6s27y/lib/python3.10/site-packages/numpy/core/include/numpy/arrayscalars.h",
9
- "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-srw6s27y/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h",
10
- "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-srw6s27y/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h",
11
- "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-srw6s27y/lib/python3.10/site-packages/numpy/core/include/numpy/ufuncobject.h"
7
+ "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/core/include/numpy/arrayobject.h",
8
+ "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/core/include/numpy/arrayscalars.h",
9
+ "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/core/include/numpy/ndarrayobject.h",
10
+ "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/core/include/numpy/ndarraytypes.h",
11
+ "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/core/include/numpy/ufuncobject.h"
12
+ ],
13
+ "extra_compile_args": [
14
+ "-O3",
15
+ "-ffast-math"
12
16
  ],
13
17
  "include_dirs": [
14
- "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-srw6s27y/lib/python3.10/site-packages/numpy/core/include"
18
+ "/private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/core/include"
15
19
  ],
16
20
  "name": "eqc_models.base.polyeval",
17
21
  "sources": [
@@ -1568,7 +1572,7 @@ typedef struct {
1568
1572
 
1569
1573
  /* #### Code section: numeric_typedefs ### */
1570
1574
 
1571
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":730
1575
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":730
1572
1576
  * # in Cython to enable them only on the right systems.
1573
1577
  *
1574
1578
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1577,7 +1581,7 @@ typedef struct {
1577
1581
  */
1578
1582
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1579
1583
 
1580
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":731
1584
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":731
1581
1585
  *
1582
1586
  * ctypedef npy_int8 int8_t
1583
1587
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1586,7 +1590,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1586
1590
  */
1587
1591
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1588
1592
 
1589
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":732
1593
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":732
1590
1594
  * ctypedef npy_int8 int8_t
1591
1595
  * ctypedef npy_int16 int16_t
1592
1596
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1595,7 +1599,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1595
1599
  */
1596
1600
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1597
1601
 
1598
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":733
1602
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":733
1599
1603
  * ctypedef npy_int16 int16_t
1600
1604
  * ctypedef npy_int32 int32_t
1601
1605
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1604,7 +1608,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1604
1608
  */
1605
1609
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1606
1610
 
1607
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":737
1611
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":737
1608
1612
  * #ctypedef npy_int128 int128_t
1609
1613
  *
1610
1614
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1613,7 +1617,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1613
1617
  */
1614
1618
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1615
1619
 
1616
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":738
1620
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":738
1617
1621
  *
1618
1622
  * ctypedef npy_uint8 uint8_t
1619
1623
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1622,7 +1626,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1622
1626
  */
1623
1627
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1624
1628
 
1625
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":739
1629
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":739
1626
1630
  * ctypedef npy_uint8 uint8_t
1627
1631
  * ctypedef npy_uint16 uint16_t
1628
1632
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1631,7 +1635,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1631
1635
  */
1632
1636
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1633
1637
 
1634
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":740
1638
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":740
1635
1639
  * ctypedef npy_uint16 uint16_t
1636
1640
  * ctypedef npy_uint32 uint32_t
1637
1641
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1640,7 +1644,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1640
1644
  */
1641
1645
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1642
1646
 
1643
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":744
1647
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":744
1644
1648
  * #ctypedef npy_uint128 uint128_t
1645
1649
  *
1646
1650
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1649,7 +1653,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1649
1653
  */
1650
1654
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1651
1655
 
1652
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":745
1656
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":745
1653
1657
  *
1654
1658
  * ctypedef npy_float32 float32_t
1655
1659
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1658,7 +1662,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1658
1662
  */
1659
1663
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1660
1664
 
1661
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":754
1665
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":754
1662
1666
  * # The int types are mapped a bit surprising --
1663
1667
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1664
1668
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1667,7 +1671,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1667
1671
  */
1668
1672
  typedef npy_long __pyx_t_5numpy_int_t;
1669
1673
 
1670
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":755
1674
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":755
1671
1675
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1672
1676
  * ctypedef npy_long int_t
1673
1677
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1676,7 +1680,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1676
1680
  */
1677
1681
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1678
1682
 
1679
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":757
1683
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":757
1680
1684
  * ctypedef npy_longlong longlong_t
1681
1685
  *
1682
1686
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1685,7 +1689,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1685
1689
  */
1686
1690
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1687
1691
 
1688
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":758
1692
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":758
1689
1693
  *
1690
1694
  * ctypedef npy_ulong uint_t
1691
1695
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1694,7 +1698,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1694
1698
  */
1695
1699
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1696
1700
 
1697
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":760
1701
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":760
1698
1702
  * ctypedef npy_ulonglong ulonglong_t
1699
1703
  *
1700
1704
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1703,7 +1707,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1703
1707
  */
1704
1708
  typedef npy_intp __pyx_t_5numpy_intp_t;
1705
1709
 
1706
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":761
1710
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":761
1707
1711
  *
1708
1712
  * ctypedef npy_intp intp_t
1709
1713
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1712,7 +1716,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1712
1716
  */
1713
1717
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1714
1718
 
1715
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":763
1719
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":763
1716
1720
  * ctypedef npy_uintp uintp_t
1717
1721
  *
1718
1722
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1721,7 +1725,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1721
1725
  */
1722
1726
  typedef npy_double __pyx_t_5numpy_float_t;
1723
1727
 
1724
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":764
1728
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":764
1725
1729
  *
1726
1730
  * ctypedef npy_double float_t
1727
1731
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1730,7 +1734,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1730
1734
  */
1731
1735
  typedef npy_double __pyx_t_5numpy_double_t;
1732
1736
 
1733
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":765
1737
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":765
1734
1738
  * ctypedef npy_double float_t
1735
1739
  * ctypedef npy_double double_t
1736
1740
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1785,7 +1789,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
1785
1789
 
1786
1790
  /*--- Type declarations ---*/
1787
1791
 
1788
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":767
1792
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":767
1789
1793
  * ctypedef npy_longdouble longdouble_t
1790
1794
  *
1791
1795
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1794,7 +1798,7 @@ static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(do
1794
1798
  */
1795
1799
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1796
1800
 
1797
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":768
1801
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":768
1798
1802
  *
1799
1803
  * ctypedef npy_cfloat cfloat_t
1800
1804
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1803,7 +1807,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1803
1807
  */
1804
1808
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1805
1809
 
1806
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":769
1810
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":769
1807
1811
  * ctypedef npy_cfloat cfloat_t
1808
1812
  * ctypedef npy_cdouble cdouble_t
1809
1813
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1812,7 +1816,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1812
1816
  */
1813
1817
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1814
1818
 
1815
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":771
1819
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":771
1816
1820
  * ctypedef npy_clongdouble clongdouble_t
1817
1821
  *
1818
1822
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -3117,7 +3121,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
3117
3121
  #define __pyx_codeobj__7 __pyx_mstate_global->__pyx_codeobj__7
3118
3122
  /* #### Code section: module_code ### */
3119
3123
 
3120
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":245
3124
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":245
3121
3125
  *
3122
3126
  * @property
3123
3127
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -3128,7 +3132,7 @@ static int __pyx_m_traverse(PyObject *m, visitproc visit, void *arg) {
3128
3132
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
3129
3133
  PyObject *__pyx_r;
3130
3134
 
3131
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":248
3135
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":248
3132
3136
  * """Returns a borrowed reference to the object owning the data/memory.
3133
3137
  * """
3134
3138
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -3138,7 +3142,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
3138
3142
  __pyx_r = PyArray_BASE(__pyx_v_self);
3139
3143
  goto __pyx_L0;
3140
3144
 
3141
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":245
3145
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":245
3142
3146
  *
3143
3147
  * @property
3144
3148
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -3151,7 +3155,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
3151
3155
  return __pyx_r;
3152
3156
  }
3153
3157
 
3154
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":251
3158
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":251
3155
3159
  *
3156
3160
  * @property
3157
3161
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -3165,7 +3169,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3165
3169
  PyArray_Descr *__pyx_t_1;
3166
3170
  __Pyx_RefNannySetupContext("descr", 1);
3167
3171
 
3168
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":254
3172
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":254
3169
3173
  * """Returns an owned reference to the dtype of the array.
3170
3174
  * """
3171
3175
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -3178,7 +3182,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3178
3182
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
3179
3183
  goto __pyx_L0;
3180
3184
 
3181
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":251
3185
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":251
3182
3186
  *
3183
3187
  * @property
3184
3188
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -3193,7 +3197,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3193
3197
  return __pyx_r;
3194
3198
  }
3195
3199
 
3196
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":257
3200
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":257
3197
3201
  *
3198
3202
  * @property
3199
3203
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -3204,7 +3208,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
3204
3208
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
3205
3209
  int __pyx_r;
3206
3210
 
3207
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":260
3211
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":260
3208
3212
  * """Returns the number of dimensions in the array.
3209
3213
  * """
3210
3214
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -3214,7 +3218,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
3214
3218
  __pyx_r = PyArray_NDIM(__pyx_v_self);
3215
3219
  goto __pyx_L0;
3216
3220
 
3217
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":257
3221
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":257
3218
3222
  *
3219
3223
  * @property
3220
3224
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -3227,7 +3231,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
3227
3231
  return __pyx_r;
3228
3232
  }
3229
3233
 
3230
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":263
3234
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":263
3231
3235
  *
3232
3236
  * @property
3233
3237
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -3238,7 +3242,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
3238
3242
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
3239
3243
  npy_intp *__pyx_r;
3240
3244
 
3241
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":268
3245
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":268
3242
3246
  * Can return NULL for 0-dimensional arrays.
3243
3247
  * """
3244
3248
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -3248,7 +3252,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
3248
3252
  __pyx_r = PyArray_DIMS(__pyx_v_self);
3249
3253
  goto __pyx_L0;
3250
3254
 
3251
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":263
3255
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":263
3252
3256
  *
3253
3257
  * @property
3254
3258
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -3261,7 +3265,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
3261
3265
  return __pyx_r;
3262
3266
  }
3263
3267
 
3264
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":271
3268
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":271
3265
3269
  *
3266
3270
  * @property
3267
3271
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -3272,7 +3276,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
3272
3276
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
3273
3277
  npy_intp *__pyx_r;
3274
3278
 
3275
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":275
3279
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":275
3276
3280
  * The number of elements matches the number of dimensions of the array (ndim).
3277
3281
  * """
3278
3282
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -3282,7 +3286,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
3282
3286
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
3283
3287
  goto __pyx_L0;
3284
3288
 
3285
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":271
3289
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":271
3286
3290
  *
3287
3291
  * @property
3288
3292
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -3295,7 +3299,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
3295
3299
  return __pyx_r;
3296
3300
  }
3297
3301
 
3298
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":278
3302
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":278
3299
3303
  *
3300
3304
  * @property
3301
3305
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -3306,7 +3310,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
3306
3310
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
3307
3311
  npy_intp __pyx_r;
3308
3312
 
3309
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":281
3313
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":281
3310
3314
  * """Returns the total size (in number of elements) of the array.
3311
3315
  * """
3312
3316
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -3316,7 +3320,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
3316
3320
  __pyx_r = PyArray_SIZE(__pyx_v_self);
3317
3321
  goto __pyx_L0;
3318
3322
 
3319
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":278
3323
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":278
3320
3324
  *
3321
3325
  * @property
3322
3326
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -3329,7 +3333,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
3329
3333
  return __pyx_r;
3330
3334
  }
3331
3335
 
3332
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":284
3336
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":284
3333
3337
  *
3334
3338
  * @property
3335
3339
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -3340,7 +3344,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
3340
3344
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
3341
3345
  char *__pyx_r;
3342
3346
 
3343
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":290
3347
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":290
3344
3348
  * of `PyArray_DATA()` instead, which returns a 'void*'.
3345
3349
  * """
3346
3350
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -3350,7 +3354,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
3350
3354
  __pyx_r = PyArray_BYTES(__pyx_v_self);
3351
3355
  goto __pyx_L0;
3352
3356
 
3353
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":284
3357
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":284
3354
3358
  *
3355
3359
  * @property
3356
3360
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -3363,7 +3367,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
3363
3367
  return __pyx_r;
3364
3368
  }
3365
3369
 
3366
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
3370
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
3367
3371
  * ctypedef npy_cdouble complex_t
3368
3372
  *
3369
3373
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -3380,7 +3384,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
3380
3384
  int __pyx_clineno = 0;
3381
3385
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
3382
3386
 
3383
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":774
3387
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":774
3384
3388
  *
3385
3389
  * cdef inline object PyArray_MultiIterNew1(a):
3386
3390
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -3394,7 +3398,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
3394
3398
  __pyx_t_1 = 0;
3395
3399
  goto __pyx_L0;
3396
3400
 
3397
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
3401
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":773
3398
3402
  * ctypedef npy_cdouble complex_t
3399
3403
  *
3400
3404
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -3413,7 +3417,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
3413
3417
  return __pyx_r;
3414
3418
  }
3415
3419
 
3416
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":776
3420
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":776
3417
3421
  * return PyArray_MultiIterNew(1, <void*>a)
3418
3422
  *
3419
3423
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -3430,7 +3434,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
3430
3434
  int __pyx_clineno = 0;
3431
3435
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
3432
3436
 
3433
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
3437
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":777
3434
3438
  *
3435
3439
  * cdef inline object PyArray_MultiIterNew2(a, b):
3436
3440
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -3444,7 +3448,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
3444
3448
  __pyx_t_1 = 0;
3445
3449
  goto __pyx_L0;
3446
3450
 
3447
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":776
3451
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":776
3448
3452
  * return PyArray_MultiIterNew(1, <void*>a)
3449
3453
  *
3450
3454
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -3463,7 +3467,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
3463
3467
  return __pyx_r;
3464
3468
  }
3465
3469
 
3466
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":779
3470
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":779
3467
3471
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
3468
3472
  *
3469
3473
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -3480,7 +3484,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
3480
3484
  int __pyx_clineno = 0;
3481
3485
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
3482
3486
 
3483
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
3487
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":780
3484
3488
  *
3485
3489
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
3486
3490
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -3494,7 +3498,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
3494
3498
  __pyx_t_1 = 0;
3495
3499
  goto __pyx_L0;
3496
3500
 
3497
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":779
3501
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":779
3498
3502
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
3499
3503
  *
3500
3504
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -3513,7 +3517,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
3513
3517
  return __pyx_r;
3514
3518
  }
3515
3519
 
3516
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":782
3520
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":782
3517
3521
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
3518
3522
  *
3519
3523
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -3530,7 +3534,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
3530
3534
  int __pyx_clineno = 0;
3531
3535
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
3532
3536
 
3533
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
3537
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":783
3534
3538
  *
3535
3539
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
3536
3540
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -3544,7 +3548,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
3544
3548
  __pyx_t_1 = 0;
3545
3549
  goto __pyx_L0;
3546
3550
 
3547
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":782
3551
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":782
3548
3552
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
3549
3553
  *
3550
3554
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -3563,7 +3567,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
3563
3567
  return __pyx_r;
3564
3568
  }
3565
3569
 
3566
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":785
3570
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":785
3567
3571
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
3568
3572
  *
3569
3573
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -3580,7 +3584,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
3580
3584
  int __pyx_clineno = 0;
3581
3585
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
3582
3586
 
3583
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
3587
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":786
3584
3588
  *
3585
3589
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
3586
3590
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -3594,7 +3598,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
3594
3598
  __pyx_t_1 = 0;
3595
3599
  goto __pyx_L0;
3596
3600
 
3597
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":785
3601
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":785
3598
3602
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
3599
3603
  *
3600
3604
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -3613,7 +3617,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
3613
3617
  return __pyx_r;
3614
3618
  }
3615
3619
 
3616
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":788
3620
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":788
3617
3621
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
3618
3622
  *
3619
3623
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -3627,7 +3631,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
3627
3631
  int __pyx_t_1;
3628
3632
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
3629
3633
 
3630
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
3634
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
3631
3635
  *
3632
3636
  * cdef inline tuple PyDataType_SHAPE(dtype d):
3633
3637
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -3637,7 +3641,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
3637
3641
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
3638
3642
  if (__pyx_t_1) {
3639
3643
 
3640
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":790
3644
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":790
3641
3645
  * cdef inline tuple PyDataType_SHAPE(dtype d):
3642
3646
  * if PyDataType_HASSUBARRAY(d):
3643
3647
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -3649,7 +3653,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
3649
3653
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
3650
3654
  goto __pyx_L0;
3651
3655
 
3652
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
3656
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":789
3653
3657
  *
3654
3658
  * cdef inline tuple PyDataType_SHAPE(dtype d):
3655
3659
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -3658,7 +3662,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
3658
3662
  */
3659
3663
  }
3660
3664
 
3661
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
3665
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":792
3662
3666
  * return <tuple>d.subarray.shape
3663
3667
  * else:
3664
3668
  * return () # <<<<<<<<<<<<<<
@@ -3672,7 +3676,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
3672
3676
  goto __pyx_L0;
3673
3677
  }
3674
3678
 
3675
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":788
3679
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":788
3676
3680
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
3677
3681
  *
3678
3682
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -3687,7 +3691,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
3687
3691
  return __pyx_r;
3688
3692
  }
3689
3693
 
3690
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":968
3694
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":968
3691
3695
  * int _import_umath() except -1
3692
3696
  *
3693
3697
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -3701,7 +3705,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
3701
3705
  const char *__pyx_filename = NULL;
3702
3706
  int __pyx_clineno = 0;
3703
3707
 
3704
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":969
3708
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":969
3705
3709
  *
3706
3710
  * cdef inline void set_array_base(ndarray arr, object base):
3707
3711
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -3710,7 +3714,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
3710
3714
  */
3711
3715
  Py_INCREF(__pyx_v_base);
3712
3716
 
3713
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":970
3717
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":970
3714
3718
  * cdef inline void set_array_base(ndarray arr, object base):
3715
3719
  * Py_INCREF(base) # important to do this before stealing the reference below!
3716
3720
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -3719,7 +3723,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
3719
3723
  */
3720
3724
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(1, 970, __pyx_L1_error)
3721
3725
 
3722
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":968
3726
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":968
3723
3727
  * int _import_umath() except -1
3724
3728
  *
3725
3729
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -3734,7 +3738,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
3734
3738
  __pyx_L0:;
3735
3739
  }
3736
3740
 
3737
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
3741
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
3738
3742
  * PyArray_SetBaseObject(arr, base)
3739
3743
  *
3740
3744
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -3749,7 +3753,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
3749
3753
  int __pyx_t_1;
3750
3754
  __Pyx_RefNannySetupContext("get_array_base", 1);
3751
3755
 
3752
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":973
3756
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":973
3753
3757
  *
3754
3758
  * cdef inline object get_array_base(ndarray arr):
3755
3759
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -3758,7 +3762,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
3758
3762
  */
3759
3763
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
3760
3764
 
3761
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":974
3765
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":974
3762
3766
  * cdef inline object get_array_base(ndarray arr):
3763
3767
  * base = PyArray_BASE(arr)
3764
3768
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -3768,7 +3772,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
3768
3772
  __pyx_t_1 = (__pyx_v_base == NULL);
3769
3773
  if (__pyx_t_1) {
3770
3774
 
3771
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
3775
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":975
3772
3776
  * base = PyArray_BASE(arr)
3773
3777
  * if base is NULL:
3774
3778
  * return None # <<<<<<<<<<<<<<
@@ -3779,7 +3783,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
3779
3783
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
3780
3784
  goto __pyx_L0;
3781
3785
 
3782
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":974
3786
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":974
3783
3787
  * cdef inline object get_array_base(ndarray arr):
3784
3788
  * base = PyArray_BASE(arr)
3785
3789
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -3788,7 +3792,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
3788
3792
  */
3789
3793
  }
3790
3794
 
3791
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":976
3795
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":976
3792
3796
  * if base is NULL:
3793
3797
  * return None
3794
3798
  * return <object>base # <<<<<<<<<<<<<<
@@ -3800,7 +3804,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
3800
3804
  __pyx_r = ((PyObject *)__pyx_v_base);
3801
3805
  goto __pyx_L0;
3802
3806
 
3803
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
3807
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":972
3804
3808
  * PyArray_SetBaseObject(arr, base)
3805
3809
  *
3806
3810
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -3815,7 +3819,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
3815
3819
  return __pyx_r;
3816
3820
  }
3817
3821
 
3818
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":980
3822
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":980
3819
3823
  * # Versions of the import_* functions which are more suitable for
3820
3824
  * # Cython code.
3821
3825
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -3839,7 +3843,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
3839
3843
  int __pyx_clineno = 0;
3840
3844
  __Pyx_RefNannySetupContext("import_array", 1);
3841
3845
 
3842
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
3846
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
3843
3847
  * # Cython code.
3844
3848
  * cdef inline int import_array() except -1:
3845
3849
  * try: # <<<<<<<<<<<<<<
@@ -3855,7 +3859,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
3855
3859
  __Pyx_XGOTREF(__pyx_t_3);
3856
3860
  /*try:*/ {
3857
3861
 
3858
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":982
3862
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":982
3859
3863
  * cdef inline int import_array() except -1:
3860
3864
  * try:
3861
3865
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -3864,7 +3868,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
3864
3868
  */
3865
3869
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 982, __pyx_L3_error)
3866
3870
 
3867
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
3871
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
3868
3872
  * # Cython code.
3869
3873
  * cdef inline int import_array() except -1:
3870
3874
  * try: # <<<<<<<<<<<<<<
@@ -3878,7 +3882,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
3878
3882
  goto __pyx_L8_try_end;
3879
3883
  __pyx_L3_error:;
3880
3884
 
3881
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
3885
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":983
3882
3886
  * try:
3883
3887
  * __pyx_import_array()
3884
3888
  * except Exception: # <<<<<<<<<<<<<<
@@ -3893,7 +3897,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
3893
3897
  __Pyx_XGOTREF(__pyx_t_6);
3894
3898
  __Pyx_XGOTREF(__pyx_t_7);
3895
3899
 
3896
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
3900
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
3897
3901
  * __pyx_import_array()
3898
3902
  * except Exception:
3899
3903
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -3908,7 +3912,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
3908
3912
  }
3909
3913
  goto __pyx_L5_except_error;
3910
3914
 
3911
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
3915
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":981
3912
3916
  * # Cython code.
3913
3917
  * cdef inline int import_array() except -1:
3914
3918
  * try: # <<<<<<<<<<<<<<
@@ -3924,7 +3928,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
3924
3928
  __pyx_L8_try_end:;
3925
3929
  }
3926
3930
 
3927
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":980
3931
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":980
3928
3932
  * # Versions of the import_* functions which are more suitable for
3929
3933
  * # Cython code.
3930
3934
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -3947,7 +3951,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
3947
3951
  return __pyx_r;
3948
3952
  }
3949
3953
 
3950
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
3954
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
3951
3955
  * raise ImportError("numpy.core.multiarray failed to import")
3952
3956
  *
3953
3957
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -3971,7 +3975,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
3971
3975
  int __pyx_clineno = 0;
3972
3976
  __Pyx_RefNannySetupContext("import_umath", 1);
3973
3977
 
3974
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
3978
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
3975
3979
  *
3976
3980
  * cdef inline int import_umath() except -1:
3977
3981
  * try: # <<<<<<<<<<<<<<
@@ -3987,7 +3991,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
3987
3991
  __Pyx_XGOTREF(__pyx_t_3);
3988
3992
  /*try:*/ {
3989
3993
 
3990
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":988
3994
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":988
3991
3995
  * cdef inline int import_umath() except -1:
3992
3996
  * try:
3993
3997
  * _import_umath() # <<<<<<<<<<<<<<
@@ -3996,7 +4000,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
3996
4000
  */
3997
4001
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 988, __pyx_L3_error)
3998
4002
 
3999
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
4003
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
4000
4004
  *
4001
4005
  * cdef inline int import_umath() except -1:
4002
4006
  * try: # <<<<<<<<<<<<<<
@@ -4010,7 +4014,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4010
4014
  goto __pyx_L8_try_end;
4011
4015
  __pyx_L3_error:;
4012
4016
 
4013
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
4017
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":989
4014
4018
  * try:
4015
4019
  * _import_umath()
4016
4020
  * except Exception: # <<<<<<<<<<<<<<
@@ -4025,7 +4029,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4025
4029
  __Pyx_XGOTREF(__pyx_t_6);
4026
4030
  __Pyx_XGOTREF(__pyx_t_7);
4027
4031
 
4028
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
4032
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
4029
4033
  * _import_umath()
4030
4034
  * except Exception:
4031
4035
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -4040,7 +4044,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4040
4044
  }
4041
4045
  goto __pyx_L5_except_error;
4042
4046
 
4043
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
4047
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":987
4044
4048
  *
4045
4049
  * cdef inline int import_umath() except -1:
4046
4050
  * try: # <<<<<<<<<<<<<<
@@ -4056,7 +4060,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4056
4060
  __pyx_L8_try_end:;
4057
4061
  }
4058
4062
 
4059
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
4063
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":986
4060
4064
  * raise ImportError("numpy.core.multiarray failed to import")
4061
4065
  *
4062
4066
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -4079,7 +4083,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
4079
4083
  return __pyx_r;
4080
4084
  }
4081
4085
 
4082
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
4086
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
4083
4087
  * raise ImportError("numpy.core.umath failed to import")
4084
4088
  *
4085
4089
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -4103,7 +4107,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4103
4107
  int __pyx_clineno = 0;
4104
4108
  __Pyx_RefNannySetupContext("import_ufunc", 1);
4105
4109
 
4106
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
4110
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
4107
4111
  *
4108
4112
  * cdef inline int import_ufunc() except -1:
4109
4113
  * try: # <<<<<<<<<<<<<<
@@ -4119,7 +4123,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4119
4123
  __Pyx_XGOTREF(__pyx_t_3);
4120
4124
  /*try:*/ {
4121
4125
 
4122
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":994
4126
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":994
4123
4127
  * cdef inline int import_ufunc() except -1:
4124
4128
  * try:
4125
4129
  * _import_umath() # <<<<<<<<<<<<<<
@@ -4128,7 +4132,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4128
4132
  */
4129
4133
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 994, __pyx_L3_error)
4130
4134
 
4131
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
4135
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
4132
4136
  *
4133
4137
  * cdef inline int import_ufunc() except -1:
4134
4138
  * try: # <<<<<<<<<<<<<<
@@ -4142,7 +4146,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4142
4146
  goto __pyx_L8_try_end;
4143
4147
  __pyx_L3_error:;
4144
4148
 
4145
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
4149
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":995
4146
4150
  * try:
4147
4151
  * _import_umath()
4148
4152
  * except Exception: # <<<<<<<<<<<<<<
@@ -4157,7 +4161,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4157
4161
  __Pyx_XGOTREF(__pyx_t_6);
4158
4162
  __Pyx_XGOTREF(__pyx_t_7);
4159
4163
 
4160
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
4164
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":996
4161
4165
  * _import_umath()
4162
4166
  * except Exception:
4163
4167
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -4172,7 +4176,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4172
4176
  }
4173
4177
  goto __pyx_L5_except_error;
4174
4178
 
4175
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
4179
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":993
4176
4180
  *
4177
4181
  * cdef inline int import_ufunc() except -1:
4178
4182
  * try: # <<<<<<<<<<<<<<
@@ -4188,7 +4192,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4188
4192
  __pyx_L8_try_end:;
4189
4193
  }
4190
4194
 
4191
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
4195
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":992
4192
4196
  * raise ImportError("numpy.core.umath failed to import")
4193
4197
  *
4194
4198
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -4211,7 +4215,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4211
4215
  return __pyx_r;
4212
4216
  }
4213
4217
 
4214
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
4218
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
4215
4219
  *
4216
4220
  *
4217
4221
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -4222,7 +4226,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
4222
4226
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
4223
4227
  int __pyx_r;
4224
4228
 
4225
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1011
4229
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1011
4226
4230
  * bool
4227
4231
  * """
4228
4232
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -4232,7 +4236,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
4232
4236
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
4233
4237
  goto __pyx_L0;
4234
4238
 
4235
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
4239
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":999
4236
4240
  *
4237
4241
  *
4238
4242
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -4245,7 +4249,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
4245
4249
  return __pyx_r;
4246
4250
  }
4247
4251
 
4248
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
4252
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
4249
4253
  *
4250
4254
  *
4251
4255
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -4256,7 +4260,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
4256
4260
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
4257
4261
  int __pyx_r;
4258
4262
 
4259
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1026
4263
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1026
4260
4264
  * bool
4261
4265
  * """
4262
4266
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -4266,7 +4270,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
4266
4270
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
4267
4271
  goto __pyx_L0;
4268
4272
 
4269
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
4273
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1014
4270
4274
  *
4271
4275
  *
4272
4276
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -4279,7 +4283,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
4279
4283
  return __pyx_r;
4280
4284
  }
4281
4285
 
4282
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
4286
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
4283
4287
  *
4284
4288
  *
4285
4289
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -4290,7 +4294,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
4290
4294
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
4291
4295
  npy_datetime __pyx_r;
4292
4296
 
4293
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1036
4297
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1036
4294
4298
  * also needed. That can be found using `get_datetime64_unit`.
4295
4299
  * """
4296
4300
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -4300,7 +4304,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
4300
4304
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
4301
4305
  goto __pyx_L0;
4302
4306
 
4303
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
4307
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1029
4304
4308
  *
4305
4309
  *
4306
4310
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -4313,7 +4317,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
4313
4317
  return __pyx_r;
4314
4318
  }
4315
4319
 
4316
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
4320
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
4317
4321
  *
4318
4322
  *
4319
4323
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -4324,7 +4328,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
4324
4328
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
4325
4329
  npy_timedelta __pyx_r;
4326
4330
 
4327
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1043
4331
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1043
4328
4332
  * returns the int64 value underlying scalar numpy timedelta64 object
4329
4333
  * """
4330
4334
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -4334,7 +4338,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
4334
4338
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
4335
4339
  goto __pyx_L0;
4336
4340
 
4337
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
4341
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1039
4338
4342
  *
4339
4343
  *
4340
4344
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -4347,7 +4351,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
4347
4351
  return __pyx_r;
4348
4352
  }
4349
4353
 
4350
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
4354
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
4351
4355
  *
4352
4356
  *
4353
4357
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -4358,7 +4362,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
4358
4362
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
4359
4363
  NPY_DATETIMEUNIT __pyx_r;
4360
4364
 
4361
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1050
4365
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1050
4362
4366
  * returns the unit part of the dtype for a numpy datetime64 object.
4363
4367
  * """
4364
4368
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -4366,7 +4370,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
4366
4370
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
4367
4371
  goto __pyx_L0;
4368
4372
 
4369
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
4373
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":1046
4370
4374
  *
4371
4375
  *
4372
4376
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -5353,7 +5357,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
5353
5357
  __Pyx_RefNannyDeclarations
5354
5358
  __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0);
5355
5359
 
5356
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
5360
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":984
5357
5361
  * __pyx_import_array()
5358
5362
  * except Exception:
5359
5363
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -5364,7 +5368,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
5364
5368
  __Pyx_GOTREF(__pyx_tuple_);
5365
5369
  __Pyx_GIVEREF(__pyx_tuple_);
5366
5370
 
5367
- /* "../../build-env-srw6s27y/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
5371
+ /* "../../../../private/var/folders/hc/fl3cssl54zl7_52qqgd2kl9h0000gn/T/build-env-_pgpaj66/lib/python3.10/site-packages/numpy/__init__.cython-30.pxd":990
5368
5372
  * _import_umath()
5369
5373
  * except Exception:
5370
5374
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<