00001 /**************************************************************************** 00002 * CQEDSimulator, a dynamic library for C/C++ programs 00003 * Copyright (C) 2009 Stefano Carrazza. All rights reserved. 00004 * 00005 * This program is free software: you can redistribute it and/or modify 00006 * it under the terms of the GNU General Public License as published by 00007 * the Free Software Foundation, either version 3 of the License, or 00008 * (at your option) any later version. 00009 * 00010 * This program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00017 *****************************************************************************/ 00019 00020 #ifndef INCLUDES_H 00021 #define INCLUDES_H 00022 00023 #include <iostream> 00024 #include <stdio.h> 00025 #include <vector> 00026 #include <cmath> 00027 #include <cassert> 00028 #include <iomanip> 00029 #include <fstream> 00030 #include <ctime> 00031 00032 #ifdef MATLAB 00033 #include "mex.h" 00034 #include "mat.h" 00035 #endif 00036 00037 #ifdef LAPACKPP 00038 #define LA_COMPLEX_SUPPORT 00039 #include "gmc.h" 00040 #include "f2c.h" 00041 #include "laslv.h" 00042 #include "lavli.h" 00043 #include "blas1pp.h" 00044 #include "blas2pp.h" 00045 #include "blas3pp.h" 00046 #endif 00047 00048 using namespace std; 00049 00050 #endif