Skip to content

Commit

Permalink
fixed gen_dfs kwarg name change
Browse files Browse the repository at this point in the history
  • Loading branch information
mivanit committed Sep 4, 2023
1 parent ffd6a34 commit 1acbbc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions notebooks/demo_generator.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"sample_lattice_maze = LatticeMazeGenerators.gen_dfs(\n",
" grid_shape=(6,6), \n",
" lattice_dim=2,\n",
" n_accessible_cells = 20,\n",
" accessible_cells = 20,\n",
" max_tree_depth = None,\n",
" start_coord = None,\n",
")\n",
Expand Down Expand Up @@ -88,7 +88,7 @@
"sample_lattice_maze = LatticeMazeGenerators.gen_dfs(\n",
" grid_shape=(6,6), \n",
" lattice_dim=2,\n",
" n_accessible_cells = None,\n",
" accessible_cells = None,\n",
" max_tree_depth = 5,\n",
" start_coord = (0,0),\n",
")\n",
Expand Down Expand Up @@ -125,7 +125,7 @@
"sample_lattice_maze = LatticeMazeGenerators.gen_dfs(\n",
" grid_shape=(6,6), \n",
" lattice_dim=2,\n",
" n_accessible_cells = None,\n",
" accessible_cells = None,\n",
" max_tree_depth = None,\n",
" start_coord = None,\n",
")\n",
Expand Down Expand Up @@ -162,7 +162,7 @@
"sample_lattice_maze = LatticeMazeGenerators.gen_dfs(\n",
" grid_shape=(10,10), \n",
" lattice_dim=2,\n",
" n_accessible_cells = 20,\n",
" accessible_cells = 20,\n",
" max_tree_depth = 5,\n",
" start_coord = (5,5),\n",
")\n",
Expand Down

0 comments on commit 1acbbc1

Please sign in to comment.