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_inds.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
399 B
C++

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