示例#1
0
 private StateModel RunWorker(WorkerModel worker, ShapeType shapeType, int alpha, int shapeProbeCount, int shapeAge, int m)
 {
     return(worker.BestState(shapeType, alpha, shapeProbeCount, shapeAge, m));
 }
示例#2
0
 public RectangleStraight(WorkerModel worker, int x1, int y1, int x2, int y2)
 {
     Worker = worker;
     X1     = x1; Y1 = y1;
     X2     = x2; Y2 = y2;
 }