1 2 3 4 5 6 7 8
use crate::allocator::NodePtr; use crate::cost::Cost; use crate::error::Result; #[derive(Debug, PartialEq, Eq)] pub struct Reduction(pub Cost, pub NodePtr); pub type Response = Result<Reduction>;