| 36 | int beg_y, end_y; |
| 37 | |
| 38 | GraphSubset(int max_x, int max_y): |
| 39 | beg_x(0), end_x(max_x), |
| 40 | beg_y(0), end_y(max_y) |
| 41 | { |
| 42 | |
| 43 | } |
| 44 | |
| 45 | |
| 46 | GraphSubset(std::pair<int, int> range_x, std::pair<int, int> range_y): |
nothing calls this directly
no outgoing calls
no test coverage detected