1 write to _min
ReachFramework (1)
AlphaFlattener\SegmentTree.cs (1)
55
_min
= coord[from].value;
8 references to _min
ReachFramework (8)
AlphaFlattener\SegmentTree.cs (8)
69
if ((
_min
>= x0) && (_max <= x1)) // [_min.._max] is within [x0..x1]
75
if ((_left != null) && (x0 <= _left._max) && (x1 >= _left.
_min
)) // overlap with left
80
if ((_right != null) && (x0 <= _right._max) && (x1 >= _right.
_min
)) // overlap with right
89
if ((
_min
>= x0) && (_max <= x1)) // [_min.._max] is within [x0..x1]
100
if ((_left != null) && (x0 <= _left._max) && (x1 >= _left.
_min
)) // overlap with left
105
if ((_right != null) && (x0 <= _right._max) && (x1 >= _right.
_min
)) // overlap with right
125
if ((_left != null) && (x >= _left.
_min
) && (x <= _left._max))
130
if ((_right != null) && (x >= _right.
_min
) && (x <= _right._max))