{"id":33179785,"url":"https://github.com/MOEAFramework/MOEAFramework","last_synced_at":"2026-01-10T21:01:35.773Z","repository":{"id":52531430,"uuid":"41713217","full_name":"MOEAFramework/MOEAFramework","owner":"MOEAFramework","description":"A Free and Open Source Java Framework for Multiobjective Optimization","archived":false,"fork":false,"pushed_at":"2025-12-04T23:53:12.000Z","size":98003,"stargazers_count":349,"open_issues_count":0,"forks_count":128,"subscribers_count":23,"default_branch":"master","last_synced_at":"2025-12-08T00:58:14.975Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://moeaframework.org","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MOEAFramework.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"dhadka","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2015-09-01T02:50:33.000Z","updated_at":"2025-12-04T23:53:14.000Z","dependencies_parsed_at":"2023-02-19T08:45:59.524Z","dependency_job_id":"122ef841-5ff0-474a-bc15-525056b75cff","html_url":"https://github.com/MOEAFramework/MOEAFramework","commit_stats":null,"previous_names":[],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/MOEAFramework/MOEAFramework","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MOEAFramework%2FMOEAFramework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MOEAFramework%2FMOEAFramework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MOEAFramework%2FMOEAFramework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MOEAFramework%2FMOEAFramework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MOEAFramework","download_url":"https://codeload.github.com/MOEAFramework/MOEAFramework/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MOEAFramework%2FMOEAFramework/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28258096,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2026-01-10T02:00:06.867Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-11-16T03:00:36.842Z","updated_at":"2026-01-10T21:01:35.765Z","avatar_url":"https://github.com/MOEAFramework.png","language":"Java","funding_links":["https://github.com/sponsors/dhadka"],"categories":["人工智能"],"sub_categories":[],"readme":"![Tests](https://github.com/MOEAFramework/MOEAFramework/actions/workflows/ci.yml/badge.svg)\n![Maven Central](https://img.shields.io/maven-central/v/org.moeaframework/moeaframework)\n![GitHub Downloads](https://img.shields.io/github/downloads/MOEAFramework/MOEAFramework/total?label=GitHub%20Downloads)\n\nThe MOEA Framework is a free and open source Java library for developing and experimenting with multiobjective\nevolutionary algorithms (MOEAs) and other metaheuristics.\n\n\n### Features\n\n* Fast, reliable implementations of over 25 MOEAs, including NSGA-III and MOEA/D.\n* Suite of tools for comparing and statistically testing algorithms.\n* Master-slave, island-model, and hybrid parallelization.\n* Permissive open source license (LGPL)\n\n\n### :warning: Upgrading to V5 :warning:\n\nVersion 5.0 was recently released, which includes breaking changes that will likely requiring code modifications if\nupgrading from a previous version.  Refer to the [Release Notes](docs/releaseNotes.md) for details.\n\n\n### Getting Started\n\nDownload the latest release from the [GitHub Releases](https://github.com/MOEAFramework/MOEAFramework/releases) page.  Maven users can add our\ndependency to their `pom.xml` file:\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.moeaframework\u003c/groupId\u003e\n    \u003cartifactId\u003emoeaframework\u003c/artifactId\u003e\n    \u003cversion\u003e5.1\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nCheck out our [examples](https://github.com/MOEAFramework/MOEAFramework/tree/master/examples),\n[online documentation](https://github.com/MOEAFramework/MOEAFramework/blob/master/docs/README.md), and\n[API Specification (Javadoc)](https://moeaframework.org/javadoc/index.html) to get started.\n\n\n### Example\n\nBelow we solve the 2-objective DTLZ2 problem using NSGA-II:\n\n\n```java\nProblem problem = new DTLZ2(2);\n\nNSGAII algorithm = new NSGAII(problem);\nalgorithm.run(10000);\n\nalgorithm.getResult().display();\n```\n\n\n### Citation\n\nIf you use this software in your work, please cite it as follows (APA style):\n\n\u003e Hadka, D. (2025). MOEA Framework A Free and Open Source Java Framework for Multiobjective Optimization (Version 5.1) [Computer software]. Retrieved from https://github.com/MOEAFramework/MOEAFramework.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMOEAFramework%2FMOEAFramework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FMOEAFramework%2FMOEAFramework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMOEAFramework%2FMOEAFramework/lists"}