Added a readme.

This commit is contained in:
2021-02-08 00:19:30 -06:00
parent 7405f88bd6
commit 6f23674730
4 changed files with 79 additions and 19 deletions
+3 -2
View File
@@ -9,6 +9,7 @@
body {
padding: 0;
margin: 0;
background-color: Gainsboro;
}
.column {
@@ -60,7 +61,6 @@
frameRate(Number(document.getElementById("genFrameRate").value));
algo = {};
maze.resetMazeState();
maze.updateMazeDisplay();
loop();
}
</script>
@@ -90,8 +90,9 @@
<select id="searchAlgo">
<option value="depthFirst">Depth First</option>
<option value="breadthFirst">Breadth First</option>
<!--<option value="a*">a*</option>-->
<option value="greedy">Greedy Depth First</option>
</select>
<label id="statesExploredLabel" />
</fieldset>
<fieldset id="misc" disabled="disabled">
<legend>Misc.</legend>