HomeSort by relevance Sort by last modified time
    Searched refs:subgraph_ (Results 1 - 2 of 2) sorted by null

  /system/update_engine/payload_generator/
cycle_breaker.cc 43 // iteration subgraph_ is the current subgraph or the original with
45 subgraph_ = graph;
57 for (Graph::size_type i = 0; i < subgraph_.size(); i++) {
66 // Erase node (i - 1) from subgraph_. First, erase what it points to
67 subgraph_[i - 1].out_edges.clear();
69 for (Graph::size_type j = i; j < subgraph_.size(); j++) {
70 subgraph_[j].out_edges.erase(i - 1);
76 tarjan.Execute(i, &subgraph_, &component_indexes);
81 subgraph_[*it].subgraph_edges.clear();
85 // add a subgraph_ edg
    [all...]
cycle_breaker.h 59 Graph subgraph_; // "A_K" in the paper member in class:chromeos_update_engine::CycleBreaker

Completed in 364 milliseconds