cosmotool/sample/test_special.cpp

13 lines
227 B
C++
Raw Normal View History

2020-10-03 20:17:07 +02:00
#include <iostream>
#include "special_math.hpp"
int main()
{
std::cout << CosmoTool::log1p_exp(2.0) << std::endl;
std::cout << CosmoTool::log_modified_bessel_first_kind(100.0, 0.1) << std::endl;
return 0;
}