generated from PlexSheep/rs-base
Compare commits
1 Commits
Author | SHA1 | Date |
---|---|---|
PlexSheep | 2c5ebf25a3 |
|
@ -3,7 +3,7 @@ use std::collections::HashMap;
|
||||||
use libpt::log::{debug, error, info, trace};
|
use libpt::log::{debug, error, info, trace};
|
||||||
|
|
||||||
use crate::error::{SolverError, WResult};
|
use crate::error::{SolverError, WResult};
|
||||||
use crate::game::evaluation::{Evaluation};
|
use crate::game::evaluation::Evaluation;
|
||||||
use crate::wlist::word::{Word, WordData};
|
use crate::wlist::word::{Word, WordData};
|
||||||
use crate::wlist::WordList;
|
use crate::wlist::WordList;
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,7 @@
|
||||||
use test_log::test; // set the log level with an envvar: `RUST_LOG=trace cargo test`
|
use test_log::test; // set the log level with an envvar: `RUST_LOG=trace cargo test`
|
||||||
|
|
||||||
use wordle_analyzer::game::evaluation::Evaluation;
|
|
||||||
use wordle_analyzer::game::Game;
|
|
||||||
use wordle_analyzer::solve::{AnyBuiltinSolver, NaiveSolver, Solver, StupidSolver};
|
use wordle_analyzer::solve::{AnyBuiltinSolver, NaiveSolver, Solver, StupidSolver};
|
||||||
use wordle_analyzer::wlist::builtin::BuiltinWList;
|
use wordle_analyzer::wlist::builtin::BuiltinWList;
|
||||||
use wordle_analyzer::wlist::word::{Word, WordData};
|
|
||||||
use wordle_analyzer::wlist::WordList;
|
use wordle_analyzer::wlist::WordList;
|
||||||
|
|
||||||
fn wordlist() -> impl WordList {
|
fn wordlist() -> impl WordList {
|
||||||
|
|
Loading…
Reference in New Issue