(grid, block_size, word_size)
| 293 | # - this is the number of dimensions in a grid |
| 294 | # - this is the length needed to create a needed markon chain |
| 295 | def check_grid(grid, block_size, word_size): |
| 296 | build_index(grid, block_size, word_size, []) |
| 297 | |
| 298 | # create an index to access the grid with |
| 299 | def build_index(grid, block_size, word_size, index): |
nothing calls this directly
no test coverage detected