feat(web): add async solver worker

This commit is contained in:
2026-08-21 02:25:08 +02:00
parent fcb215f4c7
commit 3475a5338b
7 changed files with 245 additions and 55 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ impl Solver {
- new_possible_solutions.equal_likelieness_entropy();
if new_possible_solutions.len() == 0 {
return Err("Solution space is empty".to_string());
return Err("Applying this guess would empty the solution space!".to_string());
}
self.possible_solutions = new_possible_solutions;