(int n, double[] sx, int incx, double[] sy, int incy)
| 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; |