Changeset 451 for cpp/frams/_demos
- Timestamp:
- 11/29/15 18:04:54 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/simil_test.cpp
r391 r451 51 51 // too few parameters 52 52 printf("Too few parameters!\n"); 53 printf("Command line: [-names] <genotypesFile> < matchType> <w_dP> <w_dDEG> <w_dNEU> <w_dGEO> <ifFUZZY>\n\n");53 printf("Command line: [-names] <genotypesFile> <w_dP> <w_dDEG> <w_dNEU> <w_dGEO> \n\n"); 54 54 printf("Parameters:\n"); 55 printf(" <genotypesFile> name of a file with genotypes (only f1 format is allowed)\n");55 printf(" <genotypesFile> name of a file with genotypes\n"); 56 56 printf(" <w_dP> weight of the difference in the number of parts\n"); 57 57 printf(" <w_dDEG> weight of the difference in degrees of matched parts\n"); … … 103 103 if (nResult != 1) 104 104 { 105 // <w_d P> is not a number -- error105 // <w_dX> is not a number -- error 106 106 printf("%s", params[i]); 107 107 printf(" should be a number\n"); … … 110 110 else 111 111 { 112 // <w_d P> is a number; check if nonnegative112 // <w_dX> is a number; check if nonnegative 113 113 if (M.m_adFactors[ i ] < 0.0) 114 114 {
Note: See TracChangeset
for help on using the changeset viewer.