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 | using HeuristicLab.Random;
|
---|
13 |
|
---|
14 | namespace HeuristicLab.Problems.MetaOptimization {
|
---|
15 | [StorableClass]
|
---|
16 | public class NormalDoubleValueCrossover : SingleSuccessorOperator, IDoubleValueCrossover, IStochasticOperator {
|
---|
17 | public ILookupParameter<IRandom> RandomParameter {
|
---|
18 | get { return (LookupParameter<IRandom>)Parameters["Random"]; }
|
---|
19 | }
|
---|
20 |
|
---|
21 | public NormalDoubleValueCrossover() : base() {
|
---|
22 | }
|
---|
23 | [StorableConstructor]
|
---|
24 | protected NormalDoubleValueCrossover(bool deserializing) : base(deserializing) { }
|
---|
25 | protected NormalDoubleValueCrossover(NormalDoubleValueCrossover original, Cloner cloner)
|
---|
26 | : base(original, cloner) {
|
---|
27 | }
|
---|
28 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
29 | return new NormalDoubleValueCrossover(this, cloner);
|
---|
30 | }
|
---|
31 |
|
---|
32 | public void Apply(IRandom random, DoubleValue value, DoubleValue other, DoubleValueRange range) {
|
---|
33 | value.Value = ApplyStatic(random, value, other, range).Value;
|
---|
34 | }
|
---|
35 |
|
---|
36 | public static DoubleValue ApplyStatic(IRandom random, DoubleValue better, DoubleValue worse, DoubleValueRange range) {
|
---|
37 | NormalDistributedRandom N = new NormalDistributedRandom(random, better.Value, Math.Abs(better.Value - worse.Value));
|
---|
38 | var offspring = new DoubleValue();
|
---|
39 | do {
|
---|
40 | offspring.Value = N.NextDouble();
|
---|
41 | range.ApplyStepSize(offspring);
|
---|
42 | } while (!range.IsInRange(offspring.Value));
|
---|
43 | return offspring;
|
---|
44 | }
|
---|
45 | }
|
---|
46 | }
|
---|