3
0
mirror of https://github.com/triqs/dft_tools synced 2024-06-29 16:34:53 +02:00
dft_tools/c++/plovasp/atm/test/weights1.cpp
Oleg E. Peil 88dc1eeb78 Added a simple C-test of the ATM library
The tests are build to be executed by CMake test functionality.
2016-03-09 18:56:59 +01:00

28 lines
459 B
C++

#include "testing.hpp"
int main()
{
double e[4], en, res[4], r_should[4];
int inds[4];
int flag;
e[0] = -1.5;
e[1] = -1.309017;
e[2] = -1.0;
e[3] = -0.5;
en = -0.55;
printf("\n Test case 4\n\n");
dos_corner_weights(en, e, inds, res);
r_should[0] = 0.000309016992226;
r_should[1] = 0.000381966005939;
r_should[2] = 0.000618033984453;
r_should[3] = 0.017232002550965;
if(check_weights_result(res, r_should)) return 1;
}