------------------------------------------------------------------------------
| 119 | |
| 120 | //------------------------------------------------------------------------------ |
| 121 | const char* vtkChacoReader::GetEdgeWeightArrayName(int weight) |
| 122 | { |
| 123 | if (this->GetGenerateEdgeWeightArrays() && (weight > 0) && (weight <= this->NumberOfEdgeWeights)) |
| 124 | { |
| 125 | return this->EarrayName[weight - 1].c_str(); |
| 126 | } |
| 127 | |
| 128 | return nullptr; |
| 129 | } |
| 130 | |
| 131 | //------------------------------------------------------------------------------ |
| 132 | int vtkChacoReader::RequestInformation(vtkInformation* vtkNotUsed(request), |
no test coverage detected