/// The length of a new plank
pub static PLANKMAX: u32 = 2200;

/// The smallest allowable plank length
pub static PLANKMIN: u32 = 400;

/// The smalles allowed space between plank cuts
pub static CUTADJACENCY: u32 = 400;

/// Width of a plank
pub static PLANKWIDTH: u32 = 185;

/// Amount of desired play between end planks
/// and the wallss
pub static PLAY: u32 = 10;

/// Size of the sawblade, how much material is lost
pub static SAWBLADE: u32 = 2;

/// Length of the room
pub static ROOMLENGTH: u32 = 4760;
// pub static ROOMLENGTH: u32 = 2220;
// pub static ROOMLENGTH: u32 = 3740;

/// Depth of the room
pub static ROOMDEPTH: u32 = 2800;
// pub static ROOMDEPTH: u32 = 2900;

/// How many planks are available?
pub static AVAILABLEPLANKS: u32 = 40;