diff options
Diffstat (limited to 'README.org')
-rw-r--r-- | README.org | 31 |
1 files changed, 19 insertions, 12 deletions
diff --git a/README.org b/README.org index 7432478..98a58b7 100644 --- a/README.org +++ b/README.org @@ -29,6 +29,21 @@ later converted to a slideshow with ~ffmpeg~. - *Note*: If the number of iterations are greater than an 8 digit number then the slideshow might be incorrect. +* Project Structure + +- Algorithms are located in ~algorithms/~ directory, sub-directory needs + to be created for programming languages which will hold the actual + source. + +- Sample solutions can be found in ~resources/solutions/~ directory. + + - *Note*: Some solutions might output illegal moves (like walking over + blocked path), this error is only in visualization, the solution is + correct. + + This has been fixed in commit + ~8cef86f0eb8b46b0ed2d7c37fa216890300249f6~. + * Fornax Format Fornax format is an intermediate output file generated after solving the @@ -73,17 +88,9 @@ A grid is printed for every iteration. Grids are composed of cells. - /Current Position/ is prioritized over /Blocked/ & /Destination/ symbol if it makes sense. -* Project Structure +* News -- Algorithms are located in ~algorithms/~ directory, sub-directory needs - to be created for programming languages which will hold the actual - source. - -- Sample solutions can be found in ~resources/solutions/~ directory. +** v0.1.0 - 2021-11-03 - - *Note*: Some solutions might output illegal moves (like walking over - blocked path), this error is only in visualization, the solution is - correct. - - This has been fixed in commit - ~8cef86f0eb8b46b0ed2d7c37fa216890300249f6~. ++ Initial implementation. Includes DFS solver in Java, tool to visualize + the solution. |