| 271 | } |
| 272 | |
| 273 | ufo::Color randomColor() |
| 274 | { |
| 275 | static std::random_device rd; |
| 276 | static std::mt19937 gen(rd()); |
| 277 | static std::uniform_int_distribution<ufo::color_t> dis(0, -1); |
| 278 | return {dis(gen), dis(gen), dis(gen)}; |
| 279 | } |
| 280 | |
| 281 | template <class Map> |
| 282 | void cluster(Map& map, Clustering const& clustering) |
nothing calls this directly
no outgoing calls
no test coverage detected