Changeset 68 for cpp/gdk/gdktest.cpp


Ignore:
Timestamp:
01/31/11 23:18:54 (13 years ago)
Author:
Maciej Komosinski
Message:

added missing sources; updated sources for compatibility with vs2008 and added project files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/gdk/gdktest.cpp

    r66 r68  
    185185printf("Neuro::getClass() gives you information about basic characteristic\n"
    186186       "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 ");
     187printf("For the current object we can learn that it supports ");
    188188if (cl->getPreferredInputs()<0) printf("any number of inputs");
    189189  else if (cl->getPreferredInputs()==0) printf("no inputs");
    190190  else printf("%d inputs",cl->getPreferredInputs());
    191191printf(" (getPreferredInputs()) ");
    192 printf(cl->getPreferredOutput()?"and provides meaningful output signal (getPreferredOutput==1).\n":"and doesn't provide useful output signal (getPreferredOutput==0).\n");
     192printf(cl->getPreferredOutput()?"and provides meaningful output signal (getPreferredOutput()==1).\n":"and doesn't provide useful output signal (getPreferredOutput()==0).\n");
    193193
    194194SyntParam p=n->classProperties();
     
    335335       "Hints:\n"
    336336       "  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"
    338338       "     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"
    341341       "\n");
    342342return 0;
Note: See TracChangeset for help on using the changeset viewer.