| 1 | double curtime() { |
| 2 | return static_cast<double>(clock()) / CLOCKS_PER_SEC; } |
| 3 | int simulated_annealing(int n, double seconds) { |
| 4 | uniform_real_distribution<double> randfloat(0.0, 1.0); |
| 5 | uniform_int_distribution<int> randint(0, n - 2); |
no outgoing calls
no test coverage detected