Differences From Artifact [2534de3eeb]:
- File src/parallel/solver.rs — part of check-in [7b17239752] at 2019-07-23 08:05:23 on branch async — parallel::solver: show number of inner master problem iterations (user: fifr size: 21737)
To Artifact [d72b1bbd41]:
- File src/parallel/solver.rs — part of check-in [f4a464634e] at 2019-07-23 08:08:07 on branch async — parallel::solver: show final info line after termination (user: fifr size: 21866)
| ︙ | ︙ | |||
523 524 525 526 527 528 529 530 531 532 533 534 535 536 |
self.data.cur_weight = self.weighter.initial_weight(&self.data);
master.set_weight(self.data.cur_weight)?;
master.solve(self.data.cur_val)?;
continue;
}
if self.terminator.terminate(&self.data) {
info!("Termination criterion satisfied");
return Ok(true)
}
// Compress bundle
master.compress()?;
| > | 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 |
self.data.cur_weight = self.weighter.initial_weight(&self.data);
master.set_weight(self.data.cur_weight)?;
master.solve(self.data.cur_val)?;
continue;
}
if self.terminator.terminate(&self.data) {
Self::show_info(&self.start_time, Step::Term, &self.data, self.cnt_descent, self.cnt_null, cnt_updates);
info!("Termination criterion satisfied");
return Ok(true)
}
// Compress bundle
master.compress()?;
|
| ︙ | ︙ |