<random>

函数模板 (function template)
<random>

std::关系运算符

相等 (1)
template <class RealType>bool operator== ( const cauchy_distribution<RealType>& lhs,                  const cauchy_distribution<RealType>& rhs );
不等 (2)
template <class RealType>bool operator!= ( const cauchy_distribution<RealType>& lhs,                  const cauchy_distribution<RealType>& rhs );
关系运算符
cauchy_distribution 对象 lhsrhs 执行适当的相等或不等比较操作。

如果两个分布具有相同的参数和相同的内部状态(如果有),并且在使用相等的 生成器 调用它们的 operator() 时产生相同的随机数序列,则它们相等。

参数

lhs, rhs
(运算符的)左侧和右侧的 cauchy_distribution 对象,都具有相同的模板参数(IntType).

返回值

true如果条件成立,则为 true,并且false否则为 false。

另见