| 16 | } |
| 17 | |
| 18 | void ValidateFeaturePair(int flatFeatureCount, std::pair<int, int> featurePair) { |
| 19 | ValidateFeatureIndex(flatFeatureCount, featurePair.first); |
| 20 | ValidateFeatureIndex(flatFeatureCount, featurePair.second); |
| 21 | } |
| 22 | |
| 23 | void ValidateFeatureInteractionParams( |
| 24 | const EFstrType fstrType, |
no test coverage detected