1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Linq;
|
---|
4 | using System.Text;
|
---|
5 | using HeuristicLab.Operators;
|
---|
6 | using HeuristicLab.Optimization;
|
---|
7 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
8 | using HeuristicLab.Core;
|
---|
9 | using HeuristicLab.Parameters;
|
---|
10 | using HeuristicLab.Common;
|
---|
11 | using HeuristicLab.Data;
|
---|
12 |
|
---|
13 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
14 | [StorableClass]
|
---|
15 | public class AverageDoubleValueCrossover : SingleSuccessorOperator, IDoubleValueCrossover, IStochasticOperator {
|
---|
16 | public ILookupParameter<IRandom> RandomParameter {
|
---|
17 | get { return (LookupParameter<IRandom>)Parameters["Random"]; }
|
---|
18 | }
|
---|
19 |
|
---|
20 | public AverageDoubleValueCrossover() { }
|
---|
21 | [StorableConstructor]
|
---|
22 | protected AverageDoubleValueCrossover(bool deserializing) : base(deserializing) { }
|
---|
23 | protected AverageDoubleValueCrossover(AverageDoubleValueCrossover original, Cloner cloner)
|
---|
24 | : base(original, cloner) {
|
---|
25 | }
|
---|
26 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
27 | return new AverageDoubleValueCrossover(this, cloner);
|
---|
28 | }
|
---|
29 |
|
---|
30 | public void Apply(IRandom random, DoubleValue value, DoubleValue other, DoubleValueRange range) {
|
---|
31 | ApplyStatic(random, value, other, range);
|
---|
32 | }
|
---|
33 |
|
---|
34 | public static void ApplyStatic(IRandom random, DoubleValue value, DoubleValue other, DoubleValueRange range) {
|
---|
35 | value.Value = (value.Value + other.Value) / 2;
|
---|
36 | value.Value = range.ApplyStepSize(value.Value);
|
---|
37 | }
|
---|
38 | }
|
---|
39 | }
|
---|