示例#1
0
 public MapState(
     int iterationNum,
     IterationConfig cfg,
     IterationProgress progress
     )
 {
     this.iterationNum = iterationNum;
     this.cfg          = cfg;
     this.progress     = progress;
 }
示例#2
0
 public MapState withProgress(IterationProgress progress) => new MapState(iterationNum, cfg, progress);