Namespaces
Variants
Views
Actions

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

From cppreference.com
 
 
 
Pseudo-random number generation
Uniform random bit generators
Engines and engine adaptors
Non-deterministic generator
Distributions
Uniform distributions
Bernoulli distributions
Poisson distributions
Normal distributions
Sampling distributions
Seed Sequences
(C++11)
C library
 
 
template< class UIntType, UIntType a, UIntType c, UIntType m >

bool operator==( const linear_congruential_engine<UIntType,a,c,m>& lhs,

                 const linear_congruential_engine<UIntType,a,c,m>& rhs );
(1) (since C++11)
template< class UIntType, UIntType a, UIntType c, UIntType m >

bool operator!=( const linear_congruential_engine<UIntType,a,c,m>& lhs,

                 const linear_congruential_engine<UIntType,a,c,m>& rhs );
(2) (since C++11)

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().

[edit] Parameters

lhs, rhs - engines to compare

[edit] Return value

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

[edit] Exceptions

(none)