From c7730e0c8426fa1e7888cbac41e0dcec839f6bb6 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 25 Feb 2020 18:56:55 +0100 Subject: [PATCH] Implement support for aggressive optimization --- board.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/board.c b/board.c index c670a2d..c0d70be 100644 --- a/board.c +++ b/board.c @@ -26,10 +26,14 @@ static inline bool is_in_bounds (board_pos x, board_pos y) { +#ifdef OPTIMIZE + return true; +#else return x >= 0 && x < 9 && y >= 0 && y < 9 ; +#endif } /** @@ -38,8 +42,12 @@ is_in_bounds (board_pos x, board_pos y) static inline bool is_valid_value (element_value value) { +#ifdef OPTIMIZE + return true; +#else return value >= 0 && value < 9 ; +#endif }