1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
4 | *
|
---|
5 | * This file is part of HeuristicLab.
|
---|
6 | *
|
---|
7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
8 | * it under the terms of the GNU General Public License as published by
|
---|
9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
10 | * (at your option) any later version.
|
---|
11 | *
|
---|
12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | * GNU General Public License for more details.
|
---|
16 | *
|
---|
17 | * You should have received a copy of the GNU General Public License
|
---|
18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 | #endregion
|
---|
21 |
|
---|
22 | using System;
|
---|
23 | using HeuristicLab.Data;
|
---|
24 | using HeuristicLab.Problems.LinearAssignment;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.Problems.QuadraticAssignment {
|
---|
27 | public static class GilmoreLawlerBoundCalculator {
|
---|
28 | public static double CalculateLowerBound(DoubleMatrix weights, DoubleMatrix distances) {
|
---|
29 | int N = weights.Rows;
|
---|
30 | DoubleMatrix sortedWeights = SortEachRowExceptDiagonal(weights), sortedDistances = SortEachRowExceptDiagonal(distances);
|
---|
31 |
|
---|
32 | DoubleMatrix costs = new DoubleMatrix(N, N);
|
---|
33 | for (int i = 0; i < N; i++) {
|
---|
34 | for (int j = 0; j < N; j++) {
|
---|
35 | for (int k = 0; k < N - 1; k++)
|
---|
36 | costs[i, j] += sortedWeights[i, k] * sortedDistances[j, N - 2 - k];
|
---|
37 | costs[i, j] += sortedWeights[i, N - 1] * sortedDistances[j, N - 1];
|
---|
38 | }
|
---|
39 | }
|
---|
40 |
|
---|
41 | double result;
|
---|
42 | LinearAssignmentProblemSolver.Solve(costs, out result);
|
---|
43 | return result;
|
---|
44 | }
|
---|
45 |
|
---|
46 | private static DoubleMatrix SortEachRowExceptDiagonal(DoubleMatrix matrix) {
|
---|
47 | var result = new DoubleMatrix(matrix.Rows, matrix.Columns);
|
---|
48 |
|
---|
49 | double[] row = new double[matrix.Rows - 1];
|
---|
50 | for (int i = 0; i < matrix.Rows; i++) {
|
---|
51 | int counter = 0;
|
---|
52 | for (int j = 0; j < matrix.Columns; j++)
|
---|
53 | if (i != j) row[counter++] = matrix[i, j];
|
---|
54 | Array.Sort(row);
|
---|
55 | for (int k = 0; k < matrix.Columns - 1; k++)
|
---|
56 | result[i, k] = row[k];
|
---|
57 | result[i, matrix.Columns - 1] = matrix[i, i];
|
---|
58 | }
|
---|
59 | return result;
|
---|
60 | }
|
---|
61 | }
|
---|
62 | }
|
---|