- Timestamp:
- 04/18/15 16:42:59 (10 years ago)
- Location:
- cpp/frams/_demos
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/geno_test.cpp
r348 r359 6 6 #include <frams/util/sstringutils.h> 7 7 #include <frams/genetics/preconfigured.h> 8 #include <frams/errmgr/stdouterr.h> 8 9 9 10 /** … … 17 18 { 18 19 PreconfiguredGenetics genetics; 20 StdoutErrorHandler stdouterr; //comment this object out to mute error/warning messages 19 21 20 22 if (argc<=1) -
cpp/frams/_demos/simil_test.cpp
r352 r359 22 22 23 23 Parameters: 24 <genotypesFile> name of a file with genotypes (only f1 format)24 <genotypesFile> name of a file with genotypes 25 25 <w_dP> weight of the difference in the number of parts 26 26 <w_dDEG> weight of the difference in degrees of matched parts 27 27 <w_dNEU> weight of the difference in neurons of matched parts 28 <w_dGEO> weight of the distance ofmatched parts28 <w_dGEO> weight of the distance between matched parts 29 29 30 30 Switches: … … 41 41 int main(int argc, char *argv[]) 42 42 { 43 //StdoutErrorHandler err; //?TODO43 StdoutErrorHandler stdouterr; //comment this object out to mute error/warning messages 44 44 typedef double *pDouble; 45 45 int iCurrParam = 0; // index of the currently processed parameter
Note: See TracChangeset
for help on using the changeset viewer.