{"id":35097069,"url":"https://github.com/jasonma1127/artificialbeecolony","last_synced_at":"2026-05-22T04:05:41.184Z","repository":{"id":273997782,"uuid":"359465304","full_name":"jasonma1127/ArtificialBeeColony","owner":"jasonma1127","description":"Using Artificial Bee Colony to find the minimal/maximal solution of Rastrigin function and Styblinski-Tang function","archived":false,"fork":false,"pushed_at":"2021-06-27T08:07:19.000Z","size":10,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-29T08:12:19.999Z","etag":null,"topics":["abc","artificial-bee-colony","artificialbeecolony"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jasonma1127.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2021-04-19T13:14:24.000Z","updated_at":"2024-02-24T12:23:13.000Z","dependencies_parsed_at":"2025-01-24T08:33:53.285Z","dependency_job_id":"3843187d-18fa-4942-95fc-fe0686a74aaa","html_url":"https://github.com/jasonma1127/ArtificialBeeColony","commit_stats":null,"previous_names":["jasonma1127/artificialbeecolony"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jasonma1127/ArtificialBeeColony","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasonma1127%2FArtificialBeeColony","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasonma1127%2FArtificialBeeColony/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasonma1127%2FArtificialBeeColony/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasonma1127%2FArtificialBeeColony/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jasonma1127","download_url":"https://codeload.github.com/jasonma1127/ArtificialBeeColony/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasonma1127%2FArtificialBeeColony/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33328637,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T12:23:38.849Z","status":"online","status_checked_at":"2026-05-22T02:00:06.671Z","response_time":265,"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":["abc","artificial-bee-colony","artificialbeecolony"],"created_at":"2025-12-27T15:40:49.537Z","updated_at":"2026-05-22T04:05:41.179Z","avatar_url":"https://github.com/jasonma1127.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ArtificialBeeColony\n## CODE EXAMPLE:\n```python\ndef test(X,D):\n    x1 = X[0]\n    x2 = X[1]\n    return x1**2 - x1*x2 + x2**2 + 2*x1 + 4*x2 + 3\n\ndef RastriginFunc(X, D):\n    funsum = 0\n    for i in range(D):\n        x = X[i]\n        funsum += x**2-10*np.cos(2*np.pi*x)\n    funsum += 10*D\n    return funsum\n\ndef StyblinskiTangFunc(X, D):\n    funsum = 0\n    for i in range(D):\n        x = X[i]\n        funsum += (x**4) - 16*(x**2) + 5*x\n    funsum *= 0.5\n    return funsum\n\n# ArtificialBeeColony(D, Lb, Ub, n, generation, ans[min=0/max=1], func)\nabc = ArtificialBeeColony(2, -5, 5, 5, 100, 0, test)\nabc.doRun()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjasonma1127%2Fartificialbeecolony","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjasonma1127%2Fartificialbeecolony","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjasonma1127%2Fartificialbeecolony/lists"}