Add more items to TODO in README
This commit is contained in:
parent
18c53e6f62
commit
1abbff5a37
17
README.md
17
README.md
@ -1,5 +1,5 @@
|
|||||||
# Sudoku solver
|
# Sudoku solver
|
||||||
A simple sudoku problem solver
|
A simple sudoku problem solver because I got bored of solving them manually.
|
||||||
|
|
||||||
## File format
|
## File format
|
||||||
The sudoku solver accepts a file for the following format:
|
The sudoku solver accepts a file for the following format:
|
||||||
@ -37,12 +37,25 @@ or
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
## Test
|
## Compiling and running
|
||||||
To test the functionality, simply run `gcc -o sudoku main.c board.c`, then
|
To test the functionality, simply run `gcc -o sudoku main.c board.c`, then
|
||||||
`./sudoku [filename]`, where the given file is formatted according to the
|
`./sudoku [filename]`, where the given file is formatted according to the
|
||||||
aforementioned specifications.
|
aforementioned specifications.
|
||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
* Speculative value placement
|
* Speculative value placement
|
||||||
|
|
||||||
* Optimizations
|
* Optimizations
|
||||||
|
|
||||||
|
* Per-quadrant bit-field of populated values
|
||||||
|
|
||||||
|
* Fewer boundary checks (compilation option?)
|
||||||
|
|
||||||
|
* Packed structures
|
||||||
|
|
||||||
|
* Better structure layouts
|
||||||
|
|
||||||
|
* Better error messages
|
||||||
|
|
||||||
|
* Makefile
|
||||||
|
Loading…
x
Reference in New Issue
Block a user