1 /*
2  Copyright (C) 2006-2007 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 #include "util.h"
10 
11 #define XC_LDA_XC_TIH   599   /* Neural network LDA from Tozer et al */
12 
13 #define XC_NO_EXC
14 #include "decl_lda.h"
15 #include "maple2c/lda_vxc/lda_xc_tih.c"
16 #include "work_lda.c"
17 
18 #ifdef __cplusplus
19 extern "C"
20 #endif
21 const xc_func_info_type xc_func_info_lda_xc_tih = {
22   XC_LDA_XC_TIH,
23   XC_EXCHANGE_CORRELATION,
24   "Neural network LDA from Tozer et al",
25   XC_FAMILY_LDA,
26   {&xc_ref_Tozer1996_9200, NULL, NULL, NULL, NULL},
27   XC_FLAGS_3D | MAPLE2C_FLAGS,
28   5e-24,
29   {0, NULL, NULL, NULL, NULL},
30   NULL, NULL,
31   work_lda, NULL, NULL
32 };
33