| 3 | } |
| 4 | |
| 5 | void assert_equal(point a, point b) { |
| 6 | assert_nearly_equal(real(a), real(b)); |
| 7 | assert_nearly_equal(imag(a), imag(b)); |
| 8 | } |
| 9 | |
| 10 | void test() { |
| 11 | /* Field testing: Kattis pointinpolygon, Kattis forest, Kattis polygongame, UVa 11030, UVa 634 */ |
nothing calls this directly
no test coverage detected