Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Optimization/3.3/RunCollectionModification/RunCollectionValueRemover.cs @ 13397

Last change on this file since 13397 was 12012, checked in by ascheibe, 9 years ago

#2212 merged r12008, r12009, r12010 back into trunk

File size: 2.6 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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;
23using System.Collections.Generic;
24using System.Linq;
25using System.Text;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Data;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
32namespace HeuristicLab.Optimization {
33
34  [Item("RunCollection Value Remover", "Modifies a RunCollection by removing results or parameters.")]
35  [StorableClass]
36  public class RunCollectionValueRemover : ParameterizedNamedItem, IRunCollectionModifier {
37   
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() {
53      Parameters.Add(new ValueParameter<CheckedItemCollection<StringValue>>("Values", "The result or parameter values to be removed from each run."));     
54    }
55    public override IDeepCloneable Clone(Cloner cloner) {
56      return new RunCollectionValueRemover(this, cloner);
57    }   
58    #endregion   
59
60    public void Modify(List<IRun> runs) {     
61      foreach (var run in runs) {
62        foreach (var value in Values) {
63          run.Parameters.Remove(value);
64          run.Results.Remove(value);
65        }       
66      }     
67    }
68   
69  }
70}
Note: See TracBrowser for help on using the repository browser.