add interactive solver #4

Merged
cscherrNT merged 29 commits from feat/interactive-solver into devel 2024-07-25 15:19:54 +02:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit f0afcbe252 - Show all commits

View File

@ -54,7 +54,9 @@ impl<'wl, WL: WordList> Solver<'wl, WL> for NaiveSolver<'wl, WL> {
}) })
.map(|v| v.to_owned()) .map(|v| v.to_owned())
.collect(); .collect();
matches[0].0.to_owned() matches[0].0.to_owned() // FIXME: panicks in interactive solve, when I insert bullshit and
// pretend that there is a solution #5 It also crashes in
// non-interactive mode
} }
} }