コード例 #1
0
 /// <summary>
 /// The Prediction is the sum of all callees (if not set differently)
 /// </summary>
 public void PredictExecutionTime()
 {
     // TODO RR: Do not use Set, Use Loop Infos as well
     PredictedExecutionTime = PredictionEngine.PredictMethodTime(this, new object[0]);
     // Propagating Changes up the Tree
     PropagateToCallers(mpi => mpi.PredictExecutionTime());
 }