- Timestamp:
- 11/29/15 18:04:54 (9 years ago)
- Location:
- cpp/frams
- Files:
-
- 2 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 { -
cpp/frams/model/similarity/simil_model.cpp
r362 r451 1135 1135 // UWAGA! Uwzględniamy tylko te Parts, które nie są jeszcze dopasowane 1136 1136 // (reszta to byłaby po prostu strata czasu). 1137 int iDeg, iNeu, iNIt; // ilościowe określenie różnic stopnia, liczby neuronów i połączeń Parts 1137 int iDeg, iNeu; // ilościowe określenie różnic stopnia, liczby neuronów i połączeń Parts 1138 //int iNIt; 1138 1139 double dGeo; // ilościowe określenie różnic geometrycznych pomiędzy Parts 1139 1140 // indeksy konkretnych Parts - indeksy sa ZERO-BASED, choć właściwy dostep … … 1171 1172 - m_aDegrees[1][ aiKoniecPierwszejGrupy[1] + j ][1]); 1172 1173 1173 iNIt = abs(m_aDegrees[0][ aiKoniecPierwszejGrupy[0] + i ][2] 1174 - m_aDegrees[1][ aiKoniecPierwszejGrupy[1] + j ][2]); 1174 //iNit currently is not a component of distance measure 1175 //iNIt = abs(m_aDegrees[0][ aiKoniecPierwszejGrupy[0] + i ][2] 1176 // - m_aDegrees[1][ aiKoniecPierwszejGrupy[1] + j ][2]); 1175 1177 1176 1178 iNeu = abs(m_aDegrees[0][ aiKoniecPierwszejGrupy[0] + i ][3]
Note: See TracChangeset
for help on using the changeset viewer.