| 42 | } |
| 43 | |
| 44 | static int seedExtract3(unsigned long long &seed) { |
| 45 | int v = int(seed%3); |
| 46 | seed /= 3; |
| 47 | return v; |
| 48 | } |
| 49 | |
| 50 | static EdgeColor initColor(unsigned long long &seed) { |
| 51 | static const EdgeColor colors[3] = { CYAN, MAGENTA, YELLOW }; |
no outgoing calls
no test coverage detected