Skip to content

Commit

Permalink
Remove transpose from EJML edge overlap implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
pvarhegyi committed Oct 22, 2018
1 parent 24e256e commit eb466bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ protected <N, T> void evaluateAllEjml(GraphAdapter<N, T> adapter) {
CommonOps_DSCC.elementMult(A,B,C, null, null);
DMatrixRMaj rowSum = new DMatrixRMaj(size, 1);
CommonOps_DSCC.sumRows(C,rowSum);
double n = SimpleMatrix.wrap(rowSum).transpose().elementSum();
double n = SimpleMatrix.wrap(rowSum).elementSum();
data.put(getKey(type, condType), n / d);
}
}
Expand Down

0 comments on commit eb466bc

Please sign in to comment.