1 /*
2  Copyright (C) 2008 Georg Madsen
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 #include "util.h"
10 
11 #define XC_GGA_C_GAPLOC  556 /* Gaploc */
12 
13 #include "decl_gga.h"
14 #include "maple2c/gga_exc/gga_c_gaploc.c"
15 #include "work_gga.c"
16 
17 #ifdef __cplusplus
18 extern "C"
19 #endif
20 const xc_func_info_type xc_func_info_gga_c_gaploc = {
21   XC_GGA_C_GAPLOC,
22   XC_CORRELATION,
23   "Gaploc",
24   XC_FAMILY_GGA,
25   {&xc_ref_Fabiano2014_2016, NULL, NULL, NULL, NULL},
26   XC_FLAGS_3D | MAPLE2C_FLAGS,
27   1e-18,
28   {0, NULL, NULL, NULL, NULL},
29   NULL, NULL,
30   NULL, work_gga, NULL
31 };
32