Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@ Contributors:
- [SolerHo](https://github.com/SolerHo)
- [guanquanchen](https://github.com/guanquanchen)
- [Linyu](https://github.com/weijinglin)
- [billlib](https://github.com/billlib)

感谢以上朋友,为CGraph项目做出的贡献,排名以贡献时间前后为顺序。
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,15 @@ CVoid GDynamicEngine::fatWait() {
*/
return (finished_end_size_ >= total_end_size_) || cur_status_.isErr();
});

// 状态异常的情况下刷新所有element,避免错误的中间状态被带入下一次process
if (cur_status_.isErr())
{
for (auto &e : total_element_arr_)
{
e->refresh();
}
}
}


Expand Down