N.A.R.I.A.
Artificial Intelligence: Recurrent Asymmetric Networks
FAQ
Frequently asked questions about the N.A.R.I.A. project
Q: Why did you call the project N.A.R.I.A. which is the reverse of it's meaning, and not A.I.R.A.N.?
A: Because it sounds better ;)
Q: I downloaded the latest source code, but compile fails on main.c
A: You have to have both the SDL and SDL_gfx libraries installed in order for the test app code to compile. The latest source code should check whether the libraries have been correctly installed with ./configure
Q: I have both SDL and SDL_gfx installed but it still does not compile!
A: Your SDL_gfx install may be buggy. It expects SDL.h to be in /usr/include/ while it really is in /usr/include/SDL/ You can try 2 things:
Either copy the contents of /usr/include/SDL into /usr/include or open /usr/local/include/SDL_gfxPrimitives.h and replace #include <SDL.h> by
#include <SDL/SDL.h>. The latest source code should have a fix for this, so you won't need to do any of this.