Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Sep 6, 2024
1 parent b93e21d commit 7ff627f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analytical_engine/core/fragment/dynamic_fragment.h
Original file line number Diff line number Diff line change
Expand Up @@ -428,11 +428,11 @@ class DynamicFragment
return res;
}

inline size_t GetOutgoingEdgeNum() const override {
inline size_t GetOutgoingEdgeNum() const {
return oe_.head_edge_num() + is_selfloops_.count();
}

inline size_t GetIncomingEdgeNum() const override {
inline size_t GetIncomingEdgeNum() const {
return ie_.head_edge_num() + is_selfloops_.count();
}

Expand Down

0 comments on commit 7ff627f

Please sign in to comment.