Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Analysis/3.3/MultiAnalyzer.cs @ 5080

Last change on this file since 5080 was 5080, checked in by mkommend, 13 years ago

Implemented wiring of problem specific analyzers in UserDefinedAlgorithms (ticket #1327)

File size: 3.5 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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 HeuristicLab.Collections;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Operators;
27using HeuristicLab.Optimization;
28using HeuristicLab.Parameters;
29using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
30
31namespace HeuristicLab.Analysis {
32  /// <summary>
33  /// An analyzer which applies arbitrary many other analyzers.
34  /// </summary>
35  [Item("MultiAnalyzer", "An analyzer which applies arbitrary many other analyzers.")]
36  [StorableClass]
37  public class MultiAnalyzer : CheckedMultiOperator<IAnalyzer>, IMultiAnalyzer {
38    public override bool CanChangeName {
39      get { return false; }
40    }
41
42    public ValueLookupParameter<IntValue> UpdateIntervalParameter {
43      get { return (ValueLookupParameter<IntValue>)Parameters["UpdateInterval"]; }
44    }
45    public LookupParameter<IntValue> UpdateCounterParameter {
46      get { return (LookupParameter<IntValue>)Parameters["UpdateCounter"]; }
47    }
48
49    public IntValue UpdateInterval {
50      get { return UpdateIntervalParameter.Value; }
51      set { UpdateIntervalParameter.Value = value; }
52    }
53
54    #region Storing & Cloning
55    [StorableConstructor]
56    protected MultiAnalyzer(bool deserializing) : base(deserializing) { }
57    protected MultiAnalyzer(MultiAnalyzer original, Cloner cloner) : base(original, cloner) { }
58    public override IDeepCloneable Clone(Cloner cloner) {
59      return new MultiAnalyzer(this, cloner);
60    }
61    #endregion
62    public MultiAnalyzer()
63      : base() {
64      Parameters.Add(new ValueLookupParameter<IntValue>("UpdateInterval", "The interval in which the contained analyzers should be applied.", new IntValue(1)));
65      Parameters.Add(new LookupParameter<IntValue>("UpdateCounter", "The value which counts how many times the MultiAnalyzer was called since the last update.", "MultiAnalyzerUpdateCounter"));
66    }
67
68    public override IOperation Apply() {
69      IntValue interval = UpdateIntervalParameter.ActualValue;
70      if (interval == null) interval = new IntValue(1);
71
72      IntValue counter = UpdateCounterParameter.ActualValue;
73      if (counter == null) {
74        counter = new IntValue(interval.Value);
75        UpdateCounterParameter.ActualValue = counter;
76      } else counter.Value++;
77
78      if (counter.Value == interval.Value) {
79        counter.Value = 0;
80        OperationCollection next = new OperationCollection();
81        foreach (IndexedItem<IAnalyzer> item in Operators.CheckedItems)
82          next.Add(ExecutionContext.CreateOperation(item.Value));
83        next.Add(base.Apply());
84        return next;
85      } else {
86        return base.Apply();
87      }
88    }
89  }
90}
Note: See TracBrowser for help on using the repository browser.