3
0
mirror of https://github.com/triqs/dft_tools synced 2024-07-11 13:53:47 +02:00
dft_tools/test/c++/converters/vasp/reorder_flag.cpp
Alexander Hampel 11d394fd5b synchronize dfttools with app4triqs structure
* moved the plovasp C++ code to c++/triqs_dft_tools/converters/vasp
* added global header triqs_dft_tools/triqs_dft_tools.hpp
* python dir based on single cmakelist file
* registered C++ tests for plovasp
* corrected imports for py3 tests for plovasp
* corrected block order in sigma_from_file and srvo3_Gloc
* exchanged ref files for sigma_from_file, srvo3_Gloc, SrVO3.ref.h5
* moved vasp converter bash scripts from dir shells to bin dir
2020-06-10 17:45:53 +02: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;
}