/* genetic_algorithm.h -- This belongs to gneural_network gneural_network is the GNU package which implements a programmable neural network. Copyright (C) 2016 Jean Michel Sellier This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #ifndef GENETIC_ALGORITHM_H #define GENETIC_ALGOTITHM_H #include "includes.h" #include "defines.h" #include "structures.h" #include "rnd.h" #include "error.h" extern int NNUM; extern int ERROR_TYPE; extern double WMIN; extern double WMAX; extern neuron NEURON[]; void genetic_algorithm(int,int,int,double,double); void genetic_algorithm2(int,int,int,double,double); #endif