Home
last modified time | relevance | path

Searched refs:UniformImpl (Results 1 – 3 of 3) sorted by relevance

/dports/science/simbody/simbody-Simbody-3.7/SimTKcommon/Random/src/
H A DRandom.cpp49 class UniformImpl;
95 class Random::Uniform::UniformImpl : public Random::RandomImpl { class in SimTK::Random::Uniform
99 UniformImpl(Real min, Real max) : min(min), max(max), range(max-min) { in UniformImpl() function in SimTK::Random::Uniform::UniformImpl
212 impl = new Random::Uniform::UniformImpl(0.0, 1.0); in Uniform()
216 impl = new Random::Uniform::UniformImpl(min, max); in Uniform()
219 Random::Uniform::UniformImpl& Random::Uniform::getImpl() { in getImpl()
221 return SimTK_DYNAMIC_CAST_DEBUG<Random::Uniform::UniformImpl&>(*impl); in getImpl()
224 const Random::Uniform::UniformImpl& Random::Uniform::getConstImpl() const { in getConstImpl()
226 return SimTK_DYNAMIC_CAST_DEBUG<Random::Uniform::UniformImpl&>(*impl); in getConstImpl()
/dports/science/simbody/simbody-Simbody-3.7/SimTKcommon/Random/include/SimTKcommon/internal/
H A DRandom.h98 class UniformImpl;
128 UniformImpl& getImpl();
129 const UniformImpl& getConstImpl() const;
/dports/misc/dartsim/dart-6.11.1/dart/math/detail/
H A DRandom-impl.hpp322 struct UniformImpl struct
329 struct UniformImpl< struct
341 struct UniformImpl< struct
415 return detail::UniformImpl<S>::run(min, max); in uniform()