Skip to content

Commit

Permalink
make node_type_id return 0 for arrow graph for now to pass the test. …
Browse files Browse the repository at this point in the history
…this needs fixing
  • Loading branch information
shivamka1 committed May 29, 2024
1 parent 9afa2a9 commit 60a3716
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion raphtory/src/arrow/graph_impl/core_ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ impl CoreGraphOps for ArrowGraph {
}

fn node_type_id(&self, v: VID) -> usize {
self.graph().node_type_id(v)
// self.graph().node_type_id(v) TODO: Impl node types for arrow graphs
0
}
}

Expand Down

0 comments on commit 60a3716

Please sign in to comment.