#region License Information
/* HeuristicLab
* Copyright (C) 2002-2015 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.Collections.Generic;
using System.Linq;
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Data;
using HeuristicLab.Operators;
using HeuristicLab.Parameters;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Optimization {
[Item("Multi-objective Analyzer", "Calls the Analyze method of the problem definition.")]
[StorableClass]
public class MultiObjectiveAnalyzer : SingleSuccessorOperator, IMultiObjectiveAnalysisOperator, IStochasticOperator {
public bool EnabledByDefault { get { return true; } }
public ILookupParameter EncodingParameter {
get { return (ILookupParameter)Parameters["Encoding"]; }
}
public IScopeTreeLookupParameter QualitiesParameter {
get { return (IScopeTreeLookupParameter)Parameters["Qualities"]; }
}
public ILookupParameter ResultsParameter {
get { return (ILookupParameter)Parameters["Results"]; }
}
public ILookupParameter RandomParameter {
get { return (ILookupParameter)Parameters["Random"]; }
}
public Action AnalyzeAction { get; set; }
[StorableConstructor]
protected MultiObjectiveAnalyzer(bool deserializing) : base(deserializing) { }
protected MultiObjectiveAnalyzer(MultiObjectiveAnalyzer original, Cloner cloner) : base(original, cloner) { }
public MultiObjectiveAnalyzer() {
Parameters.Add(new LookupParameter("Random", "The random number generator to use."));
Parameters.Add(new LookupParameter("Encoding", "An item that holds the problem's encoding."));
Parameters.Add(new ScopeTreeLookupParameter("Qualities", "The qualities of the parameter vector."));
Parameters.Add(new LookupParameter("Results", "The results collection to write to."));
}
public override IDeepCloneable Clone(Cloner cloner) {
return new MultiObjectiveAnalyzer(this, cloner);
}
public override IOperation Apply() {
var encoding = EncodingParameter.ActualValue;
var results = ResultsParameter.ActualValue;
var random = RandomParameter.ActualValue;
IEnumerable scopes = new[] { ExecutionContext.Scope };
for (var i = 0; i < QualitiesParameter.Depth; i++)
scopes = scopes.Select(x => (IEnumerable)x.SubScopes).Aggregate((a, b) => a.Concat(b));
var individuals = scopes.Select(encoding.GetIndividual).ToArray();
AnalyzeAction(individuals, QualitiesParameter.ActualValue.Select(x => x.ToArray()).ToArray(), results, random);
return base.Apply();
}
}
}