CX/src/main.c

28 lines
359 B
C
Raw Normal View History

// Include standard headers
#include <stdio.h>
#include <stdlib.h>
// Include project headers
#include <cx.h>
int
main(void) {
GLFWwindow *window;
2024-07-06 16:04:24 +00:00
Neural_Network *nn;
int retval;
if (cx_glinit(&window)) {
return -1;
}
2024-07-06 16:04:24 +00:00
if (cx_nninit(&nn)) {
return -1;
}
2024-10-19 09:32:39 +00:00
retval = cx_run(window, nn);
2023-12-13 09:56:21 +00:00
return retval;
}