------------------------------------------------------------------------------
| 913 | |
| 914 | //------------------------------------------------------------------------------ |
| 915 | void vtkStructuredImplicitConnectivity::SetWholeExtent(int wholeExt[6]) |
| 916 | { |
| 917 | delete this->DomainInfo; |
| 918 | |
| 919 | this->DomainInfo = new vtk::detail::DomainMetaData(); |
| 920 | this->DomainInfo->Initialize(wholeExt); |
| 921 | |
| 922 | assert( |
| 923 | "post: Domain description does not match across ranks!" && this->GlobalDataDescriptionMatch()); |
| 924 | } |
| 925 | |
| 926 | //------------------------------------------------------------------------------ |
| 927 | void vtkStructuredImplicitConnectivity::RegisterGrid( |