-
-
Notifications
You must be signed in to change notification settings - Fork 335
/
CrossoverBase.cs
98 lines (86 loc) · 3.78 KB
/
CrossoverBase.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
using System;
using System.Collections.Generic;
namespace GeneticSharp
{
/// <summary>
/// A base class for crossovers.
/// </summary>
public abstract class CrossoverBase : ICrossover
{
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="GeneticSharp.CrossoverBase"/> class.
/// </summary>
/// <param name="parentsNumber">The number of parents need for cross.</param>
/// <param name="childrenNumber">The number of children generated by cross.</param>
protected CrossoverBase(int parentsNumber, int childrenNumber) : this(parentsNumber, childrenNumber, 2)
{
ParentsNumber = parentsNumber;
ChildrenNumber = childrenNumber;
}
/// <summary>
/// Initializes a new instance of the <see cref="GeneticSharp.CrossoverBase"/> class.
/// </summary>
/// <param name="parentsNumber">The number of parents need for cross.</param>
/// <param name="childrenNumber">The number of children generated by cross.</param>
/// <param name="minChromosomeLength">The minimum length of the chromosome supported by the crossover.</param>
protected CrossoverBase(int parentsNumber, int childrenNumber, int minChromosomeLength)
{
ParentsNumber = parentsNumber;
ChildrenNumber = childrenNumber;
MinChromosomeLength = minChromosomeLength;
}
#endregion
#region Properties
/// <summary>
/// Gets or sets a value indicating whether the operator is ordered (if can keep the chromosome order).
/// </summary>
public bool IsOrdered { get; protected set; }
/// <summary>
/// Gets the number of parents need for cross.
/// </summary>
/// <value>The parents number.</value>
public int ParentsNumber { get; private set; }
/// <summary>
/// Gets the number of children generated by cross.
/// </summary>
/// <value>The children number.</value>
public int ChildrenNumber { get; private set; }
/// <summary>
/// Gets or sets the minimum length of the chromosome supported by the crossover.
/// </summary>
/// <value>The minimum length of the chromosome.</value>
public int MinChromosomeLength { get; protected set; }
#endregion
#region Methods
/// <summary>
/// Cross the specified parents generating the children.
/// </summary>
/// <param name="parents">The parents chromosomes.</param>
/// <returns>
/// The offspring (children) of the parents.
/// </returns>
public IList<IChromosome> Cross(IList<IChromosome> parents)
{
ExceptionHelper.ThrowIfNull("parents", parents);
if (parents.Count != ParentsNumber)
{
throw new ArgumentOutOfRangeException(nameof(parents), "The number of parents should be the same of ParentsNumber.");
}
var firstParent = parents[0];
if (firstParent.Length < MinChromosomeLength)
{
throw new CrossoverException(
this, "A chromosome should have, at least, {0} genes. {1} has only {2} gene.".With(MinChromosomeLength, firstParent.GetType().Name, firstParent.Length));
}
return PerformCross(parents);
}
/// <summary>
/// Performs the cross with specified parents generating the children.
/// </summary>
/// <param name="parents">The parents chromosomes.</param>
/// <returns>The offspring (children) of the parents.</returns>
protected abstract IList<IChromosome> PerformCross(IList<IChromosome> parents);
#endregion
}
}