From db75b70bdf996ea43beb8ffe46e8a1ba172ff4d6 Mon Sep 17 00:00:00 2001 From: Dan Anglin Date: Sun, 18 Feb 2024 10:57:47 +0000 Subject: [PATCH] add more whitespacing --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8d50a13..30dfc78 100644 --- a/README.md +++ b/README.md @@ -55,14 +55,18 @@ As of writing `BFS` and `DFS` are available with more along the way. Next choose if you want to enable randomness to the algorithm with the `Enable randomness` checkbox. Randomness is applied when the solver stands before a fork in its path and has to choose from a number of possible directions. -With randomness enabled it will randomly choose the next direction and with it disabled the next direction is chosen from something very similar to an ordered list. + +With randomness enabled it will randomly choose the next direction and with it disabled the next direction is chosen +from something very similar to an ordered list. ![Selecting options](assets/images/option_selection.png) Once you're happy with the options, click on the `Solve the maze` button to start the simulation. -As the solver traverses through the maze, it leaves a red path so that you can keep track of its progress. -When the solver reaches a dead-end it backtracks until it can choose a new path to traverse. When it backtracks it leaves behind a grey trail. +As the solver traverses through the maze, it leaves a red trail so that you can keep track of its progress. + +When the solver reaches a dead-end it backtracks until it can choose a new path to traverse. +When it backtracks it leaves behind a grey trail. ![Running the simulation](assets/images/running_the_simulation.png)