Implement support for aggressive optimization
This commit is contained in:
parent
91dcf29b5f
commit
c7730e0c84
8
board.c
8
board.c
@ -26,10 +26,14 @@
|
|||||||
static inline bool
|
static inline bool
|
||||||
is_in_bounds (board_pos x, board_pos y)
|
is_in_bounds (board_pos x, board_pos y)
|
||||||
{
|
{
|
||||||
|
#ifdef OPTIMIZE
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
return x >= 0 &&
|
return x >= 0 &&
|
||||||
x < 9 &&
|
x < 9 &&
|
||||||
y >= 0 &&
|
y >= 0 &&
|
||||||
y < 9 ;
|
y < 9 ;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -38,8 +42,12 @@ is_in_bounds (board_pos x, board_pos y)
|
|||||||
static inline bool
|
static inline bool
|
||||||
is_valid_value (element_value value)
|
is_valid_value (element_value value)
|
||||||
{
|
{
|
||||||
|
#ifdef OPTIMIZE
|
||||||
|
return true;
|
||||||
|
#else
|
||||||
return value >= 0 &&
|
return value >= 0 &&
|
||||||
value < 9 ;
|
value < 9 ;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user