------------------------------------------------------------------------------
| 643 | |
| 644 | //------------------------------------------------------------------------------ |
| 645 | int vtkDemandDrivenPipeline::InputCountIsValid(vtkInformationVector** inInfoVec) |
| 646 | { |
| 647 | // Check the number of connections for each port. |
| 648 | int result = 1; |
| 649 | for (int p = 0; p < this->Algorithm->GetNumberOfInputPorts(); ++p) |
| 650 | { |
| 651 | if (!this->InputCountIsValid(p, inInfoVec)) |
| 652 | { |
| 653 | result = 0; |
| 654 | } |
| 655 | } |
| 656 | return result; |
| 657 | } |
| 658 | |
| 659 | //------------------------------------------------------------------------------ |
| 660 | int vtkDemandDrivenPipeline::InputCountIsValid(int port, vtkInformationVector** inInfoVec) |
no test coverage detected