| 385 | } |
| 386 | |
| 387 | bool IsReadyForSplitAssignment(LayerSelectionInfo::LayerInfoContainer& layerInfos, LayerSelectionInfo& layerInfo) |
| 388 | { |
| 389 | bool ready = true; |
| 390 | ForEachLayerInput(layerInfos, layerInfo, |
| 391 | [&ready](LayerSelectionInfo& parentInfo) |
| 392 | { |
| 393 | if (!parentInfo.m_IsProcessed) |
| 394 | { |
| 395 | ready = false; |
| 396 | } |
| 397 | }); |
| 398 | return ready; |
| 399 | } |
| 400 | |
| 401 | SubgraphViewSelector::Subgraphs |
| 402 | SubgraphViewSelector::SelectSubgraphs(SubgraphView& subgraph, const LayerSelectorFunction& selector) |
no test coverage detected