Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | solver: Fix fractions in time output. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
77d15f47e42ac3c427dbdb30cf0daadc |
| User & Date: | fifr 2016-09-28 21:15:32.567 |
Context
|
2016-09-29
| ||
| 05:57 | master::cpx: Fix debug output. check-in: 7c40ea1e38 user: fifr tags: trunk | |
|
2016-09-28
| ||
| 21:15 | solver: Fix fractions in time output. check-in: 77d15f47e4 user: fifr tags: trunk | |
| 21:05 | solver: Compress minorants with smallest multipliers. check-in: a86c952bc8 user: fifr tags: trunk | |
Changes
Changes to src/solver.rs.
| ︙ | ︙ | |||
488 489 490 491 492 493 494 |
fn show_info(&self, step: Step) {
let time = self.start_time.elapsed();
info!("{} {:0>2}:{:0>2}:{:0>2}.{:0>2} {:4} {:4} {:4}{:1} {:9.4} {:9.4} {:12.6e}({:12.6e}) {:12.6e}",
if step == Step::Term { "_endit" } else { "endit" },
time.as_secs() / 3600,
(time.as_secs() / 60) % 60,
time.as_secs() % 60,
| | | 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 |
fn show_info(&self, step: Step) {
let time = self.start_time.elapsed();
info!("{} {:0>2}:{:0>2}:{:0>2}.{:0>2} {:4} {:4} {:4}{:1} {:9.4} {:9.4} {:12.6e}({:12.6e}) {:12.6e}",
if step == Step::Term { "_endit" } else { "endit" },
time.as_secs() / 3600,
(time.as_secs() / 60) % 60,
time.as_secs() % 60,
time.subsec_nanos() / 10000000,
self.cnt_descent,
self.cnt_descent + self.cnt_null,
self.master.cnt_updates(),
if step == Step::Descent { "*" } else { " " },
self.master.weight(),
self.expected_progress,
self.nxt_mod,
|
| ︙ | ︙ |