| 154 | const double& GetLeftMaxValue() const { return this->LeftMax; } |
| 155 | const double& GetRightMinValue() const { return this->RightMin; } |
| 156 | void MakeLeaf(const T& start, const T& size) |
| 157 | { |
| 158 | this->Index = 3; |
| 159 | this->Sz = size; |
| 160 | this->St = start; |
| 161 | } |
| 162 | bool IsLeaf() const { return this->Index == 3; } |
| 163 | const T& Start() const { return this->St; } |
| 164 | const T& Size() const { return this->Sz; } |
no outgoing calls
no test coverage detected