| 1540 | } |
| 1541 | |
| 1542 | void |
| 1543 | TrapezoidMapTriFinder::Node::add_parent(Node* parent) |
| 1544 | { |
| 1545 | assert(parent != 0 && "Null parent"); |
| 1546 | assert(parent != this && "Cannot be parent of self"); |
| 1547 | assert(!has_parent(parent) && "Parent already in collection"); |
| 1548 | _parents.push_back(parent); |
| 1549 | } |
| 1550 | |
| 1551 | void |
| 1552 | TrapezoidMapTriFinder::Node::assert_valid(bool tree_complete) const |
no test coverage detected