| 526 | |
| 527 | |
| 528 | std::vector<Stage *> PipelineManager::leaves() const |
| 529 | { |
| 530 | std::vector<Stage *> llist = m_stages; |
| 531 | for (Stage *s : m_stages) |
| 532 | for (Stage *ss : s->getInputs()) |
| 533 | Utils::remove(llist, ss); |
| 534 | return llist; |
| 535 | } |
| 536 | |
| 537 | |
| 538 | void PipelineManager::replace(Stage *sOld, Stage *sNew) |
no test coverage detected