• Tidak ada hasil yang ditemukan

Materi Pemrograman Linier

N/A
N/A
Protected

Academic year: 2017

Membagikan "Materi Pemrograman Linier"

Copied!
13
0
0

Teks penuh

(1)
(2)

Definition

(3)

The Hungarian Method

1. Find the minimum element in each row af the m x m cost matrix. Construct a new matrix by subtracting from each

cost the minimum cost in its row. For the new matrix, find the minimum cost in

each column. Construct a new matrix (called the reduced cost matrix) by

(4)

2. Draw the minimum number of lines

(horizontal and/or vertical) that are needed to cover all the zero’s in the reduced cost matrix. If m lines are required, an optimal solution is available among the covered

(5)

3. Find the smallest nonzero element (call its value k) in the reduced cost matrix that is uncovered by lines drawn in step 2. Now subtract k from each uncover element of

the reduced cost matrix and add k to each element that is covered by two lines.

(6)

Example

(7)
(8)

Solution

Xij = 1 if machine i is assgned to meet the demand of job j

(9)
(10)
(11)

Table 2 Setelah pengurangan row minimum

Min

Column

9 0 3 2

0 10 4 3

4 5 0 6

0 2 4 8

(12)

Table 3 Setelah Pengurangan Column minimum

K = 1 (nilai terkecil di antara cel yang tidak tertutup garis)

Cel yang tidak tertutup garis dikurangi 1, yang ditutup 2 garis ditambah 1

9 0 3 0

0 10 4 1

4 5 0 4

(13)

Table 4

Solusi optimal : x12 = 1, x33 = 1, x41 = 1, x24 = 1

10 0 3 0

0 9 3 0

5 5 0 4

Gambar

Table 1minimum
Table 2 Setelah pengurangan row minimum
Table 3 Setelah Pengurangan Column minimum
Table 410

Referensi

Dokumen terkait