mirror of
https://github.com/boostorg/math.git
synced 2026-01-26 06:42:12 +00:00
Added elliptic integrals plus tests (no docs yet). Added some refs to Remez docs. Added comment about Erlang=gamma distribution. [SVN r3559]
19 lines
398 B
C++
19 lines
398 B
C++
// Copyright John Maddock 2006.
|
|
// Use, modification and distribution are subject to the
|
|
// Boost Software License, Version 1.0. (See accompanying file
|
|
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#include "instantiate.hpp"
|
|
|
|
extern void other_test();
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
if(argc > 10000)
|
|
{
|
|
instantiate(double(0));
|
|
other_test();
|
|
}
|
|
}
|
|
|