Definition of SegmentTreeNode: public class SegmentTreeNode { public int start, end, max; public SegmentTreeNode left, right; public SegmentTreeNode(int start, int end, int max) { this.start = start; this.end = end; this.max = max this.left = this.right =
source not stored for this graph (policy: none)
nothing calls this directly
no outgoing calls
no test coverage detected