| 68 | } |
| 69 | |
| 70 | void TEvalResult::SetRawValuesByMove(TVector<TVector<double>>& rawValues) { |
| 71 | if (RawValues.size() < 1) { |
| 72 | RawValues.resize(1); |
| 73 | } |
| 74 | RawValues[0] = std::move(rawValues); |
| 75 | } |
| 76 | |
| 77 | void ValidateColumnOutput( |
| 78 | const TVector<TVector<TString>>& outputColumns, |
no test coverage detected