| 7 | #include "openGA.hpp" |
| 8 | |
| 9 | struct MySolution |
| 10 | { |
| 11 | double x; |
| 12 | double y; |
| 13 | |
| 14 | std::string to_string() const |
| 15 | { |
| 16 | return |
| 17 | "{x:"+std::to_string(x)+ |
| 18 | ", y:"+std::to_string(y)+ |
| 19 | "}"; |
| 20 | } |
| 21 | }; |
| 22 | |
| 23 | struct MyMiddleCost |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected