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.
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/MANIFEST.in +1 -1
- {pymoo-0.6.1.2/pymoo.egg-info → pymoo-0.6.1.3}/PKG-INFO +10 -2
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/nsga2.py +0 -4
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/calc_perpendicular_distance.cpp +27 -45
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/decomposition.cpp +27 -45
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/hv.cpp +27 -45
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/info.cpp +27 -45
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/mnn.cpp +27 -45
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/non_dominated_sorting.cpp +110 -130
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/pruning_cd.cpp +27 -45
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/stochastic_ranking.cpp +27 -45
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/grad_autograd.py +2 -2
- pymoo-0.6.1.3/pymoo/version.py +1 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3/pymoo.egg-info}/PKG-INFO +10 -2
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo.egg-info/SOURCES.txt +8 -1
- pymoo-0.6.1.3/pyproject.toml +2 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/setup.py +1 -1
- pymoo-0.6.1.3/tests/test_archive.py +117 -0
- pymoo-0.6.1.3/tests/test_decomposition.py +55 -0
- pymoo-0.6.1.3/tests/test_docs.py +21 -0
- pymoo-0.6.1.3/tests/test_examples.py +19 -0
- pymoo-0.6.1.3/tests/test_indicators.py +190 -0
- pymoo-0.6.1.3/tests/test_util.py +94 -0
- pymoo-0.6.1.2/pymoo/version.py +0 -1
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/LICENSE +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/Makefile +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/README.rst +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/bracket.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/genetic.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/line.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/local.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/base/meta.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/hyperparameters.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/age.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/age2.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/ctaea.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/dnsga2.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/kgb.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/moead.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/nsga3.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/rnsga2.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/rnsga3.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/rvea.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/sms.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/spea2.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/moo/unsga3.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/convex/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/brkga.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/cmaes.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/de.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/direct.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/es.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/g3pcx.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/ga.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/ga_niching.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/isres.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/nelder.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/optuna.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/pattern.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/pso.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/pso_ep.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/random_search.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/nonconvex/sres.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/backtracking.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/exp.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/golden.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/quadr_interp.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/algorithms/soo/univariate/wolfe.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/config.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/adaptive.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/as_obj.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/as_penalty.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/eps.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/constraints/from_bounds.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/algorithm.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/callback.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/crossover.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/decision_making.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/decomposition.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/duplicate.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/evaluator.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/indicator.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/individual.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/infill.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/initialization.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/mating.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/meta.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/mixed.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/mutation.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/operator.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/parameters.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/plot.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/population.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/problem.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/recorder.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/repair.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/replacement.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/result.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/sampling.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/selection.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/solution.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/survival.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/termination.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/core/variable.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/calc_perpendicular_distance.pyx +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/decomposition.pyx +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/hv.pyx +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/info.pyx +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/mnn.pyx +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/non_dominated_sorting.pyx +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/pruning_cd.pyx +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/stochastic_ranking.pyx +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/utils.pxd +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/vendor/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/vendor/hypervolume.cpp +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/cython/vendor/hypervolume.h +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/aasf.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/asf.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/pbi.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/perp_dist.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/tchebicheff.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/util.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/decomposition/weighted_sum.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/docs.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/experimental/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/experimental/algorithms/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/experimental/algorithms/gde3.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/automatic.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/grad_complex.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/grad_jax.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/gradient/toolbox/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/distance_indicator.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/gd.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/gd_plus.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/hv/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/hv/exact.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/hv/exact_2d.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/hv/monte_carlo.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/igd.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/igd_plus.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/kktpm.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/migd.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/rmetric.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/indicators/spacing.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/mcdm/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/mcdm/compromise_programming.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/mcdm/high_tradeoff.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/mcdm/pseudo_weights.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/control.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/binx.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/dex.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/erx.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/expx.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/hux.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/nox.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/ox.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/pcx.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/pntx.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/sbx.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/spx.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/crossover/ux.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/bitflip.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/gauss.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/inversion.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/nom.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/pm.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/mutation/rm.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/bounce_back.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/bounds_repair.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/inverse_penalty.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/rounding.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/to_bound.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/repair/vtype.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/sampling/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/sampling/lhs.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/sampling/rnd.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/selection/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/selection/rnd.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/selection/tournament.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/survival/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/survival/rank_and_crowding/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/survival/rank_and_crowding/classes.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/operators/survival/rank_and_crowding/metrics.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/optimize.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/dyn.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/dynamic/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/dynamic/cec2015.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/dynamic/df.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/dynamic/misc.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/functional.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/many/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/many/cdtlz.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/many/dcdtlz.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/many/dtlz.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/many/wfg.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/bnh.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/carside.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/clutch.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/csi.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/ctp.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/dascmop.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/kursawe.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/modact.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/mw.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/omnitest.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/osy.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/srn.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/sympart.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/tnk.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/truss2d.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/welded_beam.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/wrm.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi/zdt.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/multi_to_single.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/ackley.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/cantilevered_beam.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/flowshop_scheduling.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/g.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/griewank.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/himmelblau.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/knapsack.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/mopta08.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/multimodal.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/pressure_vessel.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/rastrigin.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/rosenbrock.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/schwefel.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/simple.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/sphere.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/traveling_salesman.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/single/zakharov.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/static.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/util.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/problems/zero_to_one.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/collection.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/cv.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/default.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/delta.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/fmin.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/ftol.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/indicator.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/max_eval.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/max_gen.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/max_time.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/robust.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/termination/xtol.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/archive.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/cache.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/clearing.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/column.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/display.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/multi.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/output.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/progress.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/display/single.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/dominator.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/function_loader.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/hv.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/matlab_engine.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/misc.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/mnn.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/dominance_degree_non_dominated_sort.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/efficient_non_dominated_sort.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/fast_non_dominated_sort.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/naive_non_dominated_sort.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/non_dominated_sorting.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/nds/tree_based_non_dominated_sort.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/normalization.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/optimum.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/plotting.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/pruning_cd.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/randomized_argsort.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/construction.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/das_dennis.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/energy.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/energy_layer.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/genetic_algorithm.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/incremental.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/misc.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/optimizer.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/performance.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/reduction.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/ref_dirs/sample_and_map.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/reference_direction.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/remote.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/roulette.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/running_metric.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/sliding_window.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/stochastic_ranking.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/util/vectors.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/cec2018.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/gta.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/hv.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/vendor_cmaes.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/vendor_coco.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/vendor/vendor_scipy.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/fitness_landscape.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/heatmap.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/pcp.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/petal.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/radar.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/radviz.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/scatter.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/star_coordinate.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/util.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/video/__init__.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/video/callback_video.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/video/one_var_one_obj.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo/visualization/video/two_var_one_obj.py +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo.egg-info/dependency_links.txt +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo.egg-info/requires.txt +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/pymoo.egg-info/top_level.txt +0 -0
- {pymoo-0.6.1.2 → pymoo-0.6.1.3}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pymoo
|
|
3
|
-
Version: 0.6.1.
|
|
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.
|
|
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.
|
|
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 "
|
|
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
|
|
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
|
-
#
|
|
784
|
-
#
|
|
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
|
|
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__;
|
|
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 ((
|
|
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.
|
|
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 "
|
|
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
|
|
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
|
-
#
|
|
784
|
-
#
|
|
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
|
|
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__;
|
|
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 ((
|
|
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.
|
|
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 "
|
|
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
|
|
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
|
-
#
|
|
789
|
-
#
|
|
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
|
|
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__;
|
|
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 ((
|
|
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
|
{
|