Skip to content

Commit

Permalink
[doc] add one text: cgraph-remove-redundancy-link
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunelFeng committed Sep 8, 2024
1 parent e7f46a2 commit ffb3594
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ int main() {
* [以图优图:CGraph中计算dag最大并发度思路总结](http://www.chunel.cn/archives/cgraph-max-para-size)
* [一文带你了解练习时长两年半的CGraph](http://www.chunel.cn/archives/cgraph-kunanniversary-introduce)
* [CGraph作者想知道,您是否需要一款eDAG调度框架](http://www.chunel.cn/archives/cgraph-extended-dag)
* [降边增效:CGraph中冗余边剪裁思路总结](http://www.chunel.cn/archives/cgraph-remove-redundancy-link)
<br>

## 四. 关联项目
Expand Down
1 change: 0 additions & 1 deletion src/GraphCtrl/GraphElement/_GOptimizer/GTrimOptimizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class GTrimOptimizer : public GOptimizer {
// 这里必须是 n^2 的循环
CSize y = std::distance(elements.begin(), elements.find(cur->dependence_[j]));
if (1 == graph[x][y]) {
graph[x][idx] = 0;
candidates.push_back(cur->dependence_[i]);
}
}
Expand Down

0 comments on commit ffb3594

Please sign in to comment.