blob: 15141049fa405b59a630e265423c080727363f08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/* -*- c++ -*- */
/*
* Copyright 2020 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_GR_INTEGER_MATH_H
#define INCLUDED_GR_INTEGER_MATH_H
#if (__cplusplus >= 201703L)
// Prefer C++17 goodness.
#include <numeric>
#define GR_GCD std::gcd
#define GR_LCM std::lcm
#elif (BOOST_VERSION >= 105800)
// Fallback: newer boost API (introduced in Boost 1.58.0).
#include <boost/integer/common_factor_rt.hpp>
#define GR_GCD boost::integer::gcd
#define GR_LCM boost::integer::lcm
#else
// Last resort: old deprecated boost API.
#include <boost/math/common_factor_rt.hpp>
#define GR_GCD boost::math::gcd
#define GR_LCM boost::math::lcm
#endif /* __cplusplus >= 201703L */
#endif /* INCLUDED_GR_INTEGER_MATH_H */
|