Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PersistenceReintegration/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionValueRemover.cs @ 14927

Last change on this file since 14927 was 14927, checked in by gkronber, 7 years ago

#2520: changed all usages of StorableClass to use StorableType with an auto-generated GUID (did not add StorableType to other type definitions yet)

File size: 2.5 KB
RevLine 
[8924]1#region License Information
2/* HeuristicLab
[14185]3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[8924]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
22using System;
[7228]23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Data;
29using HeuristicLab.Parameters;
[14927]30using HeuristicLab.Persistence;
[7228]31
32namespace HeuristicLab.Optimization {
33
34  [Item("RunCollection Value Remover", "Modifies a RunCollection by removing results or parameters.")]
[14927]35  [StorableType("18b2175c-a5b3-4307-865c-704d99577de1")]
[7228]36  public class RunCollectionValueRemover : ParameterizedNamedItem, IRunCollectionModifier {
[14927]37
[7228]38    public ValueParameter<CheckedItemCollection<StringValue>> ValuesParameter {
39      get { return (ValueParameter<CheckedItemCollection<StringValue>>)Parameters["Values"]; }
40    }
41
42    public IEnumerable<string> Values {
43      get { return ValuesParameter.Value.CheckedItems.Select(v => v.Value); }
44    }
45
46    #region Construction & Cloning   
47    [StorableConstructor]
48    protected RunCollectionValueRemover(bool deserializing) : base(deserializing) { }
49    protected RunCollectionValueRemover(RunCollectionValueRemover original, Cloner cloner)
50      : base(original, cloner) {
51    }
52    public RunCollectionValueRemover() {
[14927]53      Parameters.Add(new ValueParameter<CheckedItemCollection<StringValue>>("Values", "The result or parameter values to be removed from each run."));
[7228]54    }
55    public override IDeepCloneable Clone(Cloner cloner) {
56      return new RunCollectionValueRemover(this, cloner);
[14927]57    }
58    #endregion
[7228]59
[14927]60    public void Modify(List<IRun> runs) {
[7228]61      foreach (var run in runs) {
62        foreach (var value in Values) {
63          run.Parameters.Remove(value);
64          run.Results.Remove(value);
[14927]65        }
66      }
[7228]67    }
[14927]68
[7228]69  }
70}
Note: See TracBrowser for help on using the repository browser.