#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.Collections.Generic; using System.Linq; using System.Text; using HeuristicLab.Common; using HeuristicLab.Core; using HeuristicLab.Data; using HeuristicLab.Parameters; using HeuristicLab.Persistence; namespace HeuristicLab.Optimization { [Item("RunCollection Value Remover", "Modifies a RunCollection by removing results or parameters.")] [StorableType("18b2175c-a5b3-4307-865c-704d99577de1")] public class RunCollectionValueRemover : ParameterizedNamedItem, IRunCollectionModifier { public ValueParameter> ValuesParameter { get { return (ValueParameter>)Parameters["Values"]; } } public IEnumerable Values { get { return ValuesParameter.Value.CheckedItems.Select(v => v.Value); } } #region Construction & Cloning [StorableConstructor] protected RunCollectionValueRemover(bool deserializing) : base(deserializing) { } protected RunCollectionValueRemover(RunCollectionValueRemover original, Cloner cloner) : base(original, cloner) { } public RunCollectionValueRemover() { Parameters.Add(new ValueParameter>("Values", "The result or parameter values to be removed from each run.")); } public override IDeepCloneable Clone(Cloner cloner) { return new RunCollectionValueRemover(this, cloner); } #endregion public void Modify(List runs) { foreach (var run in runs) { foreach (var value in Values) { run.Parameters.Remove(value); run.Results.Remove(value); } } } } }