Ejemplo n.º 1
0
 /// <summary>
 /// Creates a BinaryGene with the specified constraints and an initial value.
 /// </summary>
 public BinaryGene(BinaryGeneDescriptor descriptor, bool val) : base(descriptor)
 {
     this.Descriptor = descriptor;
     this.Value = val;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creates a BinaryGene with the specified constraints and an initial value.
 /// </summary>
 public BinaryGene(BinaryGeneDescriptor descriptor, bool val) : base(descriptor)
 {
     this.Descriptor = descriptor;
     this.Value      = val;
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Creates an BinaryGene with the specified constraints.
 /// </summary>
 public BinaryGene(BinaryGeneDescriptor descriptor) : base(descriptor)
 {            
     this.Descriptor = descriptor;            
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Creates an BinaryGene with the specified constraints.
 /// </summary>
 public BinaryGene(BinaryGeneDescriptor descriptor) : base(descriptor)
 {
     this.Descriptor = descriptor;
 }