pymoo 0.6.1.2__tar.gz → 0.6.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pymoo might be problematic. Click here for more details.

Files changed (340) hide show
  1. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/MANIFEST.in +1 -1
  2. {pymoo-0.6.1.2/pymoo.egg-info → pymoo-0.6.1.3}/PKG-INFO +10 -2
  3. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/nsga2.py +0 -4
  4. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/calc_perpendicular_distance.cpp +27 -45
  5. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/decomposition.cpp +27 -45
  6. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/hv.cpp +27 -45
  7. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/info.cpp +27 -45
  8. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/mnn.cpp +27 -45
  9. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/non_dominated_sorting.cpp +110 -130
  10. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/pruning_cd.cpp +27 -45
  11. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/stochastic_ranking.cpp +27 -45
  12. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/grad_autograd.py +2 -2
  13. pymoo-0.6.1.3/pymoo/version.py +1 -0
  14. {pymoo-0.6.1.2 → pymoo-0.6.1.3/pymoo.egg-info}/PKG-INFO +10 -2
  15. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo.egg-info/SOURCES.txt +8 -1
  16. pymoo-0.6.1.3/pyproject.toml +2 -0
  17. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/setup.py +1 -1
  18. pymoo-0.6.1.3/tests/test_archive.py +117 -0
  19. pymoo-0.6.1.3/tests/test_decomposition.py +55 -0
  20. pymoo-0.6.1.3/tests/test_docs.py +21 -0
  21. pymoo-0.6.1.3/tests/test_examples.py +19 -0
  22. pymoo-0.6.1.3/tests/test_indicators.py +190 -0
  23. pymoo-0.6.1.3/tests/test_util.py +94 -0
  24. pymoo-0.6.1.2/pymoo/version.py +0 -1
  25. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/LICENSE +0 -0
  26. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/Makefile +0 -0
  27. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/README.rst +0 -0
  28. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/__init__.py +0 -0
  29. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/__init__.py +0 -0
  30. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/__init__.py +0 -0
  31. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/bracket.py +0 -0
  32. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/genetic.py +0 -0
  33. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/line.py +0 -0
  34. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/local.py +0 -0
  35. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/meta.py +0 -0
  36. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/hyperparameters.py +0 -0
  37. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/__init__.py +0 -0
  38. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/age.py +0 -0
  39. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/age2.py +0 -0
  40. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/ctaea.py +0 -0
  41. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/dnsga2.py +0 -0
  42. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/kgb.py +0 -0
  43. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/moead.py +0 -0
  44. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/nsga3.py +0 -0
  45. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/rnsga2.py +0 -0
  46. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/rnsga3.py +0 -0
  47. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/rvea.py +0 -0
  48. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/sms.py +0 -0
  49. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/spea2.py +0 -0
  50. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/unsga3.py +0 -0
  51. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/__init__.py +0 -0
  52. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/convex/__init__.py +0 -0
  53. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/__init__.py +0 -0
  54. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/brkga.py +0 -0
  55. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/cmaes.py +0 -0
  56. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/de.py +0 -0
  57. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/direct.py +0 -0
  58. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/es.py +0 -0
  59. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/g3pcx.py +0 -0
  60. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/ga.py +0 -0
  61. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/ga_niching.py +0 -0
  62. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/isres.py +0 -0
  63. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/nelder.py +0 -0
  64. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/optuna.py +0 -0
  65. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/pattern.py +0 -0
  66. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/pso.py +0 -0
  67. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/pso_ep.py +0 -0
  68. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/random_search.py +0 -0
  69. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/sres.py +0 -0
  70. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/__init__.py +0 -0
  71. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/backtracking.py +0 -0
  72. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/exp.py +0 -0
  73. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/golden.py +0 -0
  74. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/quadr_interp.py +0 -0
  75. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/wolfe.py +0 -0
  76. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/config.py +0 -0
  77. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/__init__.py +0 -0
  78. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/adaptive.py +0 -0
  79. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/as_obj.py +0 -0
  80. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/as_penalty.py +0 -0
  81. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/eps.py +0 -0
  82. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/from_bounds.py +0 -0
  83. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/__init__.py +0 -0
  84. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/algorithm.py +0 -0
  85. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/callback.py +0 -0
  86. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/crossover.py +0 -0
  87. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/decision_making.py +0 -0
  88. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/decomposition.py +0 -0
  89. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/duplicate.py +0 -0
  90. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/evaluator.py +0 -0
  91. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/indicator.py +0 -0
  92. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/individual.py +0 -0
  93. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/infill.py +0 -0
  94. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/initialization.py +0 -0
  95. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/mating.py +0 -0
  96. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/meta.py +0 -0
  97. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/mixed.py +0 -0
  98. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/mutation.py +0 -0
  99. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/operator.py +0 -0
  100. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/parameters.py +0 -0
  101. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/plot.py +0 -0
  102. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/population.py +0 -0
  103. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/problem.py +0 -0
  104. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/recorder.py +0 -0
  105. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/repair.py +0 -0
  106. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/replacement.py +0 -0
  107. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/result.py +0 -0
  108. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/sampling.py +0 -0
  109. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/selection.py +0 -0
  110. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/solution.py +0 -0
  111. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/survival.py +0 -0
  112. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/termination.py +0 -0
  113. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/variable.py +0 -0
  114. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/__init__.py +0 -0
  115. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/calc_perpendicular_distance.pyx +0 -0
  116. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/decomposition.pyx +0 -0
  117. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/hv.pyx +0 -0
  118. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/info.pyx +0 -0
  119. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/mnn.pyx +0 -0
  120. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/non_dominated_sorting.pyx +0 -0
  121. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/pruning_cd.pyx +0 -0
  122. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/stochastic_ranking.pyx +0 -0
  123. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/utils.pxd +0 -0
  124. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/vendor/__init__.py +0 -0
  125. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/vendor/hypervolume.cpp +0 -0
  126. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/vendor/hypervolume.h +0 -0
  127. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/__init__.py +0 -0
  128. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/aasf.py +0 -0
  129. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/asf.py +0 -0
  130. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/pbi.py +0 -0
  131. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/perp_dist.py +0 -0
  132. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/tchebicheff.py +0 -0
  133. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/util.py +0 -0
  134. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/weighted_sum.py +0 -0
  135. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/docs.py +0 -0
  136. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/experimental/__init__.py +0 -0
  137. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/experimental/algorithms/__init__.py +0 -0
  138. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/experimental/algorithms/gde3.py +0 -0
  139. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/__init__.py +0 -0
  140. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/automatic.py +0 -0
  141. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/grad_complex.py +0 -0
  142. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/grad_jax.py +0 -0
  143. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/toolbox/__init__.py +0 -0
  144. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/__init__.py +0 -0
  145. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/distance_indicator.py +0 -0
  146. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/gd.py +0 -0
  147. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/gd_plus.py +0 -0
  148. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/hv/__init__.py +0 -0
  149. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/hv/exact.py +0 -0
  150. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/hv/exact_2d.py +0 -0
  151. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/hv/monte_carlo.py +0 -0
  152. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/igd.py +0 -0
  153. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/igd_plus.py +0 -0
  154. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/kktpm.py +0 -0
  155. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/migd.py +0 -0
  156. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/rmetric.py +0 -0
  157. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/spacing.py +0 -0
  158. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/mcdm/__init__.py +0 -0
  159. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/mcdm/compromise_programming.py +0 -0
  160. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/mcdm/high_tradeoff.py +0 -0
  161. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/mcdm/pseudo_weights.py +0 -0
  162. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/__init__.py +0 -0
  163. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/control.py +0 -0
  164. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/__init__.py +0 -0
  165. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/binx.py +0 -0
  166. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/dex.py +0 -0
  167. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/erx.py +0 -0
  168. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/expx.py +0 -0
  169. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/hux.py +0 -0
  170. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/nox.py +0 -0
  171. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/ox.py +0 -0
  172. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/pcx.py +0 -0
  173. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/pntx.py +0 -0
  174. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/sbx.py +0 -0
  175. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/spx.py +0 -0
  176. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/ux.py +0 -0
  177. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/__init__.py +0 -0
  178. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/bitflip.py +0 -0
  179. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/gauss.py +0 -0
  180. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/inversion.py +0 -0
  181. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/nom.py +0 -0
  182. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/pm.py +0 -0
  183. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/rm.py +0 -0
  184. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/__init__.py +0 -0
  185. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/bounce_back.py +0 -0
  186. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/bounds_repair.py +0 -0
  187. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/inverse_penalty.py +0 -0
  188. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/rounding.py +0 -0
  189. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/to_bound.py +0 -0
  190. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/vtype.py +0 -0
  191. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/sampling/__init__.py +0 -0
  192. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/sampling/lhs.py +0 -0
  193. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/sampling/rnd.py +0 -0
  194. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/selection/__init__.py +0 -0
  195. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/selection/rnd.py +0 -0
  196. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/selection/tournament.py +0 -0
  197. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/survival/__init__.py +0 -0
  198. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/survival/rank_and_crowding/__init__.py +0 -0
  199. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/survival/rank_and_crowding/classes.py +0 -0
  200. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/survival/rank_and_crowding/metrics.py +0 -0
  201. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/optimize.py +0 -0
  202. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/__init__.py +0 -0
  203. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/dyn.py +0 -0
  204. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/dynamic/__init__.py +0 -0
  205. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/dynamic/cec2015.py +0 -0
  206. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/dynamic/df.py +0 -0
  207. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/dynamic/misc.py +0 -0
  208. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/functional.py +0 -0
  209. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/many/__init__.py +0 -0
  210. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/many/cdtlz.py +0 -0
  211. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/many/dcdtlz.py +0 -0
  212. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/many/dtlz.py +0 -0
  213. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/many/wfg.py +0 -0
  214. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/__init__.py +0 -0
  215. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/bnh.py +0 -0
  216. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/carside.py +0 -0
  217. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/clutch.py +0 -0
  218. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/csi.py +0 -0
  219. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/ctp.py +0 -0
  220. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/dascmop.py +0 -0
  221. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/kursawe.py +0 -0
  222. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/modact.py +0 -0
  223. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/mw.py +0 -0
  224. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/omnitest.py +0 -0
  225. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/osy.py +0 -0
  226. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/srn.py +0 -0
  227. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/sympart.py +0 -0
  228. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/tnk.py +0 -0
  229. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/truss2d.py +0 -0
  230. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/welded_beam.py +0 -0
  231. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/wrm.py +0 -0
  232. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/zdt.py +0 -0
  233. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi_to_single.py +0 -0
  234. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/__init__.py +0 -0
  235. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/ackley.py +0 -0
  236. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/cantilevered_beam.py +0 -0
  237. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/flowshop_scheduling.py +0 -0
  238. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/g.py +0 -0
  239. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/griewank.py +0 -0
  240. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/himmelblau.py +0 -0
  241. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/knapsack.py +0 -0
  242. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/mopta08.py +0 -0
  243. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/multimodal.py +0 -0
  244. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/pressure_vessel.py +0 -0
  245. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/rastrigin.py +0 -0
  246. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/rosenbrock.py +0 -0
  247. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/schwefel.py +0 -0
  248. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/simple.py +0 -0
  249. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/sphere.py +0 -0
  250. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/traveling_salesman.py +0 -0
  251. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/zakharov.py +0 -0
  252. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/static.py +0 -0
  253. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/util.py +0 -0
  254. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/zero_to_one.py +0 -0
  255. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/__init__.py +0 -0
  256. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/collection.py +0 -0
  257. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/cv.py +0 -0
  258. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/default.py +0 -0
  259. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/delta.py +0 -0
  260. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/fmin.py +0 -0
  261. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/ftol.py +0 -0
  262. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/indicator.py +0 -0
  263. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/max_eval.py +0 -0
  264. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/max_gen.py +0 -0
  265. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/max_time.py +0 -0
  266. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/robust.py +0 -0
  267. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/xtol.py +0 -0
  268. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/__init__.py +0 -0
  269. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/archive.py +0 -0
  270. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/cache.py +0 -0
  271. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/clearing.py +0 -0
  272. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/__init__.py +0 -0
  273. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/column.py +0 -0
  274. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/display.py +0 -0
  275. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/multi.py +0 -0
  276. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/output.py +0 -0
  277. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/progress.py +0 -0
  278. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/single.py +0 -0
  279. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/dominator.py +0 -0
  280. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/function_loader.py +0 -0
  281. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/hv.py +0 -0
  282. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/matlab_engine.py +0 -0
  283. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/misc.py +0 -0
  284. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/mnn.py +0 -0
  285. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/__init__.py +0 -0
  286. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/dominance_degree_non_dominated_sort.py +0 -0
  287. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/efficient_non_dominated_sort.py +0 -0
  288. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/fast_non_dominated_sort.py +0 -0
  289. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/naive_non_dominated_sort.py +0 -0
  290. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/non_dominated_sorting.py +0 -0
  291. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/tree_based_non_dominated_sort.py +0 -0
  292. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/normalization.py +0 -0
  293. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/optimum.py +0 -0
  294. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/plotting.py +0 -0
  295. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/pruning_cd.py +0 -0
  296. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/randomized_argsort.py +0 -0
  297. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/__init__.py +0 -0
  298. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/construction.py +0 -0
  299. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/das_dennis.py +0 -0
  300. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/energy.py +0 -0
  301. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/energy_layer.py +0 -0
  302. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/genetic_algorithm.py +0 -0
  303. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/incremental.py +0 -0
  304. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/misc.py +0 -0
  305. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/optimizer.py +0 -0
  306. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/performance.py +0 -0
  307. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/reduction.py +0 -0
  308. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/sample_and_map.py +0 -0
  309. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/reference_direction.py +0 -0
  310. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/remote.py +0 -0
  311. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/roulette.py +0 -0
  312. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/running_metric.py +0 -0
  313. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/sliding_window.py +0 -0
  314. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/stochastic_ranking.py +0 -0
  315. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/vectors.py +0 -0
  316. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/__init__.py +0 -0
  317. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/cec2018.py +0 -0
  318. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/gta.py +0 -0
  319. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/hv.py +0 -0
  320. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/vendor_cmaes.py +0 -0
  321. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/vendor_coco.py +0 -0
  322. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/vendor_scipy.py +0 -0
  323. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/__init__.py +0 -0
  324. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/fitness_landscape.py +0 -0
  325. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/heatmap.py +0 -0
  326. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/pcp.py +0 -0
  327. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/petal.py +0 -0
  328. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/radar.py +0 -0
  329. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/radviz.py +0 -0
  330. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/scatter.py +0 -0
  331. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/star_coordinate.py +0 -0
  332. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/util.py +0 -0
  333. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/video/__init__.py +0 -0
  334. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/video/callback_video.py +0 -0
  335. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/video/one_var_one_obj.py +0 -0
  336. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/video/two_var_one_obj.py +0 -0
  337. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo.egg-info/dependency_links.txt +0 -0
  338. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo.egg-info/requires.txt +0 -0
  339. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo.egg-info/top_level.txt +0 -0
  340. {pymoo-0.6.1.2 → pymoo-0.6.1.3}/setup.cfg +0 -0
@@ -1,4 +1,4 @@
1
1
  prune .
2
2
  recursive-include pymoo *.py *.pyx *.pxd
3
3
  recursive-include pymoo/cython/vendor *.cpp *.h *.py
4
- include LICENSE Makefile
4
+ include LICENSE Makefile pyproject.toml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pymoo
3
- Version: 0.6.1.2
3
+ Version: 0.6.1.3
4
4
  Summary: Multi-Objective Optimization in Python
5
5
  Home-page: https://pymoo.org
6
6
  Author: Julian Blank
@@ -21,9 +21,17 @@ Classifier: Programming Language :: Python :: 3.12
21
21
  Classifier: Topic :: Scientific/Engineering
22
22
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
23
23
  Classifier: Topic :: Scientific/Engineering :: Mathematics
24
- Requires-Python: >=3.7
24
+ Requires-Python: >=3.9
25
25
  Description-Content-Type: text/x-rst
26
26
  License-File: LICENSE
27
+ Requires-Dist: numpy>=1.15
28
+ Requires-Dist: scipy>=1.1
29
+ Requires-Dist: matplotlib>=3
30
+ Requires-Dist: autograd>=1.4
31
+ Requires-Dist: cma==3.2.2
32
+ Requires-Dist: alive-progress
33
+ Requires-Dist: dill
34
+ Requires-Dist: Deprecated
27
35
 
28
36
 
29
37
 
@@ -70,10 +70,6 @@ def binary_tournament(pop, P, algorithm, **kwargs):
70
70
  class RankAndCrowdingSurvival(RankAndCrowding):
71
71
 
72
72
  def __init__(self, nds=None, crowding_func="cd"):
73
- warnings.warn(
74
- "RankAndCrowdingSurvival is deprecated and will be removed in version 0.8.*; use RankAndCrowding operator instead, which supports several and custom crowding diversity metrics.",
75
- DeprecationWarning, 2
76
- )
77
73
  super().__init__(nds, crowding_func)
78
74
 
79
75
  # =========================================================================================================
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.10 */
1
+ /* Generated by Cython 3.0.8 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -38,10 +38,10 @@ END: Cython Metadata */
38
38
  #else
39
39
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
40
40
  #endif
41
- #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
+ #define CYTHON_ABI "3_0_8" __PYX_EXTRA_ABI_MODULE_NAME
42
42
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
43
43
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
44
- #define CYTHON_HEX_VERSION 0x03000AF0
44
+ #define CYTHON_HEX_VERSION 0x030008F0
45
45
  #define CYTHON_FUTURE_DIVISION 0
46
46
  #include <stddef.h>
47
47
  #ifndef offsetof
@@ -133,8 +133,6 @@ END: Cython Metadata */
133
133
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
134
134
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
135
135
  #endif
136
- #undef CYTHON_USE_FREELISTS
137
- #define CYTHON_USE_FREELISTS 0
138
136
  #elif defined(PYPY_VERSION)
139
137
  #define CYTHON_COMPILING_IN_PYPY 1
140
138
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -196,8 +194,6 @@ END: Cython Metadata */
196
194
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
197
195
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
198
196
  #endif
199
- #undef CYTHON_USE_FREELISTS
200
- #define CYTHON_USE_FREELISTS 0
201
197
  #elif defined(CYTHON_LIMITED_API)
202
198
  #ifdef Py_LIMITED_API
203
199
  #undef __PYX_LIMITED_VERSION_HEX
@@ -259,8 +255,6 @@ END: Cython Metadata */
259
255
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
260
256
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
261
257
  #endif
262
- #undef CYTHON_USE_FREELISTS
263
- #define CYTHON_USE_FREELISTS 0
264
258
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
265
259
  #define CYTHON_COMPILING_IN_PYPY 0
266
260
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -270,17 +264,11 @@ END: Cython Metadata */
270
264
  #ifndef CYTHON_USE_TYPE_SLOTS
271
265
  #define CYTHON_USE_TYPE_SLOTS 1
272
266
  #endif
273
- #ifndef CYTHON_USE_TYPE_SPECS
274
- #define CYTHON_USE_TYPE_SPECS 0
275
- #endif
276
267
  #undef CYTHON_USE_PYTYPE_LOOKUP
277
268
  #define CYTHON_USE_PYTYPE_LOOKUP 0
278
269
  #ifndef CYTHON_USE_ASYNC_SLOTS
279
270
  #define CYTHON_USE_ASYNC_SLOTS 1
280
271
  #endif
281
- #ifndef CYTHON_USE_PYLONG_INTERNALS
282
- #define CYTHON_USE_PYLONG_INTERNALS 0
283
- #endif
284
272
  #undef CYTHON_USE_PYLIST_INTERNALS
285
273
  #define CYTHON_USE_PYLIST_INTERNALS 0
286
274
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -288,6 +276,8 @@ END: Cython Metadata */
288
276
  #endif
289
277
  #undef CYTHON_USE_UNICODE_WRITER
290
278
  #define CYTHON_USE_UNICODE_WRITER 0
279
+ #undef CYTHON_USE_PYLONG_INTERNALS
280
+ #define CYTHON_USE_PYLONG_INTERNALS 0
291
281
  #ifndef CYTHON_AVOID_BORROWED_REFS
292
282
  #define CYTHON_AVOID_BORROWED_REFS 0
293
283
  #endif
@@ -299,22 +289,11 @@ END: Cython Metadata */
299
289
  #endif
300
290
  #undef CYTHON_FAST_THREAD_STATE
301
291
  #define CYTHON_FAST_THREAD_STATE 0
302
- #undef CYTHON_FAST_GIL
303
- #define CYTHON_FAST_GIL 0
304
- #ifndef CYTHON_METH_FASTCALL
305
- #define CYTHON_METH_FASTCALL 1
306
- #endif
307
292
  #undef CYTHON_FAST_PYCALL
308
293
  #define CYTHON_FAST_PYCALL 0
309
- #ifndef CYTHON_PEP487_INIT_SUBCLASS
310
- #define CYTHON_PEP487_INIT_SUBCLASS 1
311
- #endif
312
294
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
313
295
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
314
296
  #endif
315
- #ifndef CYTHON_USE_MODULE_STATE
316
- #define CYTHON_USE_MODULE_STATE 0
317
- #endif
318
297
  #ifndef CYTHON_USE_TP_FINALIZE
319
298
  #define CYTHON_USE_TP_FINALIZE 1
320
299
  #endif
@@ -322,12 +301,6 @@ END: Cython Metadata */
322
301
  #define CYTHON_USE_DICT_VERSIONS 0
323
302
  #undef CYTHON_USE_EXC_INFO_STACK
324
303
  #define CYTHON_USE_EXC_INFO_STACK 0
325
- #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
326
- #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
327
- #endif
328
- #ifndef CYTHON_USE_FREELISTS
329
- #define CYTHON_USE_FREELISTS 0
330
- #endif
331
304
  #else
332
305
  #define CYTHON_COMPILING_IN_PYPY 0
333
306
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -418,9 +391,6 @@ END: Cython Metadata */
418
391
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
419
392
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
420
393
  #endif
421
- #ifndef CYTHON_USE_FREELISTS
422
- #define CYTHON_USE_FREELISTS 1
423
- #endif
424
394
  #endif
425
395
  #if !defined(CYTHON_FAST_PYCCALL)
426
396
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -780,13 +750,8 @@ class __Pyx_FakeReference {
780
750
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
781
751
  Py_ssize_t nargs, PyObject *kwnames);
782
752
  #else
783
- #if PY_VERSION_HEX >= 0x030d00A4
784
- # define __Pyx_PyCFunctionFast PyCFunctionFast
785
- # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
786
- #else
787
- # define __Pyx_PyCFunctionFast _PyCFunctionFast
788
- # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
789
- #endif
753
+ #define __Pyx_PyCFunctionFast _PyCFunctionFast
754
+ #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
790
755
  #endif
791
756
  #if CYTHON_METH_FASTCALL
792
757
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1138,7 +1103,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1138
1103
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1139
1104
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1140
1105
  #endif
1141
- #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1106
+ #if PY_VERSION_HEX >= 0x030d00A1
1142
1107
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1143
1108
  #else
1144
1109
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1225,7 +1190,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1225
1190
  #endif
1226
1191
 
1227
1192
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1228
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1193
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1229
1194
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1230
1195
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1231
1196
 
@@ -1333,7 +1298,24 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1333
1298
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1334
1299
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1335
1300
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1301
+ #if CYTHON_COMPILING_IN_LIMITED_API
1302
+ static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1303
+ {
1304
+ const wchar_t *u_end = u;
1305
+ while (*u_end++) ;
1306
+ return (size_t)(u_end - u - 1);
1307
+ }
1308
+ #else
1309
+ static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1310
+ {
1311
+ const Py_UNICODE *u_end = u;
1312
+ while (*u_end++) ;
1313
+ return (size_t)(u_end - u - 1);
1314
+ }
1315
+ #endif
1336
1316
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1317
+ #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1318
+ #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1337
1319
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1338
1320
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1339
1321
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -24529,7 +24511,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
24529
24511
  default:
24530
24512
  return NULL;
24531
24513
  }
24532
- return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
24514
+ return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
24533
24515
  }
24534
24516
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
24535
24517
  {
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.10 */
1
+ /* Generated by Cython 3.0.8 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -38,10 +38,10 @@ END: Cython Metadata */
38
38
  #else
39
39
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
40
40
  #endif
41
- #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
+ #define CYTHON_ABI "3_0_8" __PYX_EXTRA_ABI_MODULE_NAME
42
42
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
43
43
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
44
- #define CYTHON_HEX_VERSION 0x03000AF0
44
+ #define CYTHON_HEX_VERSION 0x030008F0
45
45
  #define CYTHON_FUTURE_DIVISION 0
46
46
  #include <stddef.h>
47
47
  #ifndef offsetof
@@ -133,8 +133,6 @@ END: Cython Metadata */
133
133
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
134
134
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
135
135
  #endif
136
- #undef CYTHON_USE_FREELISTS
137
- #define CYTHON_USE_FREELISTS 0
138
136
  #elif defined(PYPY_VERSION)
139
137
  #define CYTHON_COMPILING_IN_PYPY 1
140
138
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -196,8 +194,6 @@ END: Cython Metadata */
196
194
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
197
195
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
198
196
  #endif
199
- #undef CYTHON_USE_FREELISTS
200
- #define CYTHON_USE_FREELISTS 0
201
197
  #elif defined(CYTHON_LIMITED_API)
202
198
  #ifdef Py_LIMITED_API
203
199
  #undef __PYX_LIMITED_VERSION_HEX
@@ -259,8 +255,6 @@ END: Cython Metadata */
259
255
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
260
256
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
261
257
  #endif
262
- #undef CYTHON_USE_FREELISTS
263
- #define CYTHON_USE_FREELISTS 0
264
258
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
265
259
  #define CYTHON_COMPILING_IN_PYPY 0
266
260
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -270,17 +264,11 @@ END: Cython Metadata */
270
264
  #ifndef CYTHON_USE_TYPE_SLOTS
271
265
  #define CYTHON_USE_TYPE_SLOTS 1
272
266
  #endif
273
- #ifndef CYTHON_USE_TYPE_SPECS
274
- #define CYTHON_USE_TYPE_SPECS 0
275
- #endif
276
267
  #undef CYTHON_USE_PYTYPE_LOOKUP
277
268
  #define CYTHON_USE_PYTYPE_LOOKUP 0
278
269
  #ifndef CYTHON_USE_ASYNC_SLOTS
279
270
  #define CYTHON_USE_ASYNC_SLOTS 1
280
271
  #endif
281
- #ifndef CYTHON_USE_PYLONG_INTERNALS
282
- #define CYTHON_USE_PYLONG_INTERNALS 0
283
- #endif
284
272
  #undef CYTHON_USE_PYLIST_INTERNALS
285
273
  #define CYTHON_USE_PYLIST_INTERNALS 0
286
274
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -288,6 +276,8 @@ END: Cython Metadata */
288
276
  #endif
289
277
  #undef CYTHON_USE_UNICODE_WRITER
290
278
  #define CYTHON_USE_UNICODE_WRITER 0
279
+ #undef CYTHON_USE_PYLONG_INTERNALS
280
+ #define CYTHON_USE_PYLONG_INTERNALS 0
291
281
  #ifndef CYTHON_AVOID_BORROWED_REFS
292
282
  #define CYTHON_AVOID_BORROWED_REFS 0
293
283
  #endif
@@ -299,22 +289,11 @@ END: Cython Metadata */
299
289
  #endif
300
290
  #undef CYTHON_FAST_THREAD_STATE
301
291
  #define CYTHON_FAST_THREAD_STATE 0
302
- #undef CYTHON_FAST_GIL
303
- #define CYTHON_FAST_GIL 0
304
- #ifndef CYTHON_METH_FASTCALL
305
- #define CYTHON_METH_FASTCALL 1
306
- #endif
307
292
  #undef CYTHON_FAST_PYCALL
308
293
  #define CYTHON_FAST_PYCALL 0
309
- #ifndef CYTHON_PEP487_INIT_SUBCLASS
310
- #define CYTHON_PEP487_INIT_SUBCLASS 1
311
- #endif
312
294
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
313
295
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
314
296
  #endif
315
- #ifndef CYTHON_USE_MODULE_STATE
316
- #define CYTHON_USE_MODULE_STATE 0
317
- #endif
318
297
  #ifndef CYTHON_USE_TP_FINALIZE
319
298
  #define CYTHON_USE_TP_FINALIZE 1
320
299
  #endif
@@ -322,12 +301,6 @@ END: Cython Metadata */
322
301
  #define CYTHON_USE_DICT_VERSIONS 0
323
302
  #undef CYTHON_USE_EXC_INFO_STACK
324
303
  #define CYTHON_USE_EXC_INFO_STACK 0
325
- #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
326
- #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
327
- #endif
328
- #ifndef CYTHON_USE_FREELISTS
329
- #define CYTHON_USE_FREELISTS 0
330
- #endif
331
304
  #else
332
305
  #define CYTHON_COMPILING_IN_PYPY 0
333
306
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -418,9 +391,6 @@ END: Cython Metadata */
418
391
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
419
392
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
420
393
  #endif
421
- #ifndef CYTHON_USE_FREELISTS
422
- #define CYTHON_USE_FREELISTS 1
423
- #endif
424
394
  #endif
425
395
  #if !defined(CYTHON_FAST_PYCCALL)
426
396
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -780,13 +750,8 @@ class __Pyx_FakeReference {
780
750
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
781
751
  Py_ssize_t nargs, PyObject *kwnames);
782
752
  #else
783
- #if PY_VERSION_HEX >= 0x030d00A4
784
- # define __Pyx_PyCFunctionFast PyCFunctionFast
785
- # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
786
- #else
787
- # define __Pyx_PyCFunctionFast _PyCFunctionFast
788
- # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
789
- #endif
753
+ #define __Pyx_PyCFunctionFast _PyCFunctionFast
754
+ #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
790
755
  #endif
791
756
  #if CYTHON_METH_FASTCALL
792
757
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1138,7 +1103,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1138
1103
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1139
1104
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1140
1105
  #endif
1141
- #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1106
+ #if PY_VERSION_HEX >= 0x030d00A1
1142
1107
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1143
1108
  #else
1144
1109
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1225,7 +1190,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1225
1190
  #endif
1226
1191
 
1227
1192
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1228
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1193
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1229
1194
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1230
1195
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1231
1196
 
@@ -1333,7 +1298,24 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1333
1298
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1334
1299
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1335
1300
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1301
+ #if CYTHON_COMPILING_IN_LIMITED_API
1302
+ static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1303
+ {
1304
+ const wchar_t *u_end = u;
1305
+ while (*u_end++) ;
1306
+ return (size_t)(u_end - u - 1);
1307
+ }
1308
+ #else
1309
+ static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1310
+ {
1311
+ const Py_UNICODE *u_end = u;
1312
+ while (*u_end++) ;
1313
+ return (size_t)(u_end - u - 1);
1314
+ }
1315
+ #endif
1336
1316
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1317
+ #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1318
+ #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1337
1319
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1338
1320
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1339
1321
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -25999,7 +25981,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
25999
25981
  default:
26000
25982
  return NULL;
26001
25983
  }
26002
- return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
25984
+ return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
26003
25985
  }
26004
25986
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
26005
25987
  {
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.10 */
1
+ /* Generated by Cython 3.0.8 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -43,10 +43,10 @@ END: Cython Metadata */
43
43
  #else
44
44
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
45
45
  #endif
46
- #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
46
+ #define CYTHON_ABI "3_0_8" __PYX_EXTRA_ABI_MODULE_NAME
47
47
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
48
48
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
49
- #define CYTHON_HEX_VERSION 0x03000AF0
49
+ #define CYTHON_HEX_VERSION 0x030008F0
50
50
  #define CYTHON_FUTURE_DIVISION 0
51
51
  #include <stddef.h>
52
52
  #ifndef offsetof
@@ -138,8 +138,6 @@ END: Cython Metadata */
138
138
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
139
139
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
140
140
  #endif
141
- #undef CYTHON_USE_FREELISTS
142
- #define CYTHON_USE_FREELISTS 0
143
141
  #elif defined(PYPY_VERSION)
144
142
  #define CYTHON_COMPILING_IN_PYPY 1
145
143
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -201,8 +199,6 @@ END: Cython Metadata */
201
199
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
202
200
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
203
201
  #endif
204
- #undef CYTHON_USE_FREELISTS
205
- #define CYTHON_USE_FREELISTS 0
206
202
  #elif defined(CYTHON_LIMITED_API)
207
203
  #ifdef Py_LIMITED_API
208
204
  #undef __PYX_LIMITED_VERSION_HEX
@@ -264,8 +260,6 @@ END: Cython Metadata */
264
260
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
265
261
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
266
262
  #endif
267
- #undef CYTHON_USE_FREELISTS
268
- #define CYTHON_USE_FREELISTS 0
269
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
270
264
  #define CYTHON_COMPILING_IN_PYPY 0
271
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -275,17 +269,11 @@ END: Cython Metadata */
275
269
  #ifndef CYTHON_USE_TYPE_SLOTS
276
270
  #define CYTHON_USE_TYPE_SLOTS 1
277
271
  #endif
278
- #ifndef CYTHON_USE_TYPE_SPECS
279
- #define CYTHON_USE_TYPE_SPECS 0
280
- #endif
281
272
  #undef CYTHON_USE_PYTYPE_LOOKUP
282
273
  #define CYTHON_USE_PYTYPE_LOOKUP 0
283
274
  #ifndef CYTHON_USE_ASYNC_SLOTS
284
275
  #define CYTHON_USE_ASYNC_SLOTS 1
285
276
  #endif
286
- #ifndef CYTHON_USE_PYLONG_INTERNALS
287
- #define CYTHON_USE_PYLONG_INTERNALS 0
288
- #endif
289
277
  #undef CYTHON_USE_PYLIST_INTERNALS
290
278
  #define CYTHON_USE_PYLIST_INTERNALS 0
291
279
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -293,6 +281,8 @@ END: Cython Metadata */
293
281
  #endif
294
282
  #undef CYTHON_USE_UNICODE_WRITER
295
283
  #define CYTHON_USE_UNICODE_WRITER 0
284
+ #undef CYTHON_USE_PYLONG_INTERNALS
285
+ #define CYTHON_USE_PYLONG_INTERNALS 0
296
286
  #ifndef CYTHON_AVOID_BORROWED_REFS
297
287
  #define CYTHON_AVOID_BORROWED_REFS 0
298
288
  #endif
@@ -304,22 +294,11 @@ END: Cython Metadata */
304
294
  #endif
305
295
  #undef CYTHON_FAST_THREAD_STATE
306
296
  #define CYTHON_FAST_THREAD_STATE 0
307
- #undef CYTHON_FAST_GIL
308
- #define CYTHON_FAST_GIL 0
309
- #ifndef CYTHON_METH_FASTCALL
310
- #define CYTHON_METH_FASTCALL 1
311
- #endif
312
297
  #undef CYTHON_FAST_PYCALL
313
298
  #define CYTHON_FAST_PYCALL 0
314
- #ifndef CYTHON_PEP487_INIT_SUBCLASS
315
- #define CYTHON_PEP487_INIT_SUBCLASS 1
316
- #endif
317
299
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
318
300
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
319
301
  #endif
320
- #ifndef CYTHON_USE_MODULE_STATE
321
- #define CYTHON_USE_MODULE_STATE 0
322
- #endif
323
302
  #ifndef CYTHON_USE_TP_FINALIZE
324
303
  #define CYTHON_USE_TP_FINALIZE 1
325
304
  #endif
@@ -327,12 +306,6 @@ END: Cython Metadata */
327
306
  #define CYTHON_USE_DICT_VERSIONS 0
328
307
  #undef CYTHON_USE_EXC_INFO_STACK
329
308
  #define CYTHON_USE_EXC_INFO_STACK 0
330
- #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
331
- #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
332
- #endif
333
- #ifndef CYTHON_USE_FREELISTS
334
- #define CYTHON_USE_FREELISTS 0
335
- #endif
336
309
  #else
337
310
  #define CYTHON_COMPILING_IN_PYPY 0
338
311
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -423,9 +396,6 @@ END: Cython Metadata */
423
396
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
424
397
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
425
398
  #endif
426
- #ifndef CYTHON_USE_FREELISTS
427
- #define CYTHON_USE_FREELISTS 1
428
- #endif
429
399
  #endif
430
400
  #if !defined(CYTHON_FAST_PYCCALL)
431
401
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -785,13 +755,8 @@ class __Pyx_FakeReference {
785
755
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
786
756
  Py_ssize_t nargs, PyObject *kwnames);
787
757
  #else
788
- #if PY_VERSION_HEX >= 0x030d00A4
789
- # define __Pyx_PyCFunctionFast PyCFunctionFast
790
- # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
791
- #else
792
- # define __Pyx_PyCFunctionFast _PyCFunctionFast
793
- # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
794
- #endif
758
+ #define __Pyx_PyCFunctionFast _PyCFunctionFast
759
+ #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
795
760
  #endif
796
761
  #if CYTHON_METH_FASTCALL
797
762
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1143,7 +1108,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1143
1108
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1144
1109
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1145
1110
  #endif
1146
- #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1111
+ #if PY_VERSION_HEX >= 0x030d00A1
1147
1112
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1148
1113
  #else
1149
1114
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1230,7 +1195,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1230
1195
  #endif
1231
1196
 
1232
1197
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1233
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1198
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1234
1199
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1235
1200
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1236
1201
 
@@ -1333,7 +1298,24 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1333
1298
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1334
1299
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1335
1300
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1301
+ #if CYTHON_COMPILING_IN_LIMITED_API
1302
+ static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1303
+ {
1304
+ const wchar_t *u_end = u;
1305
+ while (*u_end++) ;
1306
+ return (size_t)(u_end - u - 1);
1307
+ }
1308
+ #else
1309
+ static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1310
+ {
1311
+ const Py_UNICODE *u_end = u;
1312
+ while (*u_end++) ;
1313
+ return (size_t)(u_end - u - 1);
1314
+ }
1315
+ #endif
1336
1316
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1317
+ #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1318
+ #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1337
1319
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1338
1320
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1339
1321
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -24415,7 +24397,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
24415
24397
  default:
24416
24398
  return NULL;
24417
24399
  }
24418
- return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
24400
+ return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
24419
24401
  }
24420
24402
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
24421
24403
  {