Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
luoxiaojian committed Dec 6, 2023
1 parent c3a5c5c commit e533d73
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions examples/gnn_sampler/append_only_edgecut_fragment.h
Original file line number Diff line number Diff line change
Expand Up @@ -772,16 +772,31 @@ class AppendOnlyEdgecutFragment
return DestList(0, 0);
}

size_t IEDestsSize() const override {
LOG(FATAL) << "Not implemented.";
return 0;
}

DestList OEDests(const vertex_t& v) const override {
LOG(FATAL) << "Not implemented.";
return DestList(0, 0);
}

size_t OEDestsSize() const override {
LOG(FATAL) << "Not implemented.";
return 0;
}

DestList IOEDests(const vertex_t& v) const override {
LOG(FATAL) << "Not implemented.";
return DestList(0, 0);
}

size_t IOEDestsSize() const override {
LOG(FATAL) << "Not implemented.";
return 0;
}

adj_list_t GetIncomingAdjList(const vertex_t& v) override {
LOG(FATAL) << "Not implemented.";
return adj_list_t(NULL, NULL);
Expand Down

0 comments on commit e533d73

Please sign in to comment.