operator==,!=(std::mersenne_twister_engine) (3) - Linux Manuals

operator==,!=(std::mersenne_twister_engine): operator==,!=(std::mersenne_twister_engine)

NAME

operator==,!=(std::mersenne_twister_engine) - operator==,!=(std::mersenne_twister_engine)

Synopsis


template< class UIntType,
size_t w, size_t n, size_t m, size_t r,
UIntType a, size_t u, UIntType d, size_t s,
UIntType b, size_t t, (1) (since C++11)
UIntType c, size_t l, UIntType f >
bool operator==( const mersenne_twister_engine<UIntType,w,n,m,r,a,u,d,s,b,t,c,l,f>& lhs,
const mersenne_twister_engine<UIntType,w,n,m,r,a,u,d,s,b,t,c,l,f>& rhs );
template< class UIntType,
size_t w, size_t n, size_t m, size_t r,
UIntType a, size_t u, UIntType d, size_t s,
UIntType b, size_t t, (2) (since C++11)
UIntType c, size_t l, UIntType f >
bool operator!=( const mersenne_twister_engine<UIntType,w,n,m,r,a,u,d,s,b,t,c,l,f>& lhs,
const mersenne_twister_engine<UIntType,w,n,m,r,a,u,d,s,b,t,c,l,f>& rhs );


Compares two pseudo-random number engines. Two engines are equal, if their internal states are equivalent, that is, if they would generate equivalent values for any number of calls of operator().

Parameters


lhs, rhs - engines to compare

Return value


1) true if the engines are equivalent, false otherwise.
2) true if the engines are not equivalent, false otherwise.

Exceptions


(none)