Changeset View
Changeset View
Standalone View
Standalone View
libcxx/include/__random/binomial_distribution.h
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
// | // | ||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||||
// See https://llvm.org/LICENSE.txt for license information. | // See https://llvm.org/LICENSE.txt for license information. | ||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||||
// | // | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
#ifndef _LIBCPP___RANDOM_BINOMIAL_DISTRIBUTION_H | #ifndef _LIBCPP___RANDOM_BINOMIAL_DISTRIBUTION_H | ||||
#define _LIBCPP___RANDOM_BINOMIAL_DISTRIBUTION_H | #define _LIBCPP___RANDOM_BINOMIAL_DISTRIBUTION_H | ||||
#include <__cmath/arithmetic.h> | |||||
#include <__config> | #include <__config> | ||||
#include <__random/is_valid.h> | #include <__random/is_valid.h> | ||||
#include <__random/uniform_real_distribution.h> | #include <__random/uniform_real_distribution.h> | ||||
#include <cmath> | #include <cmath> | ||||
#include <iosfwd> | #include <iosfwd> | ||||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) | ||||
# pragma GCC system_header | # pragma GCC system_header | ||||
▲ Show 20 Lines • Show All 209 Lines • Show Last 20 Lines |