| 88 | } |
| 89 | |
| 90 | void FeatureExtractor::addFeature(float val) { |
| 91 | assert(featIndx < numFeatures); |
| 92 | feature_vec[featIndx++] = val; |
| 93 | } |
| 94 | |
| 95 | void FeatureExtractor::addNormFeature(float val, float min_val, float max_val) { |
| 96 | assert(featIndx < numFeatures); |
nothing calls this directly
no outgoing calls
no test coverage detected