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

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

NAME

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

Synopsis


template< class UIntType, UIntType a, UIntType c, UIntType m >
bool operator==( const linear_congruential_engine<UIntType,a,c,m>& lhs, (1) (since C++11)
const linear_congruential_engine<UIntType,a,c,m>& rhs );
template< class UIntType, UIntType a, UIntType c, UIntType m >
bool operator!=( const linear_congruential_engine<UIntType,a,c,m>& lhs, (2) (since C++11)
const linear_congruential_engine<UIntType,a,c,m>& 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)