pymoode


Namepymoode JSON
Version 0.3.0 PyPI version JSON
download
home_pagehttps://github.com/mooscaliaproject/pymoode
SummaryA Python optimization package using Differential Evolution.
upload_time2024-04-21 21:51:57
maintainerNone
docs_urlNone
authorBruno Scalia C. F. Leite
requires_pythonNone
licenseApache License 2.0
keywords differential evolution multi-objective optimization gde3 nsde nsde-r nsga-ii genetic algorithm crowding distances evolutionary algorithms evolutionary optimization metaheuristics
VCS
bugtrack_url
requirements numpy pymoo scipy
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <a href="https://pymoode.readthedocs.io">
  <img src="https://github.com/mooscaliaproject/pymoode/raw/main/images/logo_header_pymoode.png" alt="header"/>
  </a>
</p>

# pymoode

A Python framework for Differential Evolution using [pymoo](https://github.com/anyoptimization/pymoo) (Blank & Deb, 2020).

[Read the Docs](https://pymoode.readthedocs.io/en/latest/)

## Contents

[Install](#install) | [Algorithms](#algorithms) | [Survival Operators](#survival-operators) | [Crowding Metrics](#crowding-metrics) | [Usage](#usage) | [Structure](#structure) | [Citation](#citation) | [References](#references) | [Contact](#contact) | [Acknowledgements](#acknowledgements)

## Install

First, make sure you have a Python 3 environment installed.

From PyPi:
```
pip install pymoode
```

From the current version on github:
```
pip install git+https://github.com/mooscaliaproject/pymoode
```

## Algorithms
- **DE**: Differential Evolution for single-objective problems proposed by Storn & Price (1997). Other features later implemented are also present, such as dither, jitter, selection variants, and crossover strategies. For details see Price et al. (2005).
- **NSDE**: Non-dominated Sorting Differential Evolution, a multi-objective algorithm that combines DE mutation and crossover operators to NSGA-II (Deb et al., 2002) survival.
- **GDE3**: Generalized Differential Evolution 3, a multi-objective algorithm that combines DE mutation and crossover operators to NSGA-II survival with a hybrid type survival strategy. In this algorithm, individuals might be removed in a one-to-one comparison before truncating the population by the multi-objective survival operator. It was proposed by Kukkonen, S. & Lampinen, J. (2005). Variants with M-Nearest Neighbors and 2-Nearest Neighbors survival are also available.
- **NSDE-R**: Non-dominated Sorting Differential Evolution based on Reference directions (Reddy & Dulikravich, 2019). It is an algorithm for many-objective problems that works as an extension of NSDE using NSGA-III (Deb & Jain, 2014) survival strategy.

## Survival Operators

- **RandAndCrowding**: Flexible structure to implement NSGA-II rank and crowding survival with different options for crowding metric and elimination of individuals.
- **ConstrRankAndCrowding**: A survival operator based on rank and crowding with a special constraint handling approach proposed by Kukkonen, S. & Lampinen, J. (2005).

## Crowding Metrics

- **Crowding Distance** (*'cd'*): Proposed by Deb et al. (2002) in NSGA-II. Imported from *pymoo*.
- **Pruning Crowding Distance** (*'pruning-cd'* or *'pcd'*): Proposed by Kukkonen & Deb (2006a), it recursively recalculates crowding distances as removes individuals from a population to improve diversity.
- ***M*-Nearest Neighbors** (*'mnn'*): Proposed by Kukkonen & Deb (2006b) in an extension of GDE3 to many-objective problems.
- **2-Nearest Neighbors** (*'2nn'*): Also proposed by Kukkonen & Deb (2006b), it is a variant of M-Nearest Neighbors in which the number of neighbors is two.
- **Crowding Entropy** (*'ce'*): Proposed by Wang et al. (2010) in MOSADE.

Metrics *'pcd'*, *'mnn'*, and *'2nn'* are recursively recalculated as individuals are removed, to improve the population diversity. Therefore, they are implemented using cython to reduce computational time. If compilation fails, .py files are used instead, which makes it slightly slower.

## Usage
For more examples, [read the docs](https://pymoode.readthedocs.io/en/latest/Usage/index.html)

```python
import matplotlib.pyplot as plt
from pymoo.problems import get_problem
from pymoo.optimize import minimize
from pymoode.algorithms import GDE3
from pymoode.survival import RankAndCrowding

problem = get_problem("tnk")
pf = problem.pareto_front()
```

```python
gde3 = GDE3(
    pop_size=50, variant="DE/rand/1/bin", CR=0.5, F=(0.0, 0.9),
    survival=RankAndCrowding(crowding_func="pcd")
)
    
res = minimize(problem, gde3, ('n_gen', 200), seed=12)
```

```python
fig, ax = plt.subplots(figsize=[6, 5], dpi=100)
ax.scatter(pf[:, 0], pf[:, 1], color="navy", label="True Front")
ax.scatter(res.F[:, 0], res.F[:, 1], color="firebrick", label="GDE3")
ax.set_ylabel("$f_2$")
ax.set_xlabel("$f_1$")
ax.legend()
fig.tight_layout()
plt.show()
```

<p align="center">
  <img
    src="https://github.com/mooscaliaproject/pymoode/raw/main/images/tnk_gde3.png"
    alt="tnk_gde3" width=500
  />
</p>

Alternatively, on the three-objective problem DTLZ2, it would produce amazing results.

```python
problem = get_problem("dtlz2")
```

```python
gde3mnn = GDE3(
    pop_size=150, variant="DE/rand/1/bin", CR=0.5, F=(0.0, 0.9),
    survival=RankAndCrowding(crowding_func="mnn")
)
    
res = minimize(problem, gde3mnn, ('n_gen', 250), seed=12)
```

<p align="center">
  <img
    src="https://github.com/mooscaliaproject/pymoode/raw/main/images/gde3mnn_example.gif"
    alt="gde3_dtlz2" width=500
  />
</p>

## Structure

```
pymoode
├───algorithms
│   ├───DE
│   ├───GDE3
│   ├───NSDE
│   └───NSDER
├───survival
│   ├───RankAndCrowding
│   └───ConstrRankAndCrowding
├───performance
│   └───SpacingIndicator
└───operators
    ├───dem.py
    │   └───DEM
    ├───dex.py
    │   └───DEX
    └───des.py
        └───DES
```


## Citation
This package was developed as part of an academic optimization project. Please, if you use it for research purposes, cite it using the published article:

[Leite, B., Costa, A. O. S., Costa, E. F., 2023. Multi-objective optimization of adiabatic styrene reactors using Generalized Differential Evolution 3 (GDE3). Chem. Eng. Sci., Volume 265, Article 118196. doi:10.1016/j.ces.2022.118196.](https://doi.org/10.1016/j.ces.2022.118196)

## References

[Blank, J. & Deb, K., 2020. pymoo: Multi-Objective Optimization in Python. IEEE Access, Volume 8, pp. 89497-89509. doi:10.1109/ACCESS.2020.2990567.](https://doi.org/10.1109/ACCESS.2020.2990567)

[Deb, K. & Jain, H., 2014. An evolutionary many-objective optimization algorithm using reference-point-based nondominated sorting approach, part I: solving problems with box constraints. IEEE Transactions on Evolutionary Computation, 18(4), pp. 577–601. doi:10.1109/TEVC.2013.2281535.](https://doi.org/10.1109/TEVC.2013.2281535)

[Deb, K., Pratap, A., Agarwal, S. & Meyarivan, T. A. M. T., 2002. A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II. IEEE transactions on evolutionary computation, 6(2), pp. 182-197. doi:10.1109/4235.996017.](https://doi.org/10.1109/4235.996017)

[Kukkonen, S. & Deb, K., 2006a. Improved Pruning of Non-Dominated Solutions Based on Crowding Distance for Bi-Objective Optimization Problems. Vancouver, s.n., pp. 1179-1186. doi:10.1109/CEC.2006.1688443.](https://doi.org/10.1109/CEC.2006.1688443)

[Kukkonen, S. & Deb, K., 2006b. A fast and effective method for pruning of non-dominated solutions in many-objective problems. In: Parallel problem solving from nature-PPSN IX. Berlin: Springer, pp. 553-562. doi:10.1007/11844297_56.](https://doi.org/10.1007/11844297_56)

[Kukkonen, S. & Lampinen, J., 2005. GDE3: The third evolution step of generalized differential evolution. 2005 IEEE congress on evolutionary computation, Volume 1, pp. 443-450. doi:10.1109/CEC.2005.1554717.](https://doi.org/10.1109/CEC.2005.1554717)

[Reddy, S. R. & Dulikravich, G. S., 2019. Many-objective differential evolution optimization based on reference points: NSDE-R. Struct. Multidisc. Optim., Volume 60, pp. 1455-1473. doi:10.1007/s00158-019-02272-0.](https://doi.org/10.1007/s00158-019-02272-0)

Price, K. V., Storn, R. M. & Lampinen, J. A., 2005. Differential Evolution: A Practical Approach to Global Optimization. 1st ed. Springer: Berlin.

[Storn, R. & Price, K., 1997. Differential evolution–a simple and efficient heuristic for global optimization over continuous spaces. J. Glob. Optim., 11(4), pp. 341-359. doi:10.1023/A:1008202821328](https://doi.org/10.1023/A:1008202821328)

[Wang, Y.-N., Wu, L.-H. & Yuan, X.-F., 2010. Multi-objective self-adaptive differential evolution with elitist archive and crowding entropy-based diversity measure. Soft Comput., 14(3), pp. 193-209. doi:10.1007/s00500-008-0394-9](https://doi.org/10.1007/s00500-008-0394-9)

## Contact
e-mail: bruscalia12@gmail.com

## Acknowledgements
To Julian Blank, who created the amazing structure of pymoo, making such a project possible.

To Esly F. da Costa Junior, for the unconditional support all along.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mooscaliaproject/pymoode",
    "name": "pymoode",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Differential Evolution, Multi-objective optimization, GDE3, NSDE, NSDE-R, NSGA-II, Genetic Algorithm, Crowding Distances, Evolutionary Algorithms, Evolutionary Optimization, Metaheuristics",
    "author": "Bruno Scalia C. F. Leite",
    "author_email": "mooscaliaproject@gmail.com",
    "download_url": "https://github.com/mooscaliaproject/pymoode",
    "platform": null,
    "description": "<p align=\"center\">\n  <a href=\"https://pymoode.readthedocs.io\">\n  <img src=\"https://github.com/mooscaliaproject/pymoode/raw/main/images/logo_header_pymoode.png\" alt=\"header\"/>\n  </a>\n</p>\n\n# pymoode\n\nA Python framework for Differential Evolution using [pymoo](https://github.com/anyoptimization/pymoo) (Blank & Deb, 2020).\n\n[Read the Docs](https://pymoode.readthedocs.io/en/latest/)\n\n## Contents\n\n[Install](#install) | [Algorithms](#algorithms) | [Survival Operators](#survival-operators) | [Crowding Metrics](#crowding-metrics) | [Usage](#usage) | [Structure](#structure) | [Citation](#citation) | [References](#references) | [Contact](#contact) | [Acknowledgements](#acknowledgements)\n\n## Install\n\nFirst, make sure you have a Python 3 environment installed.\n\nFrom PyPi:\n```\npip install pymoode\n```\n\nFrom the current version on github:\n```\npip install git+https://github.com/mooscaliaproject/pymoode\n```\n\n## Algorithms\n- **DE**: Differential Evolution for single-objective problems proposed by Storn & Price (1997). Other features later implemented are also present, such as dither, jitter, selection variants, and crossover strategies. For details see Price et al. (2005).\n- **NSDE**: Non-dominated Sorting Differential Evolution, a multi-objective algorithm that combines DE mutation and crossover operators to NSGA-II (Deb et al., 2002) survival.\n- **GDE3**: Generalized Differential Evolution 3, a multi-objective algorithm that combines DE mutation and crossover operators to NSGA-II survival with a hybrid type survival strategy. In this algorithm, individuals might be removed in a one-to-one comparison before truncating the population by the multi-objective survival operator. It was proposed by Kukkonen, S. & Lampinen, J. (2005). Variants with M-Nearest Neighbors and 2-Nearest Neighbors survival are also available.\n- **NSDE-R**: Non-dominated Sorting Differential Evolution based on Reference directions (Reddy & Dulikravich, 2019). It is an algorithm for many-objective problems that works as an extension of NSDE using NSGA-III (Deb & Jain, 2014) survival strategy.\n\n## Survival Operators\n\n- **RandAndCrowding**: Flexible structure to implement NSGA-II rank and crowding survival with different options for crowding metric and elimination of individuals.\n- **ConstrRankAndCrowding**: A survival operator based on rank and crowding with a special constraint handling approach proposed by Kukkonen, S. & Lampinen, J. (2005).\n\n## Crowding Metrics\n\n- **Crowding Distance** (*'cd'*): Proposed by Deb et al. (2002) in NSGA-II. Imported from *pymoo*.\n- **Pruning Crowding Distance** (*'pruning-cd'* or *'pcd'*): Proposed by Kukkonen & Deb (2006a), it recursively recalculates crowding distances as removes individuals from a population to improve diversity.\n- ***M*-Nearest Neighbors** (*'mnn'*): Proposed by Kukkonen & Deb (2006b) in an extension of GDE3 to many-objective problems.\n- **2-Nearest Neighbors** (*'2nn'*): Also proposed by Kukkonen & Deb (2006b), it is a variant of M-Nearest Neighbors in which the number of neighbors is two.\n- **Crowding Entropy** (*'ce'*): Proposed by Wang et al. (2010) in MOSADE.\n\nMetrics *'pcd'*, *'mnn'*, and *'2nn'* are recursively recalculated as individuals are removed, to improve the population diversity. Therefore, they are implemented using cython to reduce computational time. If compilation fails, .py files are used instead, which makes it slightly slower.\n\n## Usage\nFor more examples, [read the docs](https://pymoode.readthedocs.io/en/latest/Usage/index.html)\n\n```python\nimport matplotlib.pyplot as plt\nfrom pymoo.problems import get_problem\nfrom pymoo.optimize import minimize\nfrom pymoode.algorithms import GDE3\nfrom pymoode.survival import RankAndCrowding\n\nproblem = get_problem(\"tnk\")\npf = problem.pareto_front()\n```\n\n```python\ngde3 = GDE3(\n    pop_size=50, variant=\"DE/rand/1/bin\", CR=0.5, F=(0.0, 0.9),\n    survival=RankAndCrowding(crowding_func=\"pcd\")\n)\n    \nres = minimize(problem, gde3, ('n_gen', 200), seed=12)\n```\n\n```python\nfig, ax = plt.subplots(figsize=[6, 5], dpi=100)\nax.scatter(pf[:, 0], pf[:, 1], color=\"navy\", label=\"True Front\")\nax.scatter(res.F[:, 0], res.F[:, 1], color=\"firebrick\", label=\"GDE3\")\nax.set_ylabel(\"$f_2$\")\nax.set_xlabel(\"$f_1$\")\nax.legend()\nfig.tight_layout()\nplt.show()\n```\n\n<p align=\"center\">\n  <img\n    src=\"https://github.com/mooscaliaproject/pymoode/raw/main/images/tnk_gde3.png\"\n    alt=\"tnk_gde3\" width=500\n  />\n</p>\n\nAlternatively, on the three-objective problem DTLZ2, it would produce amazing results.\n\n```python\nproblem = get_problem(\"dtlz2\")\n```\n\n```python\ngde3mnn = GDE3(\n    pop_size=150, variant=\"DE/rand/1/bin\", CR=0.5, F=(0.0, 0.9),\n    survival=RankAndCrowding(crowding_func=\"mnn\")\n)\n    \nres = minimize(problem, gde3mnn, ('n_gen', 250), seed=12)\n```\n\n<p align=\"center\">\n  <img\n    src=\"https://github.com/mooscaliaproject/pymoode/raw/main/images/gde3mnn_example.gif\"\n    alt=\"gde3_dtlz2\" width=500\n  />\n</p>\n\n## Structure\n\n```\npymoode\n\u251c\u2500\u2500\u2500algorithms\n\u2502   \u251c\u2500\u2500\u2500DE\n\u2502   \u251c\u2500\u2500\u2500GDE3\n\u2502   \u251c\u2500\u2500\u2500NSDE\n\u2502   \u2514\u2500\u2500\u2500NSDER\n\u251c\u2500\u2500\u2500survival\n\u2502   \u251c\u2500\u2500\u2500RankAndCrowding\n\u2502   \u2514\u2500\u2500\u2500ConstrRankAndCrowding\n\u251c\u2500\u2500\u2500performance\n\u2502   \u2514\u2500\u2500\u2500SpacingIndicator\n\u2514\u2500\u2500\u2500operators\n    \u251c\u2500\u2500\u2500dem.py\n    \u2502   \u2514\u2500\u2500\u2500DEM\n    \u251c\u2500\u2500\u2500dex.py\n    \u2502   \u2514\u2500\u2500\u2500DEX\n    \u2514\u2500\u2500\u2500des.py\n        \u2514\u2500\u2500\u2500DES\n```\n\n\n## Citation\nThis package was developed as part of an academic optimization project. Please, if you use it for research purposes, cite it using the published article:\n\n[Leite, B., Costa, A. O. S., Costa, E. F., 2023. Multi-objective optimization of adiabatic styrene reactors using Generalized Differential Evolution 3 (GDE3). Chem. Eng. Sci., Volume 265, Article 118196. doi:10.1016/j.ces.2022.118196.](https://doi.org/10.1016/j.ces.2022.118196)\n\n## References\n\n[Blank, J. & Deb, K., 2020. pymoo: Multi-Objective Optimization in Python. IEEE Access, Volume 8, pp. 89497-89509. doi:10.1109/ACCESS.2020.2990567.](https://doi.org/10.1109/ACCESS.2020.2990567)\n\n[Deb, K. & Jain, H., 2014. An evolutionary many-objective optimization algorithm using reference-point-based nondominated sorting approach, part I: solving problems with box constraints. IEEE Transactions on Evolutionary Computation, 18(4), pp. 577\u2013601. doi:10.1109/TEVC.2013.2281535.](https://doi.org/10.1109/TEVC.2013.2281535)\n\n[Deb, K., Pratap, A., Agarwal, S. & Meyarivan, T. A. M. T., 2002. A Fast and Elitist Multiobjective Genetic Algorithm: NSGA-II. IEEE transactions on evolutionary computation, 6(2), pp. 182-197. doi:10.1109/4235.996017.](https://doi.org/10.1109/4235.996017)\n\n[Kukkonen, S. & Deb, K., 2006a. Improved Pruning of Non-Dominated Solutions Based on Crowding Distance for Bi-Objective Optimization Problems. Vancouver, s.n., pp. 1179-1186. doi:10.1109/CEC.2006.1688443.](https://doi.org/10.1109/CEC.2006.1688443)\n\n[Kukkonen, S. & Deb, K., 2006b. A fast and effective method for pruning of non-dominated solutions in many-objective problems. In: Parallel problem solving from nature-PPSN IX. Berlin: Springer, pp. 553-562. doi:10.1007/11844297_56.](https://doi.org/10.1007/11844297_56)\n\n[Kukkonen, S. & Lampinen, J., 2005. GDE3: The third evolution step of generalized differential evolution. 2005 IEEE congress on evolutionary computation, Volume 1, pp. 443-450. doi:10.1109/CEC.2005.1554717.](https://doi.org/10.1109/CEC.2005.1554717)\n\n[Reddy, S. R. & Dulikravich, G. S., 2019. Many-objective differential evolution optimization based on reference points: NSDE-R. Struct. Multidisc. Optim., Volume 60, pp. 1455-1473. doi:10.1007/s00158-019-02272-0.](https://doi.org/10.1007/s00158-019-02272-0)\n\nPrice, K. V., Storn, R. M. & Lampinen, J. A., 2005. Differential Evolution: A Practical Approach to Global Optimization. 1st ed. Springer: Berlin.\n\n[Storn, R. & Price, K., 1997. Differential evolution\u2013a simple and efficient heuristic for global optimization over continuous spaces. J. Glob. Optim., 11(4), pp. 341-359. doi:10.1023/A:1008202821328](https://doi.org/10.1023/A:1008202821328)\n\n[Wang, Y.-N., Wu, L.-H. & Yuan, X.-F., 2010. Multi-objective self-adaptive differential evolution with elitist archive and crowding entropy-based diversity measure. Soft Comput., 14(3), pp. 193-209. doi:10.1007/s00500-008-0394-9](https://doi.org/10.1007/s00500-008-0394-9)\n\n## Contact\ne-mail: bruscalia12@gmail.com\n\n## Acknowledgements\nTo Julian Blank, who created the amazing structure of pymoo, making such a project possible.\n\nTo Esly F. da Costa Junior, for the unconditional support all along.\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "A Python optimization package using Differential Evolution.",
    "version": "0.3.0",
    "project_urls": {
        "Download": "https://github.com/mooscaliaproject/pymoode",
        "Homepage": "https://github.com/mooscaliaproject/pymoode"
    },
    "split_keywords": [
        "differential evolution",
        " multi-objective optimization",
        " gde3",
        " nsde",
        " nsde-r",
        " nsga-ii",
        " genetic algorithm",
        " crowding distances",
        " evolutionary algorithms",
        " evolutionary optimization",
        " metaheuristics"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b7e5ae2784143a74d49e0f89e9a6584a04e88a20951a25a543bd13482a6940d",
                "md5": "44bd9cbe7bea1056870e88fa6597b9b5",
                "sha256": "4a6b13e462b285105951284253ed507a3744ef053f6ed1ac0ae0da65de53c9b3"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44bd9cbe7bea1056870e88fa6597b9b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 317972,
            "upload_time": "2024-04-21T21:51:57",
            "upload_time_iso_8601": "2024-04-21T21:51:57.268543Z",
            "url": "https://files.pythonhosted.org/packages/3b/7e/5ae2784143a74d49e0f89e9a6584a04e88a20951a25a543bd13482a6940d/pymoode-0.3.0-cp310-cp310-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bcb9d18a057a07ead5565c164c3dc067a89b74fdd6eee8a44c8c5d1f3ed1799",
                "md5": "960bed7636e96cc6e68fd89c2e133e12",
                "sha256": "de2e2d93ba9c60b1ec01bb59299643cac7b30949cc1a847ad0a1f76e7e4c0d3d"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "960bed7636e96cc6e68fd89c2e133e12",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1697316,
            "upload_time": "2024-04-21T21:51:59",
            "upload_time_iso_8601": "2024-04-21T21:51:59.138695Z",
            "url": "https://files.pythonhosted.org/packages/1b/cb/9d18a057a07ead5565c164c3dc067a89b74fdd6eee8a44c8c5d1f3ed1799/pymoode-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "593dd83944e1068ae48956945d5221a1ba32f412e794ccf6279de9303a7ef1d0",
                "md5": "8de1b1148885e141b3e7c901e559c84a",
                "sha256": "075019a78795e29b1b36a37b3b43bd36b22b138d658c591edd0e59e2fbef4aa6"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8de1b1148885e141b3e7c901e559c84a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 288810,
            "upload_time": "2024-04-21T21:52:01",
            "upload_time_iso_8601": "2024-04-21T21:52:01.915532Z",
            "url": "https://files.pythonhosted.org/packages/59/3d/d83944e1068ae48956945d5221a1ba32f412e794ccf6279de9303a7ef1d0/pymoode-0.3.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86f004d05051860fd68665081e2eda6d3593ef7a21d01beab033ceab85ed0cac",
                "md5": "3a63f568818245da0c4320675c0347c6",
                "sha256": "03762244aff0b54d78cdf0ef3580fd2ba6b7e2807df3bd2f14f7114570f5b988"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3a63f568818245da0c4320675c0347c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 576849,
            "upload_time": "2024-04-21T21:52:03",
            "upload_time_iso_8601": "2024-04-21T21:52:03.916860Z",
            "url": "https://files.pythonhosted.org/packages/86/f0/04d05051860fd68665081e2eda6d3593ef7a21d01beab033ceab85ed0cac/pymoode-0.3.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6076108f437c5e82792237163eea2838d35b3203e1f903713d01007f1e9a9ba7",
                "md5": "c1ed452631a938aa9a0c20edde0efdba",
                "sha256": "d272441f7940bf182c81169ad7dac541707448b76e4971003add167926ce4ffa"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1ed452631a938aa9a0c20edde0efdba",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1811789,
            "upload_time": "2024-04-21T21:52:05",
            "upload_time_iso_8601": "2024-04-21T21:52:05.670938Z",
            "url": "https://files.pythonhosted.org/packages/60/76/108f437c5e82792237163eea2838d35b3203e1f903713d01007f1e9a9ba7/pymoode-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5efdaa98709fbbe4fa0d36b9c4dc3403001f50ce73284070125658001449395",
                "md5": "14068dbef223ad64703e74cb707c1825",
                "sha256": "98026058826b948d79c7c80093d6f38735c63c4403bf3ecb4b7d209ee3a64407"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "14068dbef223ad64703e74cb707c1825",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 288518,
            "upload_time": "2024-04-21T21:52:07",
            "upload_time_iso_8601": "2024-04-21T21:52:07.715067Z",
            "url": "https://files.pythonhosted.org/packages/f5/ef/daa98709fbbe4fa0d36b9c4dc3403001f50ce73284070125658001449395/pymoode-0.3.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dc12b81f2932beb7811330f7dce71fe12d4ab3930af2c7f87329eeb363e707b0",
                "md5": "ddf881e1cc921501bbecb8798e4c32a4",
                "sha256": "a38f9cdc7c7d62c9f6bc1ed3f8b1197c3f2089d3411747884eb22d94ae1e91e6"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ddf881e1cc921501bbecb8798e4c32a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 582874,
            "upload_time": "2024-04-21T21:52:09",
            "upload_time_iso_8601": "2024-04-21T21:52:09.900256Z",
            "url": "https://files.pythonhosted.org/packages/dc/12/b81f2932beb7811330f7dce71fe12d4ab3930af2c7f87329eeb363e707b0/pymoode-0.3.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1347d71f6a9b1fa8bf9a29c8a8073d68661b5801ffe0b85bab1280018e66594a",
                "md5": "df17b3d9da7bf0fcba276ed4108cddc9",
                "sha256": "46ca6630b83445b1ebcfcc6660435e5d48adb8946bddec8a261a22cac92102ee"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "df17b3d9da7bf0fcba276ed4108cddc9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 290787,
            "upload_time": "2024-04-21T21:52:11",
            "upload_time_iso_8601": "2024-04-21T21:52:11.695159Z",
            "url": "https://files.pythonhosted.org/packages/13/47/d71f6a9b1fa8bf9a29c8a8073d68661b5801ffe0b85bab1280018e66594a/pymoode-0.3.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ffe235b1045658abf4fc472c23bca4cb67f7169d68debd7e6b76b579b0e05025",
                "md5": "f5ec6fd5defda9aaa4b427e486c45a7d",
                "sha256": "362cdcbe80ab45a0f0ae11b53afca99fa7ccdab4350325c214748a3ba3680e32"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp37-cp37m-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5ec6fd5defda9aaa4b427e486c45a7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 320648,
            "upload_time": "2024-04-21T21:52:13",
            "upload_time_iso_8601": "2024-04-21T21:52:13.728140Z",
            "url": "https://files.pythonhosted.org/packages/ff/e2/35b1045658abf4fc472c23bca4cb67f7169d68debd7e6b76b579b0e05025/pymoode-0.3.0-cp37-cp37m-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7497f0918129aaee6d5bdf93afc12dfbddd95439cd91622be9bfb16e377e2dc5",
                "md5": "8925626aa556fb399c5a3bbe43a2260f",
                "sha256": "a32c3054e128e1ea2d8c5d466c11a2979311bc3a6fc8cfd4ad4b8847f83398bd"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8925626aa556fb399c5a3bbe43a2260f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1620175,
            "upload_time": "2024-04-21T21:52:16",
            "upload_time_iso_8601": "2024-04-21T21:52:16.934040Z",
            "url": "https://files.pythonhosted.org/packages/74/97/f0918129aaee6d5bdf93afc12dfbddd95439cd91622be9bfb16e377e2dc5/pymoode-0.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7dbac6637f70d6f20e5a51a7c8d75827163a5d9ea2704c8e3729b2e59c02f5df",
                "md5": "5b7401949aecd69ae4ea07184a58f962",
                "sha256": "11114207ac66a88268ea3e5a555062e984137651293cdfef8fa11ea249eab3e3"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5b7401949aecd69ae4ea07184a58f962",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 328674,
            "upload_time": "2024-04-21T21:52:18",
            "upload_time_iso_8601": "2024-04-21T21:52:18.869714Z",
            "url": "https://files.pythonhosted.org/packages/7d/ba/c6637f70d6f20e5a51a7c8d75827163a5d9ea2704c8e3729b2e59c02f5df/pymoode-0.3.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3d72b2609c6bd65d976ecdcd2daf9e41e2434950ff3d75c848b2de596c79bbc",
                "md5": "d7f4df4a8c73de8e01b7f078352e19e0",
                "sha256": "c69aebe485d01f8860e261b9e0bece23a72318c8f3ef96b4c0ea85942825e2b6"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d7f4df4a8c73de8e01b7f078352e19e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 318208,
            "upload_time": "2024-04-21T21:52:20",
            "upload_time_iso_8601": "2024-04-21T21:52:20.814776Z",
            "url": "https://files.pythonhosted.org/packages/a3/d7/2b2609c6bd65d976ecdcd2daf9e41e2434950ff3d75c848b2de596c79bbc/pymoode-0.3.0-cp38-cp38-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93412acd70136999e66099e1fcf011e20e0edd247f756e56ef5e8e8f1e1092dd",
                "md5": "a6edbd10627eee552d6881c88a3261fa",
                "sha256": "4f4b61efc98888c8771e87e5e58781c7d040bd6ab425b43dbaf7948a4c001874"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6edbd10627eee552d6881c88a3261fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1724972,
            "upload_time": "2024-04-21T21:52:23",
            "upload_time_iso_8601": "2024-04-21T21:52:23.775277Z",
            "url": "https://files.pythonhosted.org/packages/93/41/2acd70136999e66099e1fcf011e20e0edd247f756e56ef5e8e8f1e1092dd/pymoode-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "262a7be104d8d1d5ce68ac274a9b7cf36b183b75af6e936e2ab0e7a8306d7b97",
                "md5": "b84b76fbb1f309e5e3261c194b0a054c",
                "sha256": "341a29cba94ff39357dde043ea6418417c8cae6f64678c65323cf7ea853696ac"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b84b76fbb1f309e5e3261c194b0a054c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 332347,
            "upload_time": "2024-04-21T21:52:26",
            "upload_time_iso_8601": "2024-04-21T21:52:26.065422Z",
            "url": "https://files.pythonhosted.org/packages/26/2a/7be104d8d1d5ce68ac274a9b7cf36b183b75af6e936e2ab0e7a8306d7b97/pymoode-0.3.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "090dd64bc9c49eac24bd403ac9937e40d50e6025e64cee86bfee311fc5f03b10",
                "md5": "ceccc6d9c333515dfde991b5dea13667",
                "sha256": "423a95ce8e08295fe8c72c88c011da7c13cc82960740fff3a23204810eb19791"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ceccc6d9c333515dfde991b5dea13667",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 319837,
            "upload_time": "2024-04-21T21:52:27",
            "upload_time_iso_8601": "2024-04-21T21:52:27.291298Z",
            "url": "https://files.pythonhosted.org/packages/09/0d/d64bc9c49eac24bd403ac9937e40d50e6025e64cee86bfee311fc5f03b10/pymoode-0.3.0-cp39-cp39-macosx_11_0_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76b06f481502db4bb9b2b12abd2a81d959c23d998073f6410667d6d8cc20a0ab",
                "md5": "b519288859c4b979637f8c2244600700",
                "sha256": "07e1a7cc9311f165a9282add8780e032bc8439b8fdaca9bbc12ff18638f897c5"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b519288859c4b979637f8c2244600700",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1704148,
            "upload_time": "2024-04-21T21:52:29",
            "upload_time_iso_8601": "2024-04-21T21:52:29.352518Z",
            "url": "https://files.pythonhosted.org/packages/76/b0/6f481502db4bb9b2b12abd2a81d959c23d998073f6410667d6d8cc20a0ab/pymoode-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47a05c3e9be49e4f5085006c29137a337dc8d7a0c9d60b0f8284fe61ea224d39",
                "md5": "447ea49a9b6db22bdcce0139cc1a156a",
                "sha256": "a8c4d20cf6d12974a0a8847234a4e06bd327df746fa716d97bcd5bdd8b358053"
            },
            "downloads": -1,
            "filename": "pymoode-0.3.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "447ea49a9b6db22bdcce0139cc1a156a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 329607,
            "upload_time": "2024-04-21T21:52:30",
            "upload_time_iso_8601": "2024-04-21T21:52:30.735237Z",
            "url": "https://files.pythonhosted.org/packages/47/a0/5c3e9be49e4f5085006c29137a337dc8d7a0c9d60b0f8284fe61ea224d39/pymoode-0.3.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-21 21:51:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mooscaliaproject",
    "github_project": "pymoode",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.19.0"
                ]
            ]
        },
        {
            "name": "pymoo",
            "specs": [
                [
                    "==",
                    "0.6.1"
                ]
            ]
        },
        {
            "name": "scipy",
            "specs": [
                [
                    ">=",
                    "1.7.0"
                ]
            ]
        }
    ],
    "lcname": "pymoode"
}
        
Elapsed time: 0.22822s