| 744 | } |
| 745 | |
| 746 | Box |
| 747 | BoxList::minimalBox () const |
| 748 | { |
| 749 | Box minbox(IntVect::TheUnitVector(), IntVect::TheZeroVector(), ixType()); |
| 750 | if ( !isEmpty() ) |
| 751 | { |
| 752 | auto bli = cbegin(), End = cend(); |
| 753 | minbox = *bli; |
| 754 | while ( bli != End ) |
| 755 | { |
| 756 | minbox.minBox(*bli++); |
| 757 | } |
| 758 | } |
| 759 | return minbox; |
| 760 | } |
| 761 | |
| 762 | BoxList& |
| 763 | BoxList::maxSize (const IntVect& chunk) |
no test coverage detected