Content deleted Content added
Cleanup |
ce, cap, alpha, layout, punct. |
||
Line 9:
** Temporal Constraints–the time window to complete the task
** Procedural Constraints–the order each task must be completed
** Resource Constraints
* A set of objectives to evaluate the scheduling performance
Line 15:
==Use of algorithms in scheduling==
In very complex problems such as scheduling there is no known way to get to a final answer, so we resort to searching for it trying to find a
[[Image:Precedence.jpg|frame|Fig. 1. Precedence in scheduling]]
Line 27:
To apply a genetic algorithm to a scheduling problem we must first represent it as a genome. One way to represent a scheduling genome is to define a sequence of tasks and the start times of those tasks relative to one another. Each task and its corresponding start time represents a gene.
A specific sequence of tasks and start times (genes) represents one genome in our population. To make sure that our genome is a [[Candidate solution|feasible solution]] we must take care that it obeys our precedence constraints. We generate an initial population using random start times within the precedence constraints. With genetic algorithms we then take this initial population and cross it, combining genomes along with a small amount of randomness (mutation). The offspring of this combination is selected based on a [[fitness function]] that includes one or many of our constraints, such as minimizing time and minimizing defects. We let this process continue either for a pre-allotted time or until we find a solution that fits our minimum criteria. Overall each successive generation will have a greater average fitness, i.e. taking less time with higher quality than the preceding generations. In scheduling problems, as with other genetic algorithm solutions, we must make sure that we do not select offspring that are infeasible, such as offspring that violate our precedence constraint. We of course may have to add further fitness values such as minimizing costs; however, each constraint
==See also==▼
* [[Genetic algorithm in economics]]▼
* [[Quality control and genetic algorithms]]▼
==Bibliography==
Line 37 ⟶ 42:
| title = Production Planning in Manufacturing/Remanufacturing Environment using Genetic Algorithm }}
▲==See also==
▲* [[Job Shop Scheduling]]
▲* [[Quality control and genetic algorithms]]
▲* [[Genetic algorithm in economics]]
==External links==
|