public Builder(BpmModel model)
 {
     SetCostWeight(model.GetCostWeight());
     SetTimeWeight(model.GetTimeWeight());
     SetAlpha(model.GetAlpha());
     SetI(model.GetI());
     SetIfix(model.GetIfix());
     SetIvar(model.GetIvar());
     SetMaxDepthRandomGenome(model.GetMaxDepthRandomGenome());
     SetN(model.GetN());
     SetOnlyValidSolutions(model.GetOnlyValidSolutions());
     SetOnlyValidSolutionsAtStart(model.GetOnlyValidSolutionsAtStart());
     SetPainFactor(model.GetPainFactor());
     SetT(model.GetT());
 }
Example #2
0
 public static void SetBpmModel(BpmModel model)
 {
     _bpmModel = model;
 }