------------------------------------------------------------------------------
| 278 | |
| 279 | //------------------------------------------------------------------------------ |
| 280 | vtkTypeBool vtkExecutive::Update() |
| 281 | { |
| 282 | if (this->Algorithm->GetNumberOfOutputPorts()) |
| 283 | { |
| 284 | return this->Update(0); |
| 285 | } |
| 286 | return this->Update(-1); |
| 287 | } |
| 288 | |
| 289 | //------------------------------------------------------------------------------ |
| 290 | vtkTypeBool vtkExecutive::Update(int) |
nothing calls this directly
no test coverage detected