Programa para el testeo de algunas funciones de la biblioteca.
- Autor
- Fernando Pujaico Rivera
- Fecha
- 01-01-2020
Este programa solo hace una prueba simple de las funciones que hice mas al tun tun.
#include <stdlib.h>
#include <math.h>
#include <pds/pdsra.h>
#include <pds/pdsnn.h>
int main(int argc, char** argv)
{
if(argc==1) return EXIT_FAILURE;
if(MLayer==NULL) return EXIT_FAILURE;
printf("\n");
PdsVector *X = pds_vector_new(Nin);
PdsVector *Y = pds_vector_new(Nout);
if( (X==NULL)||(Y==NULL) ) return EXIT_FAILURE;
for(i=0;i<Ntests;i++)
{
}
printf("\n");
for(i=0;i<Ntests;i++)
{
}
printf("\n");
pds_vector_free(X);
pds_vector_free(Y);
return EXIT_SUCCESS;
}