Changeset View
Changeset View
Standalone View
Standalone View
libcxx/include/__random/cauchy_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_CAUCHY_DISTRIBUTION_H | #ifndef _LIBCPP___RANDOM_CAUCHY_DISTRIBUTION_H | ||||
#define _LIBCPP___RANDOM_CAUCHY_DISTRIBUTION_H | #define _LIBCPP___RANDOM_CAUCHY_DISTRIBUTION_H | ||||
#include <__cmath/angular_functions.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 <iosfwd> | #include <iosfwd> | ||||
#include <limits> | #include <limits> | ||||
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) | ||||
# pragma GCC system_header | # pragma GCC system_header | ||||
#endif | #endif | ||||
_LIBCPP_PUSH_MACROS | _LIBCPP_PUSH_MACROS | ||||
▲ Show 20 Lines • Show All 141 Lines • Show Last 20 Lines |