------------------------------------------------------------------------------
| 696 | |
| 697 | //------------------------------------------------------------------------------ |
| 698 | inline bool vtkStructuredAMRGridConnectivity::LevelExists(int level) |
| 699 | { |
| 700 | if (this->AMRHierarchy.find(level) != this->AMRHierarchy.end()) |
| 701 | { |
| 702 | return true; |
| 703 | } |
| 704 | return false; |
| 705 | } |
| 706 | |
| 707 | //------------------------------------------------------------------------------ |
| 708 | inline void vtkStructuredAMRGridConnectivity::InsertGridAtLevel(int level, int gridID) |
no test coverage detected