LoveBrains  1.0.0
tools.h
1 /*
2 ** tools.h for GANNEngine in /home/robin_f/Programming/Git/CPP/GANNEngine
3 **
4 ** Made by Guillaume ROBIN
5 ** Login <robin_f@epitech.eu>
6 **
7 ** Started on Thu Jul 9 14:00:18 2015 Guillaume ROBIN
8 ** Last update Sun Jul 12 00:32:20 2015 Guillaume ROBIN
9 */
10 
11 #ifndef TOOLS_H_
12 # define TOOLS_H_
13 
14 namespace GANN
15 {
16  /*
17  ** Maths.
18  */
19  double Sigmoid(double x);
20  double Threshold(double x);
21  double RandomDouble(double min, double max);
22  int RandomInt(int min, int max);
23 }
24 
25 #endif /* !TOOLS_H_ */
Contains all the objects that provide the management for the genetic algorithm with neural networks...
Definition: ann_exception.h:16