hexe_core 0.0.5

The core components of the hexe chess engine crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(target_pointer_width = "64")]
pub const PTR_SIZE: usize = 8;

#[cfg(target_pointer_width = "32")]
pub const PTR_SIZE: usize = 4;

pub const BOARD_DOTS: &[u8; 127] = b". . . . . . . .\n\
                                     . . . . . . . .\n\
                                     . . . . . . . .\n\
                                     . . . . . . . .\n\
                                     . . . . . . . .\n\
                                     . . . . . . . .\n\
                                     . . . . . . . .\n\
                                     . . . . . . . .";