(change: NodeId, start: u64, end: u64)
| 298 | } |
| 299 | |
| 300 | fn make_internal_vertex(change: NodeId, start: u64, end: u64) -> GraphNode<NodeId> { |
| 301 | GraphNode { |
| 302 | change, |
| 303 | start: ChangePosition::new(start), |
| 304 | end: ChangePosition::new(end), |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | fn make_internal_position(change: NodeId, pos: u64) -> Position<NodeId> { |
| 309 | Position { |
no outgoing calls