(pD,pG)
| 118 | return 0 |
| 119 | |
| 120 | def get_intersection(pD,pG): |
| 121 | pInt = pD & pG |
| 122 | if len(pInt) == 0: |
| 123 | return 0 |
| 124 | return pInt.area() |
| 125 | |
| 126 | def compute_ap(confList, matchList,numGtCare): |
| 127 | correct = 0 |
no outgoing calls
no test coverage detected