1 /*
2  Copyright (C) 2006-2009 M.A.L. Marques
3 
4  This Source Code Form is subject to the terms of the Mozilla Public
5  License, v. 2.0. If a copy of the MPL was not distributed with this
6  file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 */
8 
9 
10 #include "util.h"
11 
12 #define XC_MGGA_X_2D_PRHG07         210   /* Pittalis, Rasanen, Helbig, Gross Exchange Functional */
13 
14 #include "decl_mgga.h"
15 #include "maple2c/mgga_exc/mgga_x_2d_prhg07.c"
16 #include "work_mgga.c"
17 
18 #ifdef __cplusplus
19 extern "C"
20 #endif
21 const xc_func_info_type xc_func_info_mgga_x_2d_prhg07 = {
22   XC_MGGA_X_2D_PRHG07,
23   XC_EXCHANGE,
24   "Pittalis-Rasanen-Helbig-Gross 2007",
25   XC_FAMILY_MGGA,
26   {&xc_ref_Pittalis2007_235314, NULL, NULL, NULL, NULL},
27   XC_FLAGS_DEVELOPMENT | XC_FLAGS_3D | XC_FLAGS_NEEDS_LAPLACIAN | MAPLE2C_FLAGS,
28   1.0e-12,
29   {0, NULL, NULL, NULL, NULL},
30   NULL, NULL,
31   NULL, NULL, work_mgga,
32 };
33