Update README to include information on -DOPTIMIZE

This commit is contained in:
Gabriel Tofvesson 2020-02-25 19:36:07 +01:00
parent d559d8bd6f
commit 6d9a1b48f9

View File

@ -42,14 +42,17 @@ 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
aforementioned specifications.
## Optimization
An optimization directive has been included in `board.c` to allow for the near
complete removal of boundary checks and error conditions. To enable this
optimization, simply add `-DOPTIMIZE` to your compiler flags.
## TODO
* Optimizations
* Per-quadrant bit-field of populated values
* Fewer boundary checks (compilation option?)
* Packed structures
* Better structure layouts