// Program to test several EO-ES features #ifdef _MSC_VER #pragma warning(disable:4786) #endif #include #include #include using namespace std; // Operators we are going to test #include #include #include #include // Several EOs #include main(int argc, char *argv[]) { eoString aString("123456"); eoAtomCreep creeper; eoAtomMutation< eoString > mutator( creeper, 0.5 ); cout << "Before aString " << aString; mutator( aString); cout << " after mutator " << aString; return 0; // to avoid VC++ complaints }