SlideShare a Scribd company logo
1 of 6
Download to read offline
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6



           An Improved Heuristic for Permutation Flow Shop Scheduling
                            (NEH ALGORITHM)
                                 1
                                  Ekta Singhal, 2Shalu Singh, 3Aneesh Dayma
                                              (Department of Software Engineering),
                           3
                               (Department of Computer Science), Suresh Gyan Vihar University,Jaipur




Abstract- Flowshop Scheduling is used to determine the                          It is in the set of NP (nondeterministic polynomial
optimal sequence of n jobs to be processed on m machines               time) problems: Any given solution to L can be verified
in the same order. Permutation Flowshop Scheduling                     quickly (in polynomial time).
Problems (PFSP) require same job sequence on all the                            It is also in the set of NP-hard problems: Any NP
machines with the constraint that machines can only process            problem can be converted into L by a transformation of the
one job at a time and jobs can be processed by only one                inputs in polynomial time. Although any given solution to
machine at a time. No machine is allowed to remain idle                such a problem can be verified quickly, there is no known
when a job is ready for processing. Such problems are NP-              efficient way to locate a solution in the first place; indeed,
Complete and hence optimal solutions are not guaranteed                the most notable characteristic of NP-complete problems is
but heuristics have been shown to produce good working                 that no fast solution to them is known. That is, the time
solutions.                                                             required to solve the problem using any currently known
          NEH (Nawaz, Enscore, Ham) Algorithm is an                    algorithm increases very quickly as the size of the problem
efficient algorithm that works by minimizing the makespan              grows.
for Permutation Flowshop Scheduling Problems PFSP. The                 1.1.5     Makespan
proposed algorithm is obtained by modifying the NEH                    Makespan is the completion time of last job on last
algorithm and produces improved quality solutions with                 machine.
algorithmic complexity same as the original algorithm.                 1.1.6     Constructive Heuristics
                                                                       In constructive heuristics once a decision is taken it cannot
Keywords: Flowshop Scheduling, heuristics, makespan                    be changed for improvement[10].

I.     Introduction                                                    1.1.7    Improvement Heuristics
1.1 Important Definitions                                               Pawel J. Kalczynski, Jerzy Kamburowski [3] used
1.1.1    Heuristics                                                    improvement heuristics, we start with an initial sequence
Heuristic refers to experience-based techniques for problem            and attempt to improve it as we proceed.
solving, learning, and discovery. Heuristic methods are used
to speed up the process of finding a good enough solution,             1.2      Problem Definition
where an exhaustive search is impractical[6].                          The permutation flow shop problem requires to find the
                                                                       order in which n jobs are to be processed on m consecutive
1.1.2 Flowshop Scheduling                                              machines. The jobs are processed in the order machine 1,
Flowshop Scheduling determines an optimum sequence of n                machine 2, . . . machine m.
jobs to be processed on m machines in the same order i.e.               Machines can only process one job at a time and jobs can
every job must be processed on machines 1,2,...,m in this              be processed by only one machine at a time without
same order[10].                                                        preemption.
                                                                        No job can jump over any other job, meaning that the order
1.1.3    Permutation Flowshop Scheduling                               in which jobs are processed in machine 1 is maintained
Permutation Flowshop Scheduling is a special case of FSPs              throughout the system. Moreover, no machine is allowed to
where same job sequence is followed in all machines i.e.               remain idle when a job is ready for processing. All jobs and
processing order of the jobs on the machines is the same for           machines are available at time 0.
every machine.
                                                                       II.      OBJECTIVE
1.1.4   NP-Complete                                                    For each job two parameters are computed:
A problem L is NP-complete if it has two properties:                   tp (i, j) processing time of job j on machine i
                                                                       tc (i, j) completion time of job j on machine i

Issn 2250-3005(online)                                          October| 2012                                     Page 95
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6



The completion time of all jobs is can be computed as:
                                                                                  Machin   Machin        Machin       Machin    Machin
tc (M1, J1) = tp (M1, J1)                                                         e1       e2            e3           e4        e5
tc (Mi, J1) = tc (Mi-1, J1) + tp (Mi, J1)
tc (M1, Jj) = tc (M1, Jj-1) + tp (M1, Jj)                             Job    1    5        9             8            10        1
tc (Mi, Jj) = max {tc (Mi-1, Jj), tc (Mi, Jj-1)} + tp (Mi, Jj)        (J1)

The objective is to find an n-job sequence so as to minimize          Job    2    9        3             10           1         8
the makespan i.e. tc (Mm, Jn).                                        (J2)

III.     Neh Algorithm (Nawaz Enscore Ham)                            Job    3    9        4             5            8         6
It is a constructive heuristic.                                       (J3)
Step 1: Sort the n jobs in non-increasing order of their total
processing times                                                      Job    4    4        8             8            7         2
                                                                      (J4)
Step 2: Take the first two jobs and schedule them in order to
minimise the partial makespan as if there were only these             Job    5    3        5             6            3         7
two jobs                                                              (J5)
Step 3: For k= 3 to n do Step 4
                                                                        Total processing times of jobs
                                                                        Job 1= 5+9+8+10+1= 33
Step 4: Insert the kth job at the place, which minimises the
                                                                        Job 2= 9+3+10+1+8= 31
partial makespan among the k possible ones.
                                                                        Job 3= 9+4+5+8+6= 32
                                                                        Job 4= 4+8+8+7+2= 29
IV.       Improved Heuristic                                            Job 5= 3+5+6+3+7= 24
Step 1: Sort the n jobs in non-increasing order of their total
processing times                                                        Sorting in non-increasing order of total processing times
                                                                        J1, J3, J2, J4, J5
Step 2: Take the first four jobs from the sorted list and form
4! = 24 partial sequences (each of length 4). The best k (k is                    NEH Algorithm
a parameter of the algorithm) out of these 24 partial
sequences are selected for further processing. The relative
positions of jobs in any partial sequence is not altered in any
later (larger) sequence

Step 3: Set z = 5

Step 4: The zth job on the sorted list is inserted at each of
the z positions in each of the k (z − 1)-job partial sequences,
resulting in (z × k) z-job partial sequences

Step 5: The best k out of the z × k sequences are selected for                                               Fig: 1
further processing

Step 6: Increment z by 1

Step 7: If z > n, accept the best of the k n-job sequences as
the final solution and stop.

Otherwise go to step 4.

V.     Comparision (EXAMPLE)

Comparison (Example)                                                                                         Fig: 2

Issn 2250-3005(online)                                            October| 2012                                           Page 96
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6


         Sequence: J1-J3             Makespan: 46
         Sequence: J3-J1             Makespan: 42
Select sequence J3-J1




                                                                                                    Fig: 6



                           Fig: 3




                                                                                                    Fig: 7



                               Fig: 4




                                                                                                    Fig: 8




                               Fig: 5

         Sequence: J2-J3-J1                   Makespan: 51
         Sequence: J3-J2-J1                   Makespan: 51
         Sequence: J3-J1-J2                   Makespan: 50
Select sequence J3-J1-J2

                                                                                                    Fig: 9

                                                                      Sequence: J4-J3-J1-J2             Makespan: 54
                                                                      Sequence: J3-J4-J1-J2             Makespan: 57
                                                                      Sequence: J3-J1-J4-J2             Makespan: 58
                                                                      Sequence: J3-J1-J2-J4             Makespan: 58
                                                                      Select sequence J4-J3-J1-J2
Issn 2250-3005(online)                                         October| 2012                                   Page 97
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6




                                                                                                          Fig: 14


                         Fig: 10                                                                              Sequence:
                                                              J5-                                            J4-J3-J1-J2
                                                                                                           Makespan: 58
                                                                                                           Sequence: J4-
                                                              J5-                                 J3-J1-J2 Makespan: 58
                                                                                                           Sequence: J4-
                                                              J3-                                              J5-J1-J2
                                                                       Makespan: 59
                                                                       Sequence: J4-J3-J1-J5-J2          Makespan: 63
                                                                       Sequence: J4-J3-J1-J2-J5          Makespan: 61

                         Fig: 11                              Thus, the best sequence is J5-J4-J3-J2-J1 and J4-J5-J3-J1-
                                                              J2 with makespan of 58.


                                                              VI.    Improved Heuristic

                                                              Taking first four jobs from the sorted order to form 24
                                                              partial sequences.
                                                                        Sequence: J1-J2-J3-J4          Makespan: 59
                                                                        Sequence: J1-J4-J2-J3          Makespan: 59
                                                                        Sequence: J1-J3-J2-J4          Makespan: 57
                                                                        Sequence: J1-J4-J3-J2          Makespan: 61
                                                                        Sequence: J3-J1-J2-J4          Makespan: 58
                         Fig: 12                                        Sequence: J3-J4-J1-J2          Makespan: 57
                                                                        Sequence: J2-J1-J3-J4          Makespan: 58
                                                                        Sequence: J2-J4-J1-J3          Makespan: 62
                                                                        Sequence: J2-J3-J1-J4          Makespan: 58
                                                                        Sequence: J2-J4-J3-J1          Makespan: 56
                                                                        Sequence: J3-J2-J1-J4          Makespan: 58
                                                                        Sequence: J3-J4-J2-J1          Makespan: 58
                                                                        Sequence: J1-J2-J4-J3          Makespan: 61
                                                                        Sequence: J4-J1-J2-J3          Makespan: 58
                                                                        Sequence: J1-J3-J4-J2          Makespan: 58
                                                                        Sequence: J4-J1-J3-J2          Makespan: 63
                                                                        Sequence: J3-J1-J4-J2          Makespan: 58
                         Fig: 13                                        Sequence: J4-J3-J1-J2          Makespan: 54
                                                                        Sequence: J2-J1-J4-J3          Makespan: 62
                                                                        Sequence: J4-J2-J1-J3          Makespan: 63
                                                                        Sequence: J3-J2-J4-J1          Makespan: 58
                                                                        Sequence: J4-J3-J2-J1          Makespan: 55
                                                                        Sequence: J4-J2-J3-J1          Makespan: 55
                                                                        Sequence: J2-J3-J4-J1          Makespan: 57

Issn 2250-3005(online)                                 October| 2012                                   Page 98
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6


The parameter of the algorithm k is taken as 7.                                        J4-J5-J3-J1-J2
Selecting the best 7 sequences for further processing.
                                                                                       J5-J4-J3-J2-J1
                       J4-J3-J1-J2
         Sequence: J5-J4-J3-J1-J2            Makespan: 58                              J5-J4-J2-J3-J1
         Sequence: J4-J5-J3-J1-J2            Makespan: 58
         Sequence: J4-J3-J5-J1-J2            Makespan: 59            with makespan of 58.
         Sequence: J4-J3-J1-J5-J2            Makespan: 63
         Sequence: J4-J3-J1-J2-J5            Makespan: 61
                                                                      VII. Complexity
                       J4-J3-J2-J1                                   Complexity of NEH Algorithm
         Sequence: J5-J4-J3-J2-J1            Makespan: 58            The total number of enumerations in Neh is given by
         Sequence: J4-J5-J3-J2-J1            Makespan: 60                                         n(n+1)/2
         Sequence: J4-J3-J5-J2-J1            Makespan: 60             which clearly states that the complexity of this algorithm is
         Sequence: J4-J3-J2-J5-J1            Makespan: 60                                        Θ(n^2).
         Sequence: J4-J3-J2-J1-J5            Makespan: 64
                                                                     Complexity of improved heuristic
                       J4-J2-J3-J1                                   The total number of enumerations in case of the improved
         Sequence: J5-J4-J2-J3-J1            Makespan: 58            heuristic is given by[18]
         Sequence: J4-J5-J2-J3-J1            Makespan: 60                                      4! + ∑, (z=5 to n) k * z
         Sequence: J4-J2-J5-J3-J1            Makespan: 60                                      = 4! + k * ∑, (z=5 to n) z
         Sequence: J4-J2-J3-J5-J1            Makespan: 60            Where, k denotes the algorithm parameter,
         Sequence: J4-J2-J3-J1-J5            Makespan: 64            And n is the number of jobs.
                                                                        Hence, the algorithmic complexity of this approach is
                       J2-J4-J3-J1                                                             Θ(n^2).
         Sequence: J5-J2-J4-J3-J1            Makespan: 60
         Sequence: J2-J5-J4-J3-J1            Makespan: 62          VIII.       Conclusions
         Sequence: J2-J4-J5-J3-J1            Makespan: 60            The improved heuristic proposed for PFSP yields better
         Sequence: J2-J4-J3-J5-J1            Makespan: 60            result than original NEH algorithm while maintaining the
         Sequence: J2-J4-J3-J1-J5            Makespan: 65            same algorithmic complexity.
                                                                     As shown using an example, the improved heuristic
                       J2-J3-J4-J1                                   generates more number of minimum makespan sequences as
         Sequence: J5-J2-J3-J4-J1            Makespan: 62            compared to the NEH algorithm and hence we have more
         Sequence: J2-J5-J3-J4-J1            Makespan: 61            options of job sequences that can be implemented for
         Sequence: J2-J3-J5-J4-J1            Makespan: 63            greater production.
         Sequence: J2-J3-J4-J5-J1            Makespan: 63            Experimental studies show that the improved heuristic for
         Sequence: J2-J3-J4-J1-J5            Makespan: 67            PFSP results in sequences with lower makespan as
                                                                     compared to those obtained from NEH algorithm in case of
                       J1-J3-J2-J4                                   medium sized (n=12 – 30) and large sized (n>70) problems.
         Sequence: J5-J1-J3-J2-J4            Makespan: 59
         Sequence: J1-J5-J3-J2-J4            Makespan: 60
                                                                   IX.        Future Scope
         Sequence: J1-J3-J5-J2-J4            Makespan: 63
                                                                     NEH is considered to be the best known heuristic for
         Sequence: J1-J3-J2-J5-J4            Makespan: 63
                                                                     PFSPs. But the proposed heuristic has been proved to
         Sequence: J1-J3-J2-J4-J5            Makespan: 63
                                                                     outperform NEH.
                                                                     Hence, this heuristic has a great scope in industry where n
                       J3-J4-J1-J2
                                                                     jobs are required to be scheduled on m machines for greater
         Sequence: J5-J3-J4-J1-J2            Makespan: 60
                                                                     production, efficient planning of resources and maintaining
         Sequence: J3-J5-J4-J1-J2            Makespan: 62
                                                                     proper control over the industry.
         Sequence: J3-J4-J5-J1-J2            Makespan: 62
         Sequence: J3-J4-J1-J5-J2            Makespan: 66
         Sequence: J3-J4-J1-J2-J5            Makespan: 64

Thus, the best sequences are

                  J5-J4-J3-J1-J2


Issn 2250-3005(online)                                        October| 2012                                      Page 99
International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6


References                                                            [16]      Palmer, D.S. (1965) ‘Sequencing jobs through a
[1]    Dipak Laha , Uday Kumar Chakraborty, (2007), Int.                        multi-stage process in the minimum total time - a
       J. Information and Communication Technology,                             quick method of obtaining a near-optimum’,
       Vol. 1, No. 1                                                            Operational Research Quarterly, Vol. 16, No. 1,
[2]    Nawaz, M., Enscore Jr, E. and Ham, I., (91-95), The                      pp.101–107.
       International Journal of Management Science. v11.              [17]      Sarin, S. and Lefoka, M. (1993) ‘Scheduling
       91-95.                                                                   heuristics for the n-job, m-machine flowshop’,
[3]    Pawel J. Kalczynski, Jerzy Kamburowski, (2008),                          OMEGA,Vol. 21, pp.229–234.
       Journal Computers and Operations Research,                     [18]      Turner, S. and Booth, D. (1987) ‘Comparison of
       Volume 35, Issue9                                                        heuristics for flowshop sequencing’, OMEGA,Vol.
[4]    Bestwick, P.F. and Hastings, N.A.J. (1976) ‘A new                        15,pp.75–78
       bound for machine scheduling’, Operational
       Research Quarterly, Vol. 27, pp.479–490.
[5]    Brown, A.P.G. and Lomnicki, Z.A. (1966) ‘Some
       applications of the branch and bound algorithm to
       the machine scheduling problem’, Operational
       Research Quarterly, Vol. 17, pp.173–182.
[6]    Campbell, H.G., Dudek, R.A. and Smith, M.L.
       (1970) ‘A heuristic algorithm for the n-job, m-
       machine sequencing problem’, Management
       Science, Vol. 16, pp.630–637.
[7]    Cormen, T.H., Leiserson, C.E. and Rivest, R.L.
       (1990)       ‘Introduction       to       Algorithms’,
       Cambridge,MA: MIT Press.
[8]    Dannenbring, D.G. (1977) ‘An evaluation of
       flowshop sequencing heuristics’, Management
       Science,Vol. 23, No. 11, pp.1174–1182.
[9]    Gupta, J.N.D. (1971) ‘A functional heuristic
       algorithm     for    the     flow-shop       scheduling
       problem’,Operational Research Quaterly, Vol. 22,
       No. 1.
[10]   Ignall, E. and Schrage, L. (1965) ‘Application of the
       branch-and-bound technique to some flowshop
       scheduling problems’, Operations Research, Vol.
       13, pp.400–412.
[11]   Johnson, S.M. (1954) ‘Two and three stage
       production schedules with set-up times included’,
       Naval Research Logistics Quarterly, Vol. 1, pp.61–
       68.
[12]   Koulamas, C. (1998) ‘A new constructive heuristic
       for the flowshop scheduling problem’, European
       Journal of Operations Research, Vol. 105, pp.66–71.
[13]   Kreyszig, E. (1972) ‘Advanced Engineering
       Mathematics’, New York: John Wiley.
[14]   Lomnicki, Z.A. (1965) ‘A branch-and-bound
       algorithm for the exact solution of the three-machine
       scheduling problem’,         Operational Research
       Quarterly, Vol. 16, pp.89–100.
[15]   Nawaz, M., Enscore Jr., E.E. and Ham, I. (1983) ‘A
       heuristic algorithm for the m-machine n-job
       flowshop       sequencing      problem’,       OMEGA
       International Journal of Management Science,
       Vol. 11, pp.91–95.




Issn 2250-3005(online)                                          October| 2012                                   Page 100

More Related Content

Viewers also liked

T S U M C New Years Eve 2007
T S U M C New Years Eve 2007T S U M C New Years Eve 2007
T S U M C New Years Eve 2007guest90a4c0
 
Scheduling methods applied to flowshop production systems
Scheduling methods applied to flowshop production systemsScheduling methods applied to flowshop production systems
Scheduling methods applied to flowshop production systemsLaura Rodríguez Navarro
 
M ����
M ����M ����
M ����foonkok
 
Bicriteria in n x 2 flow shop scheduling problem under specified rental polic...
Bicriteria in n x 2 flow shop scheduling problem under specified rental polic...Bicriteria in n x 2 flow shop scheduling problem under specified rental polic...
Bicriteria in n x 2 flow shop scheduling problem under specified rental polic...Alexander Decker
 
11.bicriteria in nx0002www.iiste.org call for paper flow shop scheduling incl...
11.bicriteria in nx0002www.iiste.org call for paper flow shop scheduling incl...11.bicriteria in nx0002www.iiste.org call for paper flow shop scheduling incl...
11.bicriteria in nx0002www.iiste.org call for paper flow shop scheduling incl...Alexander Decker
 
21st Cent_Digitalfootprints 07 07
21st Cent_Digitalfootprints 07 0721st Cent_Digitalfootprints 07 07
21st Cent_Digitalfootprints 07 07elizkeren
 

Viewers also liked (7)

T S U M C New Years Eve 2007
T S U M C New Years Eve 2007T S U M C New Years Eve 2007
T S U M C New Years Eve 2007
 
Scheduling methods applied to flowshop production systems
Scheduling methods applied to flowshop production systemsScheduling methods applied to flowshop production systems
Scheduling methods applied to flowshop production systems
 
M ����
M ����M ����
M ����
 
Bicriteria in n x 2 flow shop scheduling problem under specified rental polic...
Bicriteria in n x 2 flow shop scheduling problem under specified rental polic...Bicriteria in n x 2 flow shop scheduling problem under specified rental polic...
Bicriteria in n x 2 flow shop scheduling problem under specified rental polic...
 
11.bicriteria in nx0002www.iiste.org call for paper flow shop scheduling incl...
11.bicriteria in nx0002www.iiste.org call for paper flow shop scheduling incl...11.bicriteria in nx0002www.iiste.org call for paper flow shop scheduling incl...
11.bicriteria in nx0002www.iiste.org call for paper flow shop scheduling incl...
 
Algoritma
AlgoritmaAlgoritma
Algoritma
 
21st Cent_Digitalfootprints 07 07
21st Cent_Digitalfootprints 07 0721st Cent_Digitalfootprints 07 07
21st Cent_Digitalfootprints 07 07
 

Similar to R0260950100

Job shop scheduling
Job shop schedulingJob shop scheduling
Job shop schedulingSujeet TAMBE
 
Job Shop Scheduling.pptx
Job Shop Scheduling.pptxJob Shop Scheduling.pptx
Job Shop Scheduling.pptxSyedAmirIqbal3
 
11.application of branch and bound method for optimal two stage flow shop sch...
11.application of branch and bound method for optimal two stage flow shop sch...11.application of branch and bound method for optimal two stage flow shop sch...
11.application of branch and bound method for optimal two stage flow shop sch...Alexander Decker
 
Application of branch and bound method for optimal two stage flow shop schedu...
Application of branch and bound method for optimal two stage flow shop schedu...Application of branch and bound method for optimal two stage flow shop schedu...
Application of branch and bound method for optimal two stage flow shop schedu...Alexander Decker
 
Approximation Algorithms Part Two: More Constant factor approximations
Approximation Algorithms Part Two: More Constant factor approximationsApproximation Algorithms Part Two: More Constant factor approximations
Approximation Algorithms Part Two: More Constant factor approximationsBenjamin Sach
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
Multiprocessor Real-Time Scheduling.pptx
Multiprocessor Real-Time Scheduling.pptxMultiprocessor Real-Time Scheduling.pptx
Multiprocessor Real-Time Scheduling.pptxnaghamallella
 
Analysis of algorithms
Analysis of algorithmsAnalysis of algorithms
Analysis of algorithmsiqbalphy1
 
Parallel Line and Machine Job Scheduling Using Genetic Algorithm
Parallel Line and Machine Job Scheduling Using Genetic AlgorithmParallel Line and Machine Job Scheduling Using Genetic Algorithm
Parallel Line and Machine Job Scheduling Using Genetic AlgorithmIRJET Journal
 
Full introduction to_parallel_computing
Full introduction to_parallel_computingFull introduction to_parallel_computing
Full introduction to_parallel_computingSupasit Kajkamhaeng
 
A Hybrid Evolutionary Optimization Model for Solving Job Shop Scheduling Prob...
A Hybrid Evolutionary Optimization Model for Solving Job Shop Scheduling Prob...A Hybrid Evolutionary Optimization Model for Solving Job Shop Scheduling Prob...
A Hybrid Evolutionary Optimization Model for Solving Job Shop Scheduling Prob...iosrjce
 
Lecture 3 insertion sort and complexity analysis
Lecture 3   insertion sort and complexity analysisLecture 3   insertion sort and complexity analysis
Lecture 3 insertion sort and complexity analysisjayavignesh86
 
multiprocessor real_ time scheduling.ppt
multiprocessor real_ time scheduling.pptmultiprocessor real_ time scheduling.ppt
multiprocessor real_ time scheduling.pptnaghamallella
 
Task allocation and scheduling inmultiprocessors
Task allocation and scheduling inmultiprocessorsTask allocation and scheduling inmultiprocessors
Task allocation and scheduling inmultiprocessorsDon William
 
11.optimal three stage flow shop scheduling in which processing time, set up ...
11.optimal three stage flow shop scheduling in which processing time, set up ...11.optimal three stage flow shop scheduling in which processing time, set up ...
11.optimal three stage flow shop scheduling in which processing time, set up ...Alexander Decker
 
Optimal three stage flow shop scheduling in which processing time, set up tim...
Optimal three stage flow shop scheduling in which processing time, set up tim...Optimal three stage flow shop scheduling in which processing time, set up tim...
Optimal three stage flow shop scheduling in which processing time, set up tim...Alexander Decker
 

Similar to R0260950100 (20)

Flowshop scheduling
Flowshop schedulingFlowshop scheduling
Flowshop scheduling
 
Job shop scheduling
Job shop schedulingJob shop scheduling
Job shop scheduling
 
Job Shop Scheduling.pptx
Job Shop Scheduling.pptxJob Shop Scheduling.pptx
Job Shop Scheduling.pptx
 
11.application of branch and bound method for optimal two stage flow shop sch...
11.application of branch and bound method for optimal two stage flow shop sch...11.application of branch and bound method for optimal two stage flow shop sch...
11.application of branch and bound method for optimal two stage flow shop sch...
 
Application of branch and bound method for optimal two stage flow shop schedu...
Application of branch and bound method for optimal two stage flow shop schedu...Application of branch and bound method for optimal two stage flow shop schedu...
Application of branch and bound method for optimal two stage flow shop schedu...
 
Approximation Algorithms Part Two: More Constant factor approximations
Approximation Algorithms Part Two: More Constant factor approximationsApproximation Algorithms Part Two: More Constant factor approximations
Approximation Algorithms Part Two: More Constant factor approximations
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
Multiprocessor Real-Time Scheduling.pptx
Multiprocessor Real-Time Scheduling.pptxMultiprocessor Real-Time Scheduling.pptx
Multiprocessor Real-Time Scheduling.pptx
 
Analysis of algorithms
Analysis of algorithmsAnalysis of algorithms
Analysis of algorithms
 
Parallel Line and Machine Job Scheduling Using Genetic Algorithm
Parallel Line and Machine Job Scheduling Using Genetic AlgorithmParallel Line and Machine Job Scheduling Using Genetic Algorithm
Parallel Line and Machine Job Scheduling Using Genetic Algorithm
 
Full introduction to_parallel_computing
Full introduction to_parallel_computingFull introduction to_parallel_computing
Full introduction to_parallel_computing
 
A Hybrid Evolutionary Optimization Model for Solving Job Shop Scheduling Prob...
A Hybrid Evolutionary Optimization Model for Solving Job Shop Scheduling Prob...A Hybrid Evolutionary Optimization Model for Solving Job Shop Scheduling Prob...
A Hybrid Evolutionary Optimization Model for Solving Job Shop Scheduling Prob...
 
C017611624
C017611624C017611624
C017611624
 
Devansh
DevanshDevansh
Devansh
 
Lecture 3 insertion sort and complexity analysis
Lecture 3   insertion sort and complexity analysisLecture 3   insertion sort and complexity analysis
Lecture 3 insertion sort and complexity analysis
 
multiprocessor real_ time scheduling.ppt
multiprocessor real_ time scheduling.pptmultiprocessor real_ time scheduling.ppt
multiprocessor real_ time scheduling.ppt
 
Task allocation and scheduling inmultiprocessors
Task allocation and scheduling inmultiprocessorsTask allocation and scheduling inmultiprocessors
Task allocation and scheduling inmultiprocessors
 
6-Python-Recursion PPT.pptx
6-Python-Recursion PPT.pptx6-Python-Recursion PPT.pptx
6-Python-Recursion PPT.pptx
 
11.optimal three stage flow shop scheduling in which processing time, set up ...
11.optimal three stage flow shop scheduling in which processing time, set up ...11.optimal three stage flow shop scheduling in which processing time, set up ...
11.optimal three stage flow shop scheduling in which processing time, set up ...
 
Optimal three stage flow shop scheduling in which processing time, set up tim...
Optimal three stage flow shop scheduling in which processing time, set up tim...Optimal three stage flow shop scheduling in which processing time, set up tim...
Optimal three stage flow shop scheduling in which processing time, set up tim...
 

R0260950100

  • 1. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6 An Improved Heuristic for Permutation Flow Shop Scheduling (NEH ALGORITHM) 1 Ekta Singhal, 2Shalu Singh, 3Aneesh Dayma (Department of Software Engineering), 3 (Department of Computer Science), Suresh Gyan Vihar University,Jaipur Abstract- Flowshop Scheduling is used to determine the  It is in the set of NP (nondeterministic polynomial optimal sequence of n jobs to be processed on m machines time) problems: Any given solution to L can be verified in the same order. Permutation Flowshop Scheduling quickly (in polynomial time). Problems (PFSP) require same job sequence on all the  It is also in the set of NP-hard problems: Any NP machines with the constraint that machines can only process problem can be converted into L by a transformation of the one job at a time and jobs can be processed by only one inputs in polynomial time. Although any given solution to machine at a time. No machine is allowed to remain idle such a problem can be verified quickly, there is no known when a job is ready for processing. Such problems are NP- efficient way to locate a solution in the first place; indeed, Complete and hence optimal solutions are not guaranteed the most notable characteristic of NP-complete problems is but heuristics have been shown to produce good working that no fast solution to them is known. That is, the time solutions. required to solve the problem using any currently known NEH (Nawaz, Enscore, Ham) Algorithm is an algorithm increases very quickly as the size of the problem efficient algorithm that works by minimizing the makespan grows. for Permutation Flowshop Scheduling Problems PFSP. The 1.1.5 Makespan proposed algorithm is obtained by modifying the NEH Makespan is the completion time of last job on last algorithm and produces improved quality solutions with machine. algorithmic complexity same as the original algorithm. 1.1.6 Constructive Heuristics In constructive heuristics once a decision is taken it cannot Keywords: Flowshop Scheduling, heuristics, makespan be changed for improvement[10]. I. Introduction 1.1.7 Improvement Heuristics 1.1 Important Definitions Pawel J. Kalczynski, Jerzy Kamburowski [3] used 1.1.1 Heuristics improvement heuristics, we start with an initial sequence Heuristic refers to experience-based techniques for problem and attempt to improve it as we proceed. solving, learning, and discovery. Heuristic methods are used to speed up the process of finding a good enough solution, 1.2 Problem Definition where an exhaustive search is impractical[6]. The permutation flow shop problem requires to find the order in which n jobs are to be processed on m consecutive 1.1.2 Flowshop Scheduling machines. The jobs are processed in the order machine 1, Flowshop Scheduling determines an optimum sequence of n machine 2, . . . machine m. jobs to be processed on m machines in the same order i.e. Machines can only process one job at a time and jobs can every job must be processed on machines 1,2,...,m in this be processed by only one machine at a time without same order[10]. preemption. No job can jump over any other job, meaning that the order 1.1.3 Permutation Flowshop Scheduling in which jobs are processed in machine 1 is maintained Permutation Flowshop Scheduling is a special case of FSPs throughout the system. Moreover, no machine is allowed to where same job sequence is followed in all machines i.e. remain idle when a job is ready for processing. All jobs and processing order of the jobs on the machines is the same for machines are available at time 0. every machine. II. OBJECTIVE 1.1.4 NP-Complete For each job two parameters are computed: A problem L is NP-complete if it has two properties: tp (i, j) processing time of job j on machine i tc (i, j) completion time of job j on machine i Issn 2250-3005(online) October| 2012 Page 95
  • 2. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6 The completion time of all jobs is can be computed as: Machin Machin Machin Machin Machin tc (M1, J1) = tp (M1, J1) e1 e2 e3 e4 e5 tc (Mi, J1) = tc (Mi-1, J1) + tp (Mi, J1) tc (M1, Jj) = tc (M1, Jj-1) + tp (M1, Jj) Job 1 5 9 8 10 1 tc (Mi, Jj) = max {tc (Mi-1, Jj), tc (Mi, Jj-1)} + tp (Mi, Jj) (J1) The objective is to find an n-job sequence so as to minimize Job 2 9 3 10 1 8 the makespan i.e. tc (Mm, Jn). (J2) III. Neh Algorithm (Nawaz Enscore Ham) Job 3 9 4 5 8 6 It is a constructive heuristic. (J3) Step 1: Sort the n jobs in non-increasing order of their total processing times Job 4 4 8 8 7 2 (J4) Step 2: Take the first two jobs and schedule them in order to minimise the partial makespan as if there were only these Job 5 3 5 6 3 7 two jobs (J5) Step 3: For k= 3 to n do Step 4 Total processing times of jobs Job 1= 5+9+8+10+1= 33 Step 4: Insert the kth job at the place, which minimises the Job 2= 9+3+10+1+8= 31 partial makespan among the k possible ones. Job 3= 9+4+5+8+6= 32 Job 4= 4+8+8+7+2= 29 IV. Improved Heuristic Job 5= 3+5+6+3+7= 24 Step 1: Sort the n jobs in non-increasing order of their total processing times Sorting in non-increasing order of total processing times J1, J3, J2, J4, J5 Step 2: Take the first four jobs from the sorted list and form 4! = 24 partial sequences (each of length 4). The best k (k is NEH Algorithm a parameter of the algorithm) out of these 24 partial sequences are selected for further processing. The relative positions of jobs in any partial sequence is not altered in any later (larger) sequence Step 3: Set z = 5 Step 4: The zth job on the sorted list is inserted at each of the z positions in each of the k (z − 1)-job partial sequences, resulting in (z × k) z-job partial sequences Step 5: The best k out of the z × k sequences are selected for Fig: 1 further processing Step 6: Increment z by 1 Step 7: If z > n, accept the best of the k n-job sequences as the final solution and stop. Otherwise go to step 4. V. Comparision (EXAMPLE) Comparison (Example) Fig: 2 Issn 2250-3005(online) October| 2012 Page 96
  • 3. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6 Sequence: J1-J3 Makespan: 46 Sequence: J3-J1 Makespan: 42 Select sequence J3-J1 Fig: 6 Fig: 3 Fig: 7 Fig: 4 Fig: 8 Fig: 5 Sequence: J2-J3-J1 Makespan: 51 Sequence: J3-J2-J1 Makespan: 51 Sequence: J3-J1-J2 Makespan: 50 Select sequence J3-J1-J2 Fig: 9 Sequence: J4-J3-J1-J2 Makespan: 54 Sequence: J3-J4-J1-J2 Makespan: 57 Sequence: J3-J1-J4-J2 Makespan: 58 Sequence: J3-J1-J2-J4 Makespan: 58 Select sequence J4-J3-J1-J2 Issn 2250-3005(online) October| 2012 Page 97
  • 4. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6 Fig: 14 Fig: 10 Sequence: J5- J4-J3-J1-J2 Makespan: 58 Sequence: J4- J5- J3-J1-J2 Makespan: 58 Sequence: J4- J3- J5-J1-J2 Makespan: 59 Sequence: J4-J3-J1-J5-J2 Makespan: 63 Sequence: J4-J3-J1-J2-J5 Makespan: 61 Fig: 11 Thus, the best sequence is J5-J4-J3-J2-J1 and J4-J5-J3-J1- J2 with makespan of 58. VI. Improved Heuristic Taking first four jobs from the sorted order to form 24 partial sequences. Sequence: J1-J2-J3-J4 Makespan: 59 Sequence: J1-J4-J2-J3 Makespan: 59 Sequence: J1-J3-J2-J4 Makespan: 57 Sequence: J1-J4-J3-J2 Makespan: 61 Sequence: J3-J1-J2-J4 Makespan: 58 Fig: 12 Sequence: J3-J4-J1-J2 Makespan: 57 Sequence: J2-J1-J3-J4 Makespan: 58 Sequence: J2-J4-J1-J3 Makespan: 62 Sequence: J2-J3-J1-J4 Makespan: 58 Sequence: J2-J4-J3-J1 Makespan: 56 Sequence: J3-J2-J1-J4 Makespan: 58 Sequence: J3-J4-J2-J1 Makespan: 58 Sequence: J1-J2-J4-J3 Makespan: 61 Sequence: J4-J1-J2-J3 Makespan: 58 Sequence: J1-J3-J4-J2 Makespan: 58 Sequence: J4-J1-J3-J2 Makespan: 63 Sequence: J3-J1-J4-J2 Makespan: 58 Fig: 13 Sequence: J4-J3-J1-J2 Makespan: 54 Sequence: J2-J1-J4-J3 Makespan: 62 Sequence: J4-J2-J1-J3 Makespan: 63 Sequence: J3-J2-J4-J1 Makespan: 58 Sequence: J4-J3-J2-J1 Makespan: 55 Sequence: J4-J2-J3-J1 Makespan: 55 Sequence: J2-J3-J4-J1 Makespan: 57 Issn 2250-3005(online) October| 2012 Page 98
  • 5. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6 The parameter of the algorithm k is taken as 7. J4-J5-J3-J1-J2 Selecting the best 7 sequences for further processing. J5-J4-J3-J2-J1 J4-J3-J1-J2 Sequence: J5-J4-J3-J1-J2 Makespan: 58 J5-J4-J2-J3-J1 Sequence: J4-J5-J3-J1-J2 Makespan: 58 Sequence: J4-J3-J5-J1-J2 Makespan: 59 with makespan of 58. Sequence: J4-J3-J1-J5-J2 Makespan: 63 Sequence: J4-J3-J1-J2-J5 Makespan: 61 VII. Complexity J4-J3-J2-J1 Complexity of NEH Algorithm Sequence: J5-J4-J3-J2-J1 Makespan: 58 The total number of enumerations in Neh is given by Sequence: J4-J5-J3-J2-J1 Makespan: 60 n(n+1)/2 Sequence: J4-J3-J5-J2-J1 Makespan: 60 which clearly states that the complexity of this algorithm is Sequence: J4-J3-J2-J5-J1 Makespan: 60 Θ(n^2). Sequence: J4-J3-J2-J1-J5 Makespan: 64 Complexity of improved heuristic J4-J2-J3-J1 The total number of enumerations in case of the improved Sequence: J5-J4-J2-J3-J1 Makespan: 58 heuristic is given by[18] Sequence: J4-J5-J2-J3-J1 Makespan: 60 4! + ∑, (z=5 to n) k * z Sequence: J4-J2-J5-J3-J1 Makespan: 60 = 4! + k * ∑, (z=5 to n) z Sequence: J4-J2-J3-J5-J1 Makespan: 60 Where, k denotes the algorithm parameter, Sequence: J4-J2-J3-J1-J5 Makespan: 64 And n is the number of jobs. Hence, the algorithmic complexity of this approach is J2-J4-J3-J1 Θ(n^2). Sequence: J5-J2-J4-J3-J1 Makespan: 60 Sequence: J2-J5-J4-J3-J1 Makespan: 62 VIII. Conclusions Sequence: J2-J4-J5-J3-J1 Makespan: 60 The improved heuristic proposed for PFSP yields better Sequence: J2-J4-J3-J5-J1 Makespan: 60 result than original NEH algorithm while maintaining the Sequence: J2-J4-J3-J1-J5 Makespan: 65 same algorithmic complexity. As shown using an example, the improved heuristic J2-J3-J4-J1 generates more number of minimum makespan sequences as Sequence: J5-J2-J3-J4-J1 Makespan: 62 compared to the NEH algorithm and hence we have more Sequence: J2-J5-J3-J4-J1 Makespan: 61 options of job sequences that can be implemented for Sequence: J2-J3-J5-J4-J1 Makespan: 63 greater production. Sequence: J2-J3-J4-J5-J1 Makespan: 63 Experimental studies show that the improved heuristic for Sequence: J2-J3-J4-J1-J5 Makespan: 67 PFSP results in sequences with lower makespan as compared to those obtained from NEH algorithm in case of J1-J3-J2-J4 medium sized (n=12 – 30) and large sized (n>70) problems. Sequence: J5-J1-J3-J2-J4 Makespan: 59 Sequence: J1-J5-J3-J2-J4 Makespan: 60 IX. Future Scope Sequence: J1-J3-J5-J2-J4 Makespan: 63 NEH is considered to be the best known heuristic for Sequence: J1-J3-J2-J5-J4 Makespan: 63 PFSPs. But the proposed heuristic has been proved to Sequence: J1-J3-J2-J4-J5 Makespan: 63 outperform NEH. Hence, this heuristic has a great scope in industry where n J3-J4-J1-J2 jobs are required to be scheduled on m machines for greater Sequence: J5-J3-J4-J1-J2 Makespan: 60 production, efficient planning of resources and maintaining Sequence: J3-J5-J4-J1-J2 Makespan: 62 proper control over the industry. Sequence: J3-J4-J5-J1-J2 Makespan: 62 Sequence: J3-J4-J1-J5-J2 Makespan: 66 Sequence: J3-J4-J1-J2-J5 Makespan: 64 Thus, the best sequences are J5-J4-J3-J1-J2 Issn 2250-3005(online) October| 2012 Page 99
  • 6. International Journal Of Computational Engineering Research (ijceronline.com) Vol. 2 Issue. 6 References [16] Palmer, D.S. (1965) ‘Sequencing jobs through a [1] Dipak Laha , Uday Kumar Chakraborty, (2007), Int. multi-stage process in the minimum total time - a J. Information and Communication Technology, quick method of obtaining a near-optimum’, Vol. 1, No. 1 Operational Research Quarterly, Vol. 16, No. 1, [2] Nawaz, M., Enscore Jr, E. and Ham, I., (91-95), The pp.101–107. International Journal of Management Science. v11. [17] Sarin, S. and Lefoka, M. (1993) ‘Scheduling 91-95. heuristics for the n-job, m-machine flowshop’, [3] Pawel J. Kalczynski, Jerzy Kamburowski, (2008), OMEGA,Vol. 21, pp.229–234. Journal Computers and Operations Research, [18] Turner, S. and Booth, D. (1987) ‘Comparison of Volume 35, Issue9 heuristics for flowshop sequencing’, OMEGA,Vol. [4] Bestwick, P.F. and Hastings, N.A.J. (1976) ‘A new 15,pp.75–78 bound for machine scheduling’, Operational Research Quarterly, Vol. 27, pp.479–490. [5] Brown, A.P.G. and Lomnicki, Z.A. (1966) ‘Some applications of the branch and bound algorithm to the machine scheduling problem’, Operational Research Quarterly, Vol. 17, pp.173–182. [6] Campbell, H.G., Dudek, R.A. and Smith, M.L. (1970) ‘A heuristic algorithm for the n-job, m- machine sequencing problem’, Management Science, Vol. 16, pp.630–637. [7] Cormen, T.H., Leiserson, C.E. and Rivest, R.L. (1990) ‘Introduction to Algorithms’, Cambridge,MA: MIT Press. [8] Dannenbring, D.G. (1977) ‘An evaluation of flowshop sequencing heuristics’, Management Science,Vol. 23, No. 11, pp.1174–1182. [9] Gupta, J.N.D. (1971) ‘A functional heuristic algorithm for the flow-shop scheduling problem’,Operational Research Quaterly, Vol. 22, No. 1. [10] Ignall, E. and Schrage, L. (1965) ‘Application of the branch-and-bound technique to some flowshop scheduling problems’, Operations Research, Vol. 13, pp.400–412. [11] Johnson, S.M. (1954) ‘Two and three stage production schedules with set-up times included’, Naval Research Logistics Quarterly, Vol. 1, pp.61– 68. [12] Koulamas, C. (1998) ‘A new constructive heuristic for the flowshop scheduling problem’, European Journal of Operations Research, Vol. 105, pp.66–71. [13] Kreyszig, E. (1972) ‘Advanced Engineering Mathematics’, New York: John Wiley. [14] Lomnicki, Z.A. (1965) ‘A branch-and-bound algorithm for the exact solution of the three-machine scheduling problem’, Operational Research Quarterly, Vol. 16, pp.89–100. [15] Nawaz, M., Enscore Jr., E.E. and Ham, I. (1983) ‘A heuristic algorithm for the m-machine n-job flowshop sequencing problem’, OMEGA International Journal of Management Science, Vol. 11, pp.91–95. Issn 2250-3005(online) October| 2012 Page 100