Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 committed Aug 28, 2024
1 parent 6a0f64e commit 31be7d9
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions analytical_engine/core/fragment/arrow_projected_fragment.h
Original file line number Diff line number Diff line change
Expand Up @@ -1471,29 +1471,23 @@ class ArrowProjectedFragment
return grape::DestList(idoffset_[offset], idoffset_[offset + 1]);
}

inline size_t IEDestsSize() const {
return idst_.size();
}
inline size_t IEDestsSize() const { return idst_.size(); }

inline grape::DestList OEDests(const vertex_t& v) const {
int64_t offset = vid_parser_.GetOffset(v.GetValue());
assert(offset < static_cast<int64_t>(ivnum_));
return grape::DestList(odoffset_[offset], odoffset_[offset + 1]);
}

inline size_t OEDestsSize() const {
return odst_.size();
}
inline size_t OEDestsSize() const { return odst_.size(); }

inline grape::DestList IOEDests(const vertex_t& v) const {
int64_t offset = vid_parser_.GetOffset(v.GetValue());
assert(offset < static_cast<int64_t>(ivnum_));
return grape::DestList(iodoffset_[offset], iodoffset_[offset + 1]);
}

inline size_t IOEDestsSize() const {
return iodst_.size();
}
inline size_t IOEDestsSize() const { return iodst_.size(); }

inline std::shared_ptr<vertex_map_t> GetVertexMap() { return vm_ptr_; }

Expand Down

0 comments on commit 31be7d9

Please sign in to comment.