| 56 | } |
| 57 | |
| 58 | string SideString(Side s) { |
| 59 | switch (s) { |
| 60 | case Side::kLeft: |
| 61 | return "Left"; |
| 62 | case Side::kRight: |
| 63 | return "Right"; |
| 64 | default: |
| 65 | LOG(FATAL) << "Unknown side " << static_cast<int32>(s); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | // -- AlgorithmConfig |
| 70 |
no outgoing calls
no test coverage detected