pub type nodeT = nodeST;Expand description
node data structure
Aliased Type§
#[repr(C)]pub struct nodeT {
pub row: i32,
pub col: i32,
pub next: *mut nodeST,
pub prev: *mut nodeST,
pub pred: *mut nodeST,
pub level: u32,
pub group: i32,
pub incost: i32,
pub outcost: i32,
}Fields§
§row: i32§col: i32§next: *mut nodeSTrow, col of this node
prev: *mut nodeSTptr to next node in thread or bucket
pred: *mut nodeSTptr to previous node in thread or bucket
level: u32parent node in tree
group: i32tree level
incost: i32for marking label
outcost: i32for marking label