Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.MetaOptimization/HeuristicLab.Problems.MetaOptimization/3.3/Operators/Crossovers/IntValue/AverageIntValueCrossover.cs @ 16996

Last change on this file since 16996 was 16996, checked in by gkronber, 5 years ago

#2520 Update plugin dependencies and references for HL.MetaOptimization for new persistence

File size: 1.3 KB
Line 
1using HeuristicLab.Operators;
2using HeuristicLab.Optimization;
3using HeuristicLab.Core;
4using HeuristicLab.Parameters;
5using HeuristicLab.Common;
6using HeuristicLab.Data;
7using HEAL.Attic;
8
9namespace HeuristicLab.Problems.MetaOptimization {
10  [StorableType("FF6DCDF5-434C-4D47-8D67-5BD52BAB2D01")]
11  public class AverageIntValueCrossover : SingleSuccessorOperator, IIntValueCrossover, IStochasticOperator {
12    public ILookupParameter<IRandom> RandomParameter {
13      get { return (LookupParameter<IRandom>)Parameters["Random"]; }
14    }
15
16    public AverageIntValueCrossover() { }
17    [StorableConstructor]
18    protected AverageIntValueCrossover(StorableConstructorFlag _) : base(_) { }
19    protected AverageIntValueCrossover(AverageIntValueCrossover original, Cloner cloner)
20      : base(original, cloner) {
21    }
22    public override IDeepCloneable Clone(Cloner cloner) {
23      return new AverageIntValueCrossover(this, cloner);
24    }
25
26    public void Apply(IRandom random, IntValue value, IntValue other, IntValueRange range) {
27      ApplyStatic(random, value, other, range);
28    }
29
30    public static void ApplyStatic(IRandom random, IntValue value, IntValue other, IntValueRange range) {
31      value.Value = (value.Value + other.Value) / 2;
32    }
33  }
34}
Note: See TracBrowser for help on using the repository browser.