| 34 | } |
| 35 | |
| 36 | void test() { |
| 37 | int TESTS = 1000, MAX_N = 400, MAX_M = 300; |
| 38 | for(int i = 0; i < TESTS; ++i) { |
| 39 | test_rand(rng() % MAX_N, rng() % MAX_M, rng() % 100 + 1); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | // void test_rand(int N, int M, int sparse) { |
| 44 | // bipartite_graph g(N, M); |
nothing calls this directly
no test coverage detected