| 128 | } |
| 129 | |
| 130 | inline void Reset() { |
| 131 | // initialize with -1 and -inf gain |
| 132 | feature = -1; |
| 133 | gain = kMinScore; |
| 134 | } |
| 135 | |
| 136 | inline bool operator > (const SplitInfo& si) const { |
| 137 | double local_gain = this->gain; |
no outgoing calls
no test coverage detected