* Queue a link graph for execution. * @param lg Link graph to be queued. */
| 65 | * @param lg Link graph to be queued. |
| 66 | */ |
| 67 | void Queue(LinkGraph *lg) |
| 68 | { |
| 69 | assert(LinkGraph::Get(lg->index) == lg); |
| 70 | this->schedule.push_back(lg); |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Remove a link graph from the execution queue. |
no test coverage detected