Corrected timing cell
authorNeil Smith <neil.git@njae.me.uk>
Sat, 6 Oct 2018 19:52:03 +0000 (20:52 +0100)
committerNeil Smith <neil.git@njae.me.uk>
Sat, 6 Oct 2018 19:52:03 +0000 (20:52 +0100)
src/task8/task8.ipynb

index 6145dd1e4cebc0112d5cfca6cbd99ef6dc7dc5ad..1043eb206f210c9b8e46d3697c7e13e7c3b91679 100644 (file)
   },
   {
    "cell_type": "code",
-   "execution_count": 60,
+   "execution_count": 64,
    "metadata": {},
    "outputs": [
     {
      "name": "stdout",
      "output_type": "stream",
      "text": [
-      "33.1 ms ± 427 µs per loop (mean ± std. dev. of 7 runs, 10 loops each)\n"
+      "26.2 ms ± 249 µs per loop (mean ± std. dev. of 7 runs, 10 loops each)\n"
      ]
     }
    ],
    "source": [
     "%%timeit\n",
-    "bestfs(maze, START, GOAL, mow_cost=3)"
+    "astar(maze, START, GOAL, mow_cost=3)"
    ]
   },
   {