Changeset 288 for cpp/frams/_demos
- Timestamp:
- 01/06/15 01:47:03 (10 years ago)
- Location:
- cpp/frams/_demos
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/genomanipulation.cpp
r287 r288 22 22 void printNiceBanner(const char* title) 23 23 { 24 printf(" ######################################## \n"25 " ## ##\n"26 " ## %-3 2s ##\n"27 " ## ##\n"28 " ######################################## \n",title);24 printf(" #############################################\n" 25 " ## ##\n" 26 " ## %-37s ##\n" 27 " ## ##\n" 28 " #############################################\n",title); 29 29 } 30 30 void printProperties(Param &pi) … … 268 268 { 269 269 srand(time(0)); 270 printNiceBanner("Welcome to Genotype manipulation test application!");270 printNiceBanner("Welcome to Genotype Manipulation App!"); 271 271 272 272 findingConverters(); … … 347 347 printf("\n######### THE END ###########\n\n" 348 348 "Hints:\n" 349 " 1. You can redirect output: g dk_test>filename.txt\n"349 " 1. You can redirect output: genomanipulation >filename.txt\n" 350 350 " 2. Each run can yield different results, because some\n" 351 351 " values are randomly generated.\n" 352 352 " 3. This application will use custom genotype passed as\n" 353 " a commandline parameter: g dk_testXX\n"353 " a commandline parameter: genomanipulation XX\n" 354 354 "\n"); 355 355 return 0; -
cpp/frams/_demos/neuro_test.cpp
r286 r288 16 16 */ 17 17 18 #ifndef GDK_WITHOUT_FRAMS18 #ifndef SDK_WITHOUT_FRAMS 19 19 #include <frams/mech/creatmechobj.h> 20 20 int CreatMechObject::modeltags_id=0;
Note: See TracChangeset
for help on using the changeset viewer.