| 97 | } |
| 98 | |
| 99 | BoxList |
| 100 | intersect (const BoxList& bl, const Box& b) |
| 101 | { |
| 102 | BL_ASSERT(bl.ixType() == b.ixType()); |
| 103 | BoxList newbl(bl); |
| 104 | newbl.intersect(b); |
| 105 | return newbl; |
| 106 | } |
| 107 | |
| 108 | BoxList |
| 109 | refine (const BoxList& bl, int ratio) |
no test coverage detected