SHOGUN  4.2.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
common.h
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * Written (W) 1999-2009 Soeren Sonnenburg
8  * Written (W) 1999-2008 Gunnar Raetsch
9  * Written (W) 2006 Fabio De Bona
10  * Written (W) 2006 Konrad Rieck
11  * Written (W) 2006-2008 Christian Gehl
12  * Copyright (C) 1999-2009 Fraunhofer Institute FIRST and Max-Planck-Society
13  */
14 
15 #ifndef __COMMON_H__
16 #define __COMMON_H__
17 
18 #include <stdlib.h>
19 #include <stdio.h>
20 #include <sys/types.h>
21 
22 #include <shogun/lib/config.h>
23 
28 
29 #include <stdint.h>
30 
31 /* No feature test:
32  * ISO C99: 7.8 Format conversion of integer types <inttypes.h>
33  *
34  * If not supported make sure that your development environment is
35  * supporting ISO C99!
36  */
37 #ifdef __STDC_FORMAT_MACROS
38 #include <inttypes.h>
39 #else
40 #define __STDC_FORMAT_MACROS 1
41 #include <inttypes.h>
42 #undef __STDC_FORMAT_MACROS
43 #endif
44 
49 typedef float float32_t;
50 typedef double float64_t;
51 typedef long double floatmax_t;
52 
54 
55 #define STRING_LEN 256
56 #define STRING_LEN_STR "256"
57 typedef char string_t[STRING_LEN];
58 
59 typedef int machine_int_t;
60 
62 typedef int32_t index_t;
63 
65 #include <complex>
66 
67 typedef std::complex<float64_t> complex128_t;
68 
69 #include <shogun/lib/memory.h>
70 #endif //__COMMON_H__
std::complex< float64_t > complex128_t
Definition: common.h:67
int32_t index_t
Definition: common.h:62
double float64_t
Definition: common.h:50
long double floatmax_t
Definition: common.h:51
#define STRING_LEN
Definition: common.h:55
float float32_t
Definition: common.h:49
int machine_int_t
Definition: common.h:59
char string_t[STRING_LEN]
Definition: common.h:57

SHOGUN Machine Learning Toolbox - Documentation