------------------------------------------------------------------------------
| 29 | |
| 30 | //------------------------------------------------------------------------------ |
| 31 | bool vtkMultiTimeStepAlgorithm::IsInCache(double time, size_t& idx) |
| 32 | { |
| 33 | std::vector<TimeCache>::iterator it = this->Cache.begin(); |
| 34 | for (idx = 0; it != this->Cache.end(); ++it, ++idx) |
| 35 | { |
| 36 | if (time == it->TimeValue) |
| 37 | { |
| 38 | return true; |
| 39 | } |
| 40 | } |
| 41 | return false; |
| 42 | } |
| 43 | |
| 44 | //------------------------------------------------------------------------------ |
| 45 | vtkTypeBool vtkMultiTimeStepAlgorithm::ProcessRequest( |
no test coverage detected