Changeset 145 for cpp/frams/_demos/neuro_layout_test.cpp
- Timestamp:
- 02/26/14 20:21:22 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/_demos/neuro_layout_test.cpp
r135 r145 3 3 // Refer to http://www.framsticks.com/ for further information. 4 4 5 #include <frams/genetics/geno.h>6 5 #include <frams/virtfile/stdiofile.h> 7 6 #include <frams/util/sstringutils.h> 8 #include <frams/genetics/ defgenoconv.h>7 #include <frams/genetics/preconfigured.h> 9 8 #include <frams/model/model.h> 10 9 #include <frams/errmgr/stdouterr.h> … … 20 19 loader_test "data/walking.gen" "Walking Lizard" | neuro_layout_test - 21 20 */ 22 23 StdoutErrorHandler err; //redirect model-related errors to stdout24 DefaultGenoConvManager gcm; //without this object the application would only handle "format 0" genotypes25 21 26 22 // stl is fun? ;-) ForwardIterator implementation for element coordinates (required by min_element/max_element) … … 87 83 int main(int argc,char*argv[]) 88 84 { 85 StdoutErrorHandler err;//the default ErrorHandler constructor automatically registers this object to receive framsg messages (and in this case, redirect them to standard output) 86 PreconfiguredGenetics genetics; 87 89 88 if (argc<=1) 90 89 {
Note: See TracChangeset
for help on using the changeset viewer.