#region License Information
/* HeuristicLab
* Copyright (C) 2002-2016 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 System;
using System.Runtime.Remoting.Contexts;
using HeuristicLab.Algorithms.MemPR.Interfaces;
using HeuristicLab.Analysis.FitnessLandscape;
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Encodings.PermutationEncoding;
using HeuristicLab.Optimization;
using HeuristicLab.Parameters;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Algorithms.MemPR.Permutation {
[Item("MemPR Population Context (permutation)", "MemPR population context for permutation encoded problems.")]
[StorableClass]
public sealed class PermutationMemPRPopulationContext : MemPRPopulationContext {
[StorableConstructor]
private PermutationMemPRPopulationContext(bool deserializing) : base(deserializing) { }
private PermutationMemPRPopulationContext(PermutationMemPRPopulationContext original, Cloner cloner)
: base(original, cloner) { }
public PermutationMemPRPopulationContext() : base("PermutationMemPRPopulationContext") { }
public PermutationMemPRPopulationContext(string name) : base(name) { }
public override IDeepCloneable Clone(Cloner cloner) {
return new PermutationMemPRPopulationContext(this, cloner);
}
public override PermutationMemPRSolutionContext CreateSingleSolutionContext(ISingleObjectiveSolutionScope solution) {
return new PermutationMemPRSolutionContext(this, solution);
}
public override ISingleObjectiveSolutionScope ToScope(Encodings.PermutationEncoding.Permutation code, double fitness = double.NaN) {
var creator = Problem.SolutionCreator as IPermutationCreator;
if (creator == null) throw new InvalidOperationException("Can only solve binary encoded problems with MemPR (binary)");
return new SingleObjectiveSolutionScope(code, creator.PermutationParameter.ActualName, fitness, Problem.Evaluator.QualityParameter.ActualName) {
Parent = Scope
};
}
}
[Item("MemPR Solution Context (permutation)", "MemPR solution context for permutation encoded problems.")]
[StorableClass]
public sealed class PermutationMemPRSolutionContext : MemPRSolutionContext, IPermutationSubspaceContext,
ILocalSearchPathContext {
[Storable]
private IValueParameter subspace;
public PermutationSolutionSubspace Subspace {
get { return subspace.Value; }
}
ISolutionSubspace ISolutionSubspaceContext.Subspace {
get { return Subspace; }
}
[StorableConstructor]
private PermutationMemPRSolutionContext(bool deserializing) : base(deserializing) { }
private PermutationMemPRSolutionContext(PermutationMemPRSolutionContext original, Cloner cloner)
: base(original, cloner) {
}
public PermutationMemPRSolutionContext(PermutationMemPRPopulationContext baseContext, ISingleObjectiveSolutionScope solution)
: base(baseContext, solution) {
Parameters.Add(subspace = new ValueParameter("Subspace", new PermutationSolutionSubspace(null)));
}
public override IDeepCloneable Clone(Cloner cloner) {
return new PermutationMemPRSolutionContext(this, cloner);
}
public DirectedPath LocalSearchPaths {
get { return BaseContext.LocalSearchPaths; }
}
}
}