kewb 0.4.3

A crate for manipulating and solving a 3x3 Rubik's cube with Kociemba's two phase algorithm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// The total count of unique corner orientations.
pub const CO_COUNT: u16 = 2187;
/// The total count of unique edge orientations.
pub const EO_COUNT: u16 = 2048;
/// The total count of E-slice edge combinations.
pub const E_COMBO_COUNT: u16 = 495;
/// The total count of corner premutations.
pub const CP_COUNT: u16 = 40320;
/// The total count of edge premutations.
pub const EP_COUNT: u32 = 479001599;
/// The total count of U-D layer edge premutations.
pub const UD_EP_COUNT: u16 = 40320;
/// The total count of E-slice edge permutations.
pub const E_EP_COUNT: u16 = 24;