Skip to content

Instantly share code, notes, and snippets.

@mdakram28
Created May 26, 2014 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdakram28/2adad9409926cb03912a to your computer and use it in GitHub Desktop.
Save mdakram28/2adad9409926cb03912a to your computer and use it in GitHub Desktop.
for(int i=0;i<9;i++)
{
layerFiles[i] = new File(l+(i+1)+".nodes");
if(!layerFiles[i].exists())
{
try{
layerFiles[i].createNewFile();
}
catch(Exception e)
{
System.out.println(e);
}
}
}
//loadMind();
makeNewMind();evaluate();saveMind();
begin.subNodes="100000000,010000000,001000000,000100000,000010000,000001000,000000100,000000010,000000001,";
begin.extractNodes();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment