예제 #1
0
 public MapState(
     int iterationNum,
     IterationConfig cfg,
     IterationProgress progress
     )
 {
     this.iterationNum = iterationNum;
     this.cfg          = cfg;
     this.progress     = progress;
 }
예제 #2
0
 public MapState withConfig(IterationConfig cfg) => new MapState(iterationNum, cfg, progress);