------------------------------------------------------------------------------
| 275 | |
| 276 | //------------------------------------------------------------------------------ |
| 277 | int vtkReduceTable::GetReductionMethodForColumn(vtkIdType col) |
| 278 | { |
| 279 | std::map<vtkIdType, int>::iterator itr = this->ColumnReductionMethods.find(col); |
| 280 | if (itr != this->ColumnReductionMethods.end()) |
| 281 | { |
| 282 | return itr->second; |
| 283 | } |
| 284 | return -1; |
| 285 | } |
| 286 | |
| 287 | //------------------------------------------------------------------------------ |
| 288 | void vtkReduceTable::SetReductionMethodForColumn(vtkIdType col, int method) |
no test coverage detected