SHOGUN
4.2.0
Main Page
Related Pages
Modules
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
src
shogun
lib
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__
complex128_t
std::complex< float64_t > complex128_t
Definition:
common.h:67
memory.h
index_t
int32_t index_t
Definition:
common.h:62
config.h
float64_t
double float64_t
Definition:
common.h:50
floatmax_t
long double floatmax_t
Definition:
common.h:51
STRING_LEN
#define STRING_LEN
Definition:
common.h:55
float32_t
float float32_t
Definition:
common.h:49
machine_int_t
int machine_int_t
Definition:
common.h:59
string_t
char string_t[STRING_LEN]
Definition:
common.h:57
SHOGUN
Machine Learning Toolbox - Documentation