mirror of https://github.com/codeplea/genann
Added C++ guards.
This commit is contained in:
parent
850f080045
commit
b6da170fa7
6
genann.h
6
genann.h
|
@ -29,6 +29,9 @@
|
|||
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#ifndef GENANN_RANDOM
|
||||
/* We use the following for uniform random numbers between 0 and 1.
|
||||
|
@ -99,5 +102,8 @@ double genann_act_sigmoid_cached(double a);
|
|||
double genann_act_threshold(double a);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /*__GENANN_H__*/
|
||||
|
|
Loading…
Reference in New Issue