Revert "[libc] Use best-fit binary trie to make malloc logarithmic" (#117065)
[llvm-project.git] / libcxx / include / __random / ranlux.h
blob952afde91b109422f80284a8610910c0673e7d0b
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___RANDOM_RANLUX_H
10 #define _LIBCPP___RANDOM_RANLUX_H
12 #include <__config>
13 #include <__random/discard_block_engine.h>
14 #include <__random/subtract_with_carry_engine.h>
15 #include <cstdint>
17 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
18 # pragma GCC system_header
19 #endif
21 _LIBCPP_BEGIN_NAMESPACE_STD
23 typedef subtract_with_carry_engine<uint_fast32_t, 24, 10, 24> ranlux24_base;
24 typedef subtract_with_carry_engine<uint_fast64_t, 48, 5, 12> ranlux48_base;
26 typedef discard_block_engine<ranlux24_base, 223, 23> ranlux24;
27 typedef discard_block_engine<ranlux48_base, 389, 11> ranlux48;
29 _LIBCPP_END_NAMESPACE_STD
31 #endif // _LIBCPP___RANDOM_RANLUX_H