最終更新日時(UTC):
が更新

履歴 編集

function template
<random>

std::operator==(C++11)

namespace std {
  template <class RealType>
  bool operator==(
    const piecewise_linear_distribution<RealType>& a,
    const piecewise_linear_distribution<RealType>& b);
}

概要

等値比較を行う。

戻り値

a.param() == b.param()であり、かつa(g)によって生成される値の無限シーケンスS1b(g)によって生成される値の無限シーケンスS2が等しい場合trueを返し、そうでなければfalseを返す。

計算量

定数時間

#include <iostream>
#include <random>
#include <array>

int main()
{
  std::array<double, 3> intervals1 = {0.0, 5.0, 10.0};
  std::array<double, 3> intervals2 = {0.0, 5.0, 10.0};
  std::array<double, 3> densities = {0.0, 0.5,  0.1};

  std::piecewise_linear_distribution<> a(
    intervals1.begin(),
    intervals1.end(),
    densities.begin()
  );

  std::piecewise_linear_distribution<> b(
    intervals2.begin(),
    intervals2.end(),
    densities.begin()
  );

  if (a == b) {
    std::cout << "equal" << std::endl;
  }
  else {
    std::cout << "not equal" << std::endl;
  }
}

出力

equal

バージョン

言語

  • C++11

処理系

参照