Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add v0.1.1 release notes v0.1.1 | Andinus | 2021-11-16 | 2 | -1/+25 |
| | |||||
* | Add note about incorrect visualization | Andinus | 2021-11-16 | 1 | -0/+5 |
| | |||||
* | Add solution/DFS-60 | Andinus | 2021-11-16 | 1 | -0/+438 |
| | |||||
* | Update to latest fornax format | Andinus | 2021-11-16 | 1 | -21/+33 |
| | |||||
* | java/DFS: Update to latest fornax format, fix DFS | Andinus | 2021-11-16 | 1 | -18/+48 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Now it prints the starting point and all visited path according to the format. Earlier we marked paths as unvisited right after we backtrack out of it. This is not really necessary for us to get the solution because if we're not able to find a path through that block then we won't find it with another way of reaching that block either. Explanation: AB X. If we can't find a path to destination from AX... then we won't find it form ABX... either. Earlier we were trying ABX... too. I had this idea in mind because before this I wrote a word search program that walked in DFS manner, in that case this was required because ABX... could form a word that AX... couldn't. The solution was easy, just had to keep it marked as visited and not revert it. To keep track of current path we created `path'. This is marked false right after traversal because it keeps track of current path. | ||||
* | Update fornax format to include start and current path | Andinus | 2021-11-16 | 2 | -6/+12 |
| | |||||
* | java/BFS: Prettify code | Andinus | 2021-11-16 | 2 | -91/+95 |
| | |||||
* | Add new demo links, link to latest writing | Andinus | 2021-11-09 | 2 | -7/+17 |
| | |||||
* | Add more solutions, add note about DFS-51 | Andinus | 2021-11-09 | 4 | -0/+1352 |
| | |||||
* | BFS code for maze traversal | Vam-c | 2021-11-05 | 1 | -0/+91 |
| | | | errors (null) for start object. | ||||
* | Wait 4s on last frame, use await | Andinus | 2021-11-04 | 1 | -1/+2 |
| | |||||
* | Wait for jobs to finish before creating the slideshow | Andinus | 2021-11-04 | 1 | -0/+2 |
| | |||||
* | Process iterations in parallel | Andinus | 2021-11-04 | 1 | -52/+62 |
| | |||||
* | Add option to skip generating slideshow, use random directory | Andinus | 2021-11-04 | 1 | -7/+18 |
| | |||||
* | Fix cgit link | Andinus | 2021-11-03 | 2 | -2/+2 |
| | |||||
* | Release v0.1.0 v0.1.0 | Andinus | 2021-11-03 | 2 | -4/+6 |
| | |||||
* | Update install instruction | Andinus | 2021-11-03 | 3 | -2/+3 |
| | |||||
* | Add Hex2RGB module in META6.json | Andinus | 2021-11-03 | 1 | -1/+2 |
| | |||||
* | Add tests | Andinus | 2021-11-03 | 2 | -0/+14 |
| | |||||
* | Document options | Andinus | 2021-11-03 | 2 | -0/+15 |
| | |||||
* | Add installation notes to README | Andinus | 2021-11-03 | 2 | -10/+115 |
| | |||||
* | Add News section in README | Andinus | 2021-11-03 | 2 | -29/+48 |
| | |||||
* | Add Demo Video | Andinus | 2021-11-03 | 2 | -7/+50 |
| | |||||
* | java/DFS: Don't walk on visited, Add DFS solutions, change colors | Andinus | 2021-11-03 | 4 | -9/+57 |
| | | | | | It didn't walk on visited grid but printed that as an iteration so it seemed like it did. | ||||
* | Fix log-level usage in ffmpeg, update maze | Andinus | 2021-11-03 | 2 | -8/+8 |
| | |||||
* | More DFS solutions | Andinus | 2021-11-03 | 2 | -0/+55 |
| | |||||
* | Set ffmpeg verbosity | Andinus | 2021-11-03 | 2 | -10/+12 |
| | |||||
* | Rename sample solutions | Andinus | 2021-11-03 | 7 | -0/+0 |
| | | | | When we add more algorithms, this'll make it easier to browse. | ||||
* | More DFS solution | Andinus | 2021-11-03 | 1 | -0/+1995 |
| | |||||
* | Fix excess space calculation | Andinus | 2021-11-03 | 1 | -2/+2 |
| | | | | Earlier we assumed that rows == columns. | ||||
* | java/DFS: Fix out of bounds check | Andinus | 2021-11-03 | 1 | -4/+8 |
| | |||||
* | More sample solutions | Andinus | 2021-11-03 | 5 | -0/+242 |
| | |||||
* | java/DFS: Chose neighbor randomly | Andinus | 2021-11-03 | 1 | -1/+9 |
| | | | | | This does mean that we might end up taking a longer path but also the inverse! | ||||
* | java/DFS: Keep variables in smallest scope | Andinus | 2021-11-03 | 1 | -6/+3 |
| | |||||
* | Change default output directory | Andinus | 2021-11-03 | 2 | -4/+4 |
| | |||||
* | Add sample DFS solution | Andinus | 2021-11-03 | 2 | -1/+7 |
| | |||||
* | Variable frame rate, center the canvas | Andinus | 2021-11-03 | 1 | -8/+15 |
| | |||||
* | Generate slideshow with ffmpeg, add verbose option | Andinus | 2021-11-03 | 1 | -6/+12 |
| | |||||
* | Parse fornax format to generate the images | Andinus | 2021-11-03 | 2 | -34/+91 |
| | | | | | Switched to PNG because SVGs were larger in this case. Also, video will be created with `ffmpeg` so it's just easier to use PNGs. | ||||
* | Document assumptions | Andinus | 2021-11-03 | 2 | -0/+4 |
| | |||||
* | java/DFS: Output in Fornax format | Andinus | 2021-11-03 | 1 | -44/+47 |
| | |||||
* | Document symbol prioritization | Andinus | 2021-11-03 | 2 | -2/+8 |
| | |||||
* | Remove number of iterations from format | Andinus | 2021-11-03 | 2 | -2/+2 |
| | | | | | To know this the program must have solved the whole puzzle before it is able to print a single line. I don't think it's required. | ||||
* | Document highlighting for Illegal, Solved paths | Andinus | 2021-11-03 | 2 | -4/+14 |
| | |||||
* | Document iteration grids | Andinus | 2021-11-03 | 2 | -8/+62 |
| | |||||
* | Document fornax format, update .gitignore | Andinus | 2021-11-03 | 3 | -3/+57 |
| | |||||
* | Generate images for every iteration | Andinus | 2021-11-02 | 2 | -3/+53 |
| | |||||
* | java/DFS: Make output parseable | Andinus | 2021-11-02 | 1 | -21/+23 |
| | |||||
* | Move to Raku module structure | Andinus | 2021-11-02 | 5 | -14/+40 |
| | |||||
* | Basic implementation of fornax | Andinus | 2021-11-02 | 1 | -0/+14 |
| |