ian@0: // Copyright 2011, Ian Hobson. ian@0: // ian@0: // This file is part of gpsynth. ian@0: // ian@0: // gpsynth is free software: you can redistribute it and/or modify ian@0: // it under the terms of the GNU General Public License as published by ian@0: // the Free Software Foundation, either version 3 of the License, or ian@0: // (at your option) any later version. ian@0: // ian@0: // gpsynth is distributed in the hope that it will be useful, ian@0: // but WITHOUT ANY WARRANTY; without even the implied warranty of ian@0: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ian@0: // GNU General Public License for more details. ian@0: // ian@0: // You should have received a copy of the GNU General Public License ian@0: // along with gpsynth in the file COPYING. ian@0: // If not, see http://www.gnu.org/licenses/. ian@0: ian@0: // commonly used external libraries ian@0: // code should compile correctly without using precompiled header ian@0: ian@0: #include "boost/algorithm/string/replace.hpp" ian@0: #include "boost/bind.hpp" ian@0: #include "boost/date_time/posix_time/posix_time.hpp" ian@0: #define BOOST_FILESYSTEM_NO_DEPRECATED ian@0: #include "boost/filesystem.hpp" ian@0: #include "boost/foreach.hpp" ian@0: #include "boost/format.hpp" ian@0: #include "boost/function.hpp" ian@0: #include "boost/graph/adjacency_list.hpp" ian@0: #include "boost/graph/graphviz.hpp" ian@0: #include "boost/graph/random.hpp" ian@0: #include "boost/graph/topological_sort.hpp" ian@0: #include "boost/lexical_cast.hpp" ian@0: #include "boost/math/special_functions/fpclassify.hpp" ian@0: #include "boost/random/mersenne_twister.hpp" ian@0: #include "boost/random/normal_distribution.hpp" ian@0: #include "boost/random/variate_generator.hpp" ian@0: #include "boost/shared_array.hpp" ian@0: #include "boost/shared_ptr.hpp" ian@0: #include "boost/thread.hpp" ian@0: #include "boost/tuple/tuple.hpp" ian@0: ian@0: #include "fftw3.h" ian@0: ian@0: #include "json.h" ian@0: ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include ian@0: #include