# GA Scheduler
## Overview
GA Scheduler is an advanced scheduling tool that leverages genetic algorithms to optimize **single**, **parallel**, **flow shop**, and **job shop** machines scheduling problems. Multiple objectives can be addressed such as makespan, weighted tardiness, total waste changeover between jobs, total setup times changeover between jobs, total completion time and total of late jobs. Additionally, the library provides a comprehensive way to visualize scheduling results through Gantt charts.
## Features
- **Scheduling Machine Environments**: Supports single machine, parallel machines, flow shop, and job shop scheduling problems.
- **Multi-Objective Optimization**: Supports optimization for multiple objectives including makespan, weighted tardiness, total waste changeover between jobs, setup times changeover between jobs, total completion time and total of late jobs.
- **Genetic Algorithm Integration**: Utilizes a GA to efficiently explore the solution space and find optimal or near-optimal job sequences.
- **Many or Multiobjective Algorithm Integration**: Alternatively, the multiobjective problem can be solved using the ECMOA (Elitist Combinatorial Multiobjective Optimization Algorithm), which returns the Pareto Front as the solution.
- **Brute Force**: For small problem instances, the brute force search can be used to find the optimal job sequence.
- **Customizability**: Allows customization of job sequences, setup times, due dates, and more.
- **Visualization**: Generates Gantt charts to visualize the scheduling of jobs across machines.
## Usage
1. Install
```bash
pip install ga_scheduler
```
2. Try it in **Colab**:
a) Multiobjective - Weighted
- Single Machine Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1f8j9R3vClF9kmJGrS8ODGDCy_JWnh7lL?usp=sharing))
- Single Machine Scheduling - Genetic Algorithm ( [ Colab Demo ](https://colab.research.google.com/drive/1EevgVgIl0g9ELvUdMKRy38hKItrrPwI7?usp=sharing))
<!-- -->
- Parallel Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1qQmvkkNliPAVlTk2ShvM0Di9JAKzkqmL?usp=sharing))
- Parallel Machines Scheduling - Genetic Algorithm ( [ Colab Demo ](https://colab.research.google.com/drive/1yyfWNei8JNWpsOuy3UBB-pm0MIW5uxQO?usp=sharing))
<!-- -->
- Flow Shop Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1Fiq5JB9jNXjc_HSDUhEWvujILse2QdfD?usp=sharing))
- Flow Shop Machines Scheduling - Genetic Algorithm ( [ Colab Demo ](https://colab.research.google.com/drive/1CqcoXxyBypo_maEE7_-55s64_dsnJ42w?usp=sharing))
<!-- -->
- Job Shop Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1MCo3msB8cVbjg-fT9FV5QBmTKFM6km3a?usp=sharing))
- Job Shop Machines Scheduling - Genetic Algorithm ( [ Colab Demo ](https://colab.research.google.com/drive/1etJc3z0JMVx4FQBLZCZbCgtQsyt1pjQJ?usp=sharing))
b) Multiobjective - Pareto Front
- Single Machine Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1QF7eG4JYdl1BjlIBRvmNGAw3r-QzPuR4?usp=sharing))
- Single Machine Scheduling - ECMOA ( [ Colab Demo ](https://colab.research.google.com/drive/1ex07yTxUPzZiGomtR1PepKYyJhzI7vdF?usp=sharing))
<!-- -->
- Parallel Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1xPqmIEaIwmYrJNIFb9BSSM1XEqFpyMKL?usp=sharing))
- Parallel Machines Scheduling - ECMOA ( [ Colab Demo ](https://colab.research.google.com/drive/140ZoIMwzQizsRz6TefsbxWG9d4mBatfC?usp=sharing))
<!-- -->
- Flow Shop Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1Vom9tdoDzX0D9qdCe3wBErUVtN0nGko3?usp=sharing))
- Flow Shop Machines Scheduling - ECMOA ( [ Colab Demo ](https://colab.research.google.com/drive/1DXeifEbk2XeQocG81WRGKtVDFoxdB6RW?usp=sharing))
<!-- -->
- Job Shop Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/13LK2Ckc8XoftJosNQn7f7bNa0U56Zy4p?usp=sharing))
- Job Shop Machines Scheduling - ECMOA ( [ Colab Demo ](https://colab.research.google.com/drive/1PYV0afWMVYREwtRQRbNm1u8McDczAb0k?usp=sharing))
Raw data
{
"_id": null,
"home_page": "https://github.com/Valdecy/ga_scheduler",
"name": "ga-scheduler",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": null,
"author": "Valdecy Pereira",
"author_email": "valdecy.pereira@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/fe/87/4ca659163d49c4a53f4553e56d7708f75aed0f4eda89515e894afac5a2b8/ga_scheduler-2.7.8.tar.gz",
"platform": null,
"description": "# GA Scheduler\r\n\r\n## Overview\r\n\r\nGA Scheduler is an advanced scheduling tool that leverages genetic algorithms to optimize **single**, **parallel**, **flow shop**, and **job shop** machines scheduling problems. Multiple objectives can be addressed such as makespan, weighted tardiness, total waste changeover between jobs, total setup times changeover between jobs, total completion time and total of late jobs. Additionally, the library provides a comprehensive way to visualize scheduling results through Gantt charts.\r\n\r\n## Features\r\n\r\n- **Scheduling Machine Environments**: Supports single machine, parallel machines, flow shop, and job shop scheduling problems.\r\n- **Multi-Objective Optimization**: Supports optimization for multiple objectives including makespan, weighted tardiness, total waste changeover between jobs, setup times changeover between jobs, total completion time and total of late jobs.\r\n- **Genetic Algorithm Integration**: Utilizes a GA to efficiently explore the solution space and find optimal or near-optimal job sequences.\r\n- **Many or Multiobjective Algorithm Integration**: Alternatively, the multiobjective problem can be solved using the ECMOA (Elitist Combinatorial Multiobjective Optimization Algorithm), which returns the Pareto Front as the solution.\r\n- **Brute Force**: For small problem instances, the brute force search can be used to find the optimal job sequence.\r\n- **Customizability**: Allows customization of job sequences, setup times, due dates, and more.\r\n- **Visualization**: Generates Gantt charts to visualize the scheduling of jobs across machines.\r\n\r\n## Usage\r\n\r\n1. Install\r\n\r\n```bash\r\npip install ga_scheduler\r\n\r\n```\r\n\r\n2. Try it in **Colab**:\r\n\r\na) Multiobjective - Weighted \r\n\r\n- Single Machine Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1f8j9R3vClF9kmJGrS8ODGDCy_JWnh7lL?usp=sharing)) \r\n- Single Machine Scheduling - Genetic Algorithm ( [ Colab Demo ](https://colab.research.google.com/drive/1EevgVgIl0g9ELvUdMKRy38hKItrrPwI7?usp=sharing)) \r\n<!-- -->\r\n- Parallel Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1qQmvkkNliPAVlTk2ShvM0Di9JAKzkqmL?usp=sharing)) \r\n- Parallel Machines Scheduling - Genetic Algorithm ( [ Colab Demo ](https://colab.research.google.com/drive/1yyfWNei8JNWpsOuy3UBB-pm0MIW5uxQO?usp=sharing)) \r\n<!-- -->\r\n- Flow Shop Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1Fiq5JB9jNXjc_HSDUhEWvujILse2QdfD?usp=sharing)) \r\n- Flow Shop Machines Scheduling - Genetic Algorithm ( [ Colab Demo ](https://colab.research.google.com/drive/1CqcoXxyBypo_maEE7_-55s64_dsnJ42w?usp=sharing))\r\n<!-- -->\r\n- Job Shop Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1MCo3msB8cVbjg-fT9FV5QBmTKFM6km3a?usp=sharing)) \r\n- Job Shop Machines Scheduling - Genetic Algorithm ( [ Colab Demo ](https://colab.research.google.com/drive/1etJc3z0JMVx4FQBLZCZbCgtQsyt1pjQJ?usp=sharing)) \r\n \r\nb) Multiobjective - Pareto Front\r\n\r\n- Single Machine Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1QF7eG4JYdl1BjlIBRvmNGAw3r-QzPuR4?usp=sharing)) \r\n- Single Machine Scheduling - ECMOA ( [ Colab Demo ](https://colab.research.google.com/drive/1ex07yTxUPzZiGomtR1PepKYyJhzI7vdF?usp=sharing)) \r\n<!-- -->\r\n- Parallel Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1xPqmIEaIwmYrJNIFb9BSSM1XEqFpyMKL?usp=sharing)) \r\n- Parallel Machines Scheduling - ECMOA ( [ Colab Demo ](https://colab.research.google.com/drive/140ZoIMwzQizsRz6TefsbxWG9d4mBatfC?usp=sharing)) \r\n<!-- -->\r\n- Flow Shop Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/1Vom9tdoDzX0D9qdCe3wBErUVtN0nGko3?usp=sharing)) \r\n- Flow Shop Machines Scheduling - ECMOA ( [ Colab Demo ](https://colab.research.google.com/drive/1DXeifEbk2XeQocG81WRGKtVDFoxdB6RW?usp=sharing))\r\n<!-- -->\r\n- Job Shop Machines Scheduling - Brute Force ( [ Colab Demo ](https://colab.research.google.com/drive/13LK2Ckc8XoftJosNQn7f7bNa0U56Zy4p?usp=sharing)) \r\n- Job Shop Machines Scheduling - ECMOA ( [ Colab Demo ](https://colab.research.google.com/drive/1PYV0afWMVYREwtRQRbNm1u8McDczAb0k?usp=sharing)) \r\n",
"bugtrack_url": null,
"license": "GNU",
"summary": "A Comprehensive Library for Solving Machine Scheduling Problems Using Genetic Algorithms",
"version": "2.7.8",
"project_urls": {
"Homepage": "https://github.com/Valdecy/ga_scheduler"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "6873c0dd72580e298fee93ab01e3eb2ac0a0beb651c6440b494619e9238fb878",
"md5": "78c37a0d21846569e25c0ab27e7a4c0d",
"sha256": "ca32d5e727eba723a87624b1ea728289bfb666e341145a133cfa952ee4e44505"
},
"downloads": -1,
"filename": "ga_scheduler-2.7.8-py3-none-any.whl",
"has_sig": false,
"md5_digest": "78c37a0d21846569e25c0ab27e7a4c0d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 14086,
"upload_time": "2024-06-09T23:24:11",
"upload_time_iso_8601": "2024-06-09T23:24:11.411244Z",
"url": "https://files.pythonhosted.org/packages/68/73/c0dd72580e298fee93ab01e3eb2ac0a0beb651c6440b494619e9238fb878/ga_scheduler-2.7.8-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe874ca659163d49c4a53f4553e56d7708f75aed0f4eda89515e894afac5a2b8",
"md5": "951ff2b6c3dd33946a105a8d42d976e4",
"sha256": "3701b8dd25e10d169efb1afec9458102da2727aeef45adf6c0a5771229036318"
},
"downloads": -1,
"filename": "ga_scheduler-2.7.8.tar.gz",
"has_sig": false,
"md5_digest": "951ff2b6c3dd33946a105a8d42d976e4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14035,
"upload_time": "2024-06-09T23:24:12",
"upload_time_iso_8601": "2024-06-09T23:24:12.571841Z",
"url": "https://files.pythonhosted.org/packages/fe/87/4ca659163d49c4a53f4553e56d7708f75aed0f4eda89515e894afac5a2b8/ga_scheduler-2.7.8.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-09 23:24:12",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Valdecy",
"github_project": "ga_scheduler",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "ga-scheduler"
}