#ifndef __NEURAL__ #define __NEURAL__ #include #include typedef struct Layer { double *weights; double (*activation)(double x); size_t neurons; } Layer; #endif