1
0
Mirror von https://github.com/Chaoscaot/schemsearch synchronisiert 2024-10-01 20:20:12 +02:00

Print Progressbar to stdout

Dieser Commit ist enthalten in:
Chaoscaot 2023-04-04 17:29:04 +02:00
Ursprung 5c9bcfc2ec
Commit 5607dcc72c

Datei anzeigen

@ -248,7 +248,7 @@ fn main() {
let bar = ProgressBar::new(schematics.len() as u64); let bar = ProgressBar::new(schematics.len() as u64);
bar.set_style(ProgressStyle::with_template("[{elapsed}, ETA: {eta}] {wide_bar} {pos}/{len} {per_sec}").unwrap()); bar.set_style(ProgressStyle::with_template("[{elapsed}, ETA: {eta}] {wide_bar} {pos}/{len} {per_sec}").unwrap());
bar.set_draw_target(ProgressDrawTarget::stderr_with_hz(5)); bar.set_draw_target(ProgressDrawTarget::stdout_with_hz(5));
let matches: Vec<SearchResult> = schematics.par_iter().progress_with(bar).map(|schem| { let matches: Vec<SearchResult> = schematics.par_iter().progress_with(bar).map(|schem| {
match schem { match schem {