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