[8924] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 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 |
|
---|
| 22 | using System;
|
---|
[7228] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Text;
|
---|
| 26 | using HeuristicLab.Common;
|
---|
| 27 | using HeuristicLab.Core;
|
---|
| 28 | using HeuristicLab.Data;
|
---|
| 29 | using HeuristicLab.Parameters;
|
---|
| 30 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 31 |
|
---|
| 32 | namespace 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 | }
|
---|