pub type node = node_st;Expand description
node
Aliased Type§
#[repr(C)]pub struct node {
pub first: *mut arc_st,
pub current: *mut arc_st,
pub suspended: *mut arc_st,
pub price: f64,
pub q_next: *mut node_st,
pub b_next: *mut node_st,
pub b_prev: *mut node_st,
pub rank: i64,
pub excess: i64,
pub inp: i8,
}Fields§
§first: *mut arc_st§current: *mut arc_stfirst outgoing arc
suspended: *mut arc_stcurrent outgoing arc
price: f64§q_next: *mut node_stdistance from a sink
b_next: *mut node_stnext node in push queue
b_prev: *mut node_stnext node in bucket-list
rank: i64previous node in bucket-list
excess: i64bucket number
inp: i8excess of the node