thrust::random::operator==
Defined in thrust/random/linear_congruential_engine.h
-
template<typename UIntType_, UIntType_ a_, UIntType_ c_, UIntType_ m_>
bool thrust::random::operator==(const linear_congruential_engine<UIntType_, a_, c_, m_> &lhs, const linear_congruential_engine<UIntType_, a_, c_, m_> &rhs) This function checks two
linear_congruential_engines
for equality.- Parameters
lhs – The first
linear_congruential_engine
to test.rhs – The second
linear_congruential_engine
to test.
- Returns
true
iflhs
is equal torhs
;false
, otherwise.