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/reorder_flag.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

24 lines
327 B
C++

#include "testing.hpp"
int main()
{
double e[4], en;
int inds[4];
int flag, flag_should;
e[0] = -1.5;
e[1] = -1.309017;
e[2] = -1.0;
e[3] = -0.5;
en = -0.55;
printf("\n Test case 1\n\n");
flag = dos_reorder(en, e, inds);
flag_should = 3;
if(check_reorder_flag(flag, flag_should)) return 1;
}