| 855 | inter->setLocalValue(std::string("rand_last"), r); |
| 856 | return r; |
| 857 | } |
| 858 | static long long random(long long max, long long min = 0) |
| 859 | { |
| 860 | if (min > max) std::swap(min, max); |
| 861 | return min + (rand() % (max - min + 1)); |
| 862 | } |
| 863 | }; |
nothing calls this directly
no test coverage detected