MCPcopy Create free account
hub / github.com/bwaldvogel/liblinear-java / ddot_

Method ddot_

src/main/java/de/bwaldvogel/liblinear/Blas.java:57–59  ·  view source on GitHub ↗
(int n, double[] sx, int incx, double[] sy, int incy)

Source from the content-addressed store, hash-verified

55 }
56
57 static double ddot_(int n, double[] sx, int incx, double[] sy, int incy) {
58 return ddot_(new MutableInt(n), sx, new MutableInt(incx), sy, new MutableInt(incy));
59 }
60
61 private static double ddot_(MutableInt n, double[] sx, MutableInt incx, double[] sy, MutableInt incy) {
62 int i, m, nn, iincx, iincy;

Callers 1

pcgMethod · 0.95

Calls 1

getMethod · 0.45

Tested by

no test coverage detected