Changeset 68 for cpp/gdk/gdktest.cpp
- Timestamp:
- 01/31/11 23:18:54 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/gdk/gdktest.cpp
r66 r68 185 185 printf("Neuro::getClass() gives you information about basic characteristic\n" 186 186 "of the class, that can be analyzed automatically.\n"); 187 printf("For the current object we can get know, that this object likes to have");187 printf("For the current object we can learn that it supports "); 188 188 if (cl->getPreferredInputs()<0) printf("any number of inputs"); 189 189 else if (cl->getPreferredInputs()==0) printf("no inputs"); 190 190 else printf("%d inputs",cl->getPreferredInputs()); 191 191 printf(" (getPreferredInputs()) "); 192 printf(cl->getPreferredOutput()?"and provides meaningful output signal (getPreferredOutput ==1).\n":"and doesn't provide useful output signal (getPreferredOutput==0).\n");192 printf(cl->getPreferredOutput()?"and provides meaningful output signal (getPreferredOutput()==1).\n":"and doesn't provide useful output signal (getPreferredOutput()==0).\n"); 193 193 194 194 SyntParam p=n->classProperties(); … … 335 335 "Hints:\n" 336 336 " 1. You can redirect output: gdktest >filename.txt\n" 337 " 2. Each run can yield different results because some\n"337 " 2. Each run can yield different results, because some\n" 338 338 " values are randomly generated.\n" 339 " 3. Application will use custom genotype passed as\n"340 " a commandline parameter: gdktest X \n"339 " 3. This application will use custom genotype passed as\n" 340 " a commandline parameter: gdktest XX\n" 341 341 "\n"); 342 342 return 0;
Note: See TracChangeset
for help on using the changeset viewer.