This commit is contained in:
Gustav Louw 2018-03-29 12:54:23 -07:00
parent de6f6f8aca
commit aac310890d

6
Tinn.h
View File

@ -12,10 +12,10 @@ typedef struct
}
Tinn;
double xttrain(Tinn, double* in, double* tg, double rate);
extern double xttrain(Tinn, double* in, double* tg, double rate);
Tinn xtbuild(int nips, int nops, int nhid);
extern Tinn xtbuild(int nips, int nops, int nhid);
void xtfree(Tinn);
extern void xtfree(Tinn);
#endif