| 594 | } |
| 595 | |
| 596 | void TOPPASScene::resetDownstream(TOPPASVertex* vertex) |
| 597 | { |
| 598 | // reset all nodes |
| 599 | vertex->reset(true); |
| 600 | for (TOPPASVertex::ConstEdgeIterator it = vertex->outEdgesBegin(); it != vertex->outEdgesEnd(); ++it) |
| 601 | { |
| 602 | TOPPASVertex* target = (*it)->getTargetVertex(); |
| 603 | this->resetDownstream(target); |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | void TOPPASScene::runPipeline() |
| 608 | { |
nothing calls this directly
no test coverage detected