namespace std {
template <class Engine, size_t W, class UIntType>
bool operator!=(
const independent_bits_engine<Engine, W, UIntType>& x,
const independent_bits_engine<Engine, W, UIntType>& y);
}
概要
非等値比較を行う。
戻り値
x
とy
の状態シーケンスの、全ての値を等値比較し、等しくなければtrue
、そうでなければfalse
を返す。
計算量
O(状態シーケンスのサイズ)
例
#include <iostream>
#include <random>
#include <cstdint>
int main()
{
using engine_type = std::independent_bits_engine<std::mt19937, 64, std::uint64_t>;
engine_type e1;
engine_type e2;
e1(); // e1 == e2にならないよう、e1の状態を進める
if (e1 != e2) {
std::cout << "not equal" << std::endl;
}
else {
std::cout << "equal" << std::endl;
}
}
出力
not equal
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.2 ✅
- ICC: ??
- Visual C++: ??