use crate::gate::*; use crate::pin::*; use std::collections::HashMap; pub type PinValue = u8; pub type Pins = Vec; pub type Gates = Vec; pub type Chips = Vec; pub type Connections = HashMap>;