Skip to main content

nodeT

Type Alias nodeT 

Source
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 nodeST

row, col of this node

§prev: *mut nodeST

ptr to next node in thread or bucket

§pred: *mut nodeST

ptr to previous node in thread or bucket

§level: u32

parent node in tree

§group: i32

tree level

§incost: i32

for marking label

§outcost: i32

for marking label