00001 /******************************************************************************** 00002 * Neural Network Framework. * 00003 * Copyright (C) 2005-2008 Gianluca Massera <emmegian@yahoo.it> * 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 2 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, write to the Free Software * 00017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * 00018 ********************************************************************************/ 00019 00020 // --- You can't include it directly 00021 #ifndef TYPES_INCLUDES 00022 #error "You can't include primtypes.h directly; Instead, You have to include types.h" 00023 // --- follow define avoid to get a lot of understandable error ! 00024 #define PRIMTYPES_H 00025 #endif 00026 00027 #ifndef PRIMTYPES_H 00028 #define PRIMTYPES_H 00029 00035 namespace nnfw { 00036 00038 typedef unsigned int u_int; 00039 00041 #ifndef NNFW_DOUBLE_PRECISION 00042 typedef float Real; 00043 #else 00044 typedef double Real; 00045 #endif 00046 00047 } 00048 00049 #endif 00050