1/*
2 *                This source code is part of
3 *
4 *                     E  R  K  A  L  E
5 *                             -
6 *                       DFT from Hel
7 *
8 * Written by Susi Lehtola, 2010-2011
9 * Copyright (c) 2010-2011, Susi Lehtola
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 */
16
17#include "global.h"
18
19#include <algorithm>
20#include <armadillo>
21#include <cstdio>
22#include <cfloat>
23
24#include "basis.h"
25#include "broyden.h"
26#include "elements.h"
27#include "dftfuncs.h"
28#include "dftgrid.h"
29#include "diis.h"
30#include "guess.h"
31#include "linalg.h"
32#include "mathf.h"
33#include "properties.h"
34#include "scf.h"
35#include "stringutil.h"
36#include "timer.h"
37#include "trrh.h"
38
39extern "C" {
40#include <gsl/gsl_poly.h>
41}
42