#region License Information /* HeuristicLab * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using HeuristicLab.Common; using HeuristicLab.Core; using HeuristicLab.Data; using HeuristicLab.Encodings.PermutationEncoding; using HeuristicLab.Operators; using HeuristicLab.Parameters; using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; namespace HeuristicLab.Problems.QuadraticAssignment { [StorableClass] public class QAPEvaluator : SingleSuccessorOperator, IQAPEvaluator { public ILookupParameter PermutationParameter { get { return (ILookupParameter)Parameters["Permutation"]; } } public ILookupParameter DistancesParameter { get { return (ILookupParameter)Parameters["Distances"]; } } public ILookupParameter WeightsParameter { get { return (ILookupParameter)Parameters["Weights"]; } } public ILookupParameter QualityParameter { get { return (ILookupParameter)Parameters["Quality"]; } } [StorableConstructor] protected QAPEvaluator(bool deserializing) : base(deserializing) { } protected QAPEvaluator(QAPEvaluator original, Cloner cloner) : base(original, cloner) { } public QAPEvaluator() { Parameters.Add(new LookupParameter("Permutation", "The permutation that represents the current solution.")); Parameters.Add(new LookupParameter("Distances", "The distance matrix that contains the distances between the locations.")); Parameters.Add(new LookupParameter("Weights", "The matrix with the weights between the facilities, that is how strongly they're connected to each other.")); Parameters.Add(new LookupParameter("Quality", "The quality value aka fitness value of the solution.")); } public override IDeepCloneable Clone(Cloner cloner) { return new QAPEvaluator(this, cloner); } public static double Apply(Permutation assignment, DoubleMatrix weights, DoubleMatrix distances) { double quality = 0; for (int i = 0; i < assignment.Length; i++) { for (int j = 0; j < assignment.Length; j++) { quality += weights[i, j] * distances[assignment[i], assignment[j]]; } } return quality; } public override IOperation Apply() { Permutation assignment = PermutationParameter.ActualValue; DoubleMatrix weights = WeightsParameter.ActualValue; DoubleMatrix distanceMatrix = DistancesParameter.ActualValue; double quality = Apply(assignment, weights, distanceMatrix); QualityParameter.ActualValue = new DoubleValue(quality); return base.Apply(); } } }