| 36 | using TAdditiveStatistic = TMetricHolder; |
| 37 | |
| 38 | inline TAdditiveStatistic MakeSimpleAdditiveStatistic(double sum, double weight) { |
| 39 | TAdditiveStatistic stat(2); |
| 40 | stat.Stats[0] = sum; |
| 41 | stat.Stats[1] = weight; |
| 42 | return stat; |
| 43 | } |
| 44 | |
| 45 | template <class TObjective> |
| 46 | void EnsureHasQueries(const TObjective& objective) { |
no outgoing calls
no test coverage detected