generated from PlexSheep/rs-base
Compare commits
1 commit
206ebad5cd
...
87a41d6603
Author | SHA1 | Date | |
---|---|---|---|
87a41d6603 |
2 changed files with 3 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
// #![warn(missing_docs)]
|
||||
#![warn(missing_debug_implementations)]
|
||||
|
||||
use std::thread::sleep_ms;
|
||||
use std::thread::sleep;
|
||||
|
||||
use clap::Parser;
|
||||
use libpt::log::*;
|
||||
|
@ -10,7 +10,7 @@ use libpt::log::*;
|
|||
use wordle_analyzer::bench::builtin::BuiltinBenchmark;
|
||||
use wordle_analyzer::bench::{Benchmark, DEFAULT_N};
|
||||
use wordle_analyzer::game::GameBuilder;
|
||||
use wordle_analyzer::solve::{AnyBuiltinSolver, BuiltinSolverNames, Solver};
|
||||
use wordle_analyzer::solve::{AnyBuiltinSolver, BuiltinSolverNames};
|
||||
use wordle_analyzer::wlist::builtin::BuiltinWList;
|
||||
|
||||
use wordle_analyzer::{self, game};
|
||||
|
@ -64,7 +64,7 @@ fn main() -> anyhow::Result<()> {
|
|||
bench.start(50, &bench.builder())?;
|
||||
|
||||
loop {
|
||||
sleep_ms(1000);
|
||||
sleep(std::time::Duration::from_secs(1));
|
||||
println!("{}", bench.report());
|
||||
if bench.is_finished() {
|
||||
break;
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#![warn(clippy::all)]
|
||||
#![warn(missing_docs)]
|
||||
#![warn(missing_debug_implementations)]
|
||||
fn main() {
|
||||
unimplemented!();
|
||||
|
|
Loading…
Add table
Reference in a new issue