Skip to content

Commit

Permalink
fix in was swapped with outdegrees #1
Browse files Browse the repository at this point in the history
  • Loading branch information
xchrdw committed Jan 15, 2015
1 parent 0945dc8 commit 3d407bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphlod/VertexCsvOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public VertexCsvOutput(String name) {

public void writeGraph(GraphFeatures graph) {
List<GraphFeatures.Degree> inDegrees = graph.getIndegrees2();
List<GraphFeatures.Degree> outDegrees = graph.getIndegrees2();
List<GraphFeatures.Degree> outDegrees = graph.getOutdegrees2();

for (int i = 0; i < inDegrees.size(); i++) {
GraphFeatures.Degree in = inDegrees.get(i);
Expand Down

0 comments on commit 3d407bd

Please sign in to comment.