Example #1
0
 /**
  * Modify the current arc probability. This effects structureCost and the TOM mutation operators
  * (skeletalChange, temporalChange, doubleSkeletalChange, parentSwapChange)
  */
 public void setArcProb(double arcProb) {
   if (fixedArcProb) {
     throw new RuntimeException("ArcProb value unchangable");
   }
   this.arcProb = arcProb;
   caseInfo.arcProb = arcProb;
   updateMutationOperators(arcProb, temperature);
 }