From 1abbff5a37939466400773defecd39cd491d7677 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 28 Feb 2020 04:58:49 +0100 Subject: [PATCH] Add more items to TODO in README --- README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a7b0da3..4f80fa3 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Sudoku solver -A simple sudoku problem solver +A simple sudoku problem solver because I got bored of solving them manually. ## File 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 `./sudoku [filename]`, where the given file is formatted according to the aforementioned specifications. ## TODO + * Speculative value placement * Optimizations + + * Per-quadrant bit-field of populated values + + * Fewer boundary checks (compilation option?) + + * Packed structures + + * Better structure layouts + +* Better error messages + +* Makefile