Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support to add edge without metadata in GraphJet #90

Merged
merged 32 commits into from
Aug 3, 2017
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
fix test case
  • Loading branch information
jerryjiang committed Jul 27, 2017
commit 8e7d93339144dd5e7720199878cc1a9b4787504d
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ private void testGraph(

assertEquals(new LongArrayList(new long[]{13, 11, 12}),
new LongArrayList(multiSegmentLeftIndexedPowerLawBipartiteGraph.getLeftNodeEdges(1)));
assertEquals(new LongArrayList(new long[]{21, 22}),
assertEquals(new LongArrayList(new long[]{22, 21}),
new LongArrayList(multiSegmentLeftIndexedPowerLawBipartiteGraph.getLeftNodeEdges(2)));
assertEquals(new LongArrayList(new long[]{31}),
new LongArrayList(multiSegmentLeftIndexedPowerLawBipartiteGraph.getLeftNodeEdges(3)));
Expand Down