| 26 | |
| 27 | |
| 28 | static void CheckTarget(const TVector<TSharedVector<float>>& target, ui32 objectCount) { |
| 29 | for (auto i : xrange(target.size())) { |
| 30 | CheckDataSize(target[i]->size(), (size_t)objectCount, "Target[" + ToString(i) + "]", false); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | static void CheckContainsOnly01s(const ITypedSequence<float>& typedSequence) { |
| 35 | typedSequence.ForEach( |
no test coverage detected