MCPcopy Create free account
hub / github.com/Arash-codedev/openGA / MySolution

Class MySolution

examples/so-1/example_so1.cpp:9–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7#include "openGA.hpp"
8
9struct 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
23struct MyMiddleCost
24{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected