| 305 | |
| 306 | template <typename Scalar> |
| 307 | void MakeRandomScalar(UniformRandomDistribution<Scalar>* uniform_dist, |
| 308 | Scalar* dst) { |
| 309 | *dst = uniform_dist->Get(); |
| 310 | } |
| 311 | |
| 312 | template <typename Scalar> |
| 313 | void MakeRandomVector(UniformRandomDistribution<Scalar>* uniform_dist, int size, |
no test coverage detected