From 8082afa55efba777bbbceba96f3d55f70ec65c1f Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Mon, 22 Jul 2024 16:10:50 +0200 Subject: [PATCH] chore: add fixme comment for #5 --- src/solve/naive/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/solve/naive/mod.rs b/src/solve/naive/mod.rs index 4a01e9a..7b40e82 100644 --- a/src/solve/naive/mod.rs +++ b/src/solve/naive/mod.rs @@ -54,7 +54,8 @@ impl<'wl, WL: WordList> Solver<'wl, WL> for NaiveSolver<'wl, WL> { }) .map(|v| v.to_owned()) .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 } }