Esempio n. 1
0
 public PRVEncoding(int length, IRandom random, int min, int max, IntValue nrOfRules)
     : base()
 {
     this.nrOfRules           = (IntValue)nrOfRules.Clone();
     this.PriorityRulesVector = new IntegerVector(length, random, min, max);
 }
Esempio n. 2
0
 public PRVEncoding(int length, IRandom random, int min, int max, IntValue nrOfRules)
   : base() {
   this.nrOfRules = (IntValue)nrOfRules.Clone();
   this.PriorityRulesVector = new IntegerVector(length, random, min, max);
 }
Esempio n. 3
0
 public PRVEncoding(IntegerVector iv, IntValue nrOfRules)
     : base()
 {
     this.nrOfRules           = (IntValue)nrOfRules.Clone();
     this.PriorityRulesVector = (IntegerVector)iv.Clone();
 }
Esempio n. 4
0
 public PRVEncoding(IntegerVector iv, IntValue nrOfRules)
   : base() {
   this.nrOfRules = (IntValue)nrOfRules.Clone();
   this.PriorityRulesVector = (IntegerVector)iv.Clone();
 }