mirror of
https://github.com/boostorg/math.git
synced 2025-05-11 21:33:52 +00:00
16 lines
421 B
C++
16 lines
421 B
C++
// Copyright John Maddock, 2023
|
|
// Use, modification and distribution are subject to the
|
|
// Boost Software License, Version 1.0. (See accompanying file
|
|
// LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
// https://github.com/scipy/scipy/issues/19726#issuecomment-1866143568
|
|
|
|
#include <complex.h>
|
|
#include <boost/math/special_functions.hpp>
|
|
#include <boost/math/distributions.hpp>
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|