Returns the interval associated with the node at the given `index`.
(&self, index: usize)
| 668 | |
| 669 | /// Returns the interval associated with the node at the given `index`. |
| 670 | pub fn get_interval(&self, index: usize) -> Interval { |
| 671 | self.graph[NodeIndex::new(index)].interval.clone() |
| 672 | } |
| 673 | } |
| 674 | |
| 675 | /// This is a subfunction of the `propagate_arithmetic` function that propagates to the right child. |
no test coverage detected