From d92b0b81267df02fb444b5b28ea7f627c68381ae Mon Sep 17 00:00:00 2001 From: Bee <10378052+bee-san@users.noreply.github.com> Date: Tue, 8 Sep 2020 18:29:41 +0100 Subject: [PATCH] Updated Searchers, explained (markdown) --- Searchers,-explained.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Searchers,-explained.md b/Searchers,-explained.md index 1f69717..ed30c4d 100644 --- a/Searchers,-explained.md +++ b/Searchers,-explained.md @@ -18,7 +18,7 @@ We determine priority based on how likely something is to appear, and how easy i For example, Base64 appears all the time and it's very cost-efficient to check as much as we want so it's a high priority. Whereas Vigenère doesn't appear too often and it's expensive to check so it's a lower priority. -This is a hand-created heuristic that our next search algorithm will be able to fix. +This is a hand-created heuristic that our next search algorithm will be able to automate. # Imperfection (A* search) Imperfection is our next goal in terms of searching. It is an A* algorithm where the heuristic matches the close priority in AU search.