Struct tgff::Arc [] [src]

pub struct Arc {
    pub id: usize,
    pub from: usize,
    pub to: usize,
    pub kind: usize,
}

An edge in a graph connecting two tasks.

Fields

The ID of the arc.

The ID of the source task.

The ID of the destination task.

The type of the arc.