(double c, Matrix B)
| 74 | } |
| 75 | |
| 76 | @Override |
| 77 | public void mutableAdd(double c, Matrix B) |
| 78 | { |
| 79 | if(!Matrix.sameDimensions(this, B)) |
| 80 | throw new ArithmeticException("Matrices must be the same dimension to be added"); |
| 81 | for( int i = 0; i < rows.length; i++) |
| 82 | rows[i].mutableAdd(c, B.getRowView(i)); |
| 83 | } |
| 84 | |
| 85 | @Override |
| 86 | public void mutableAdd(final double c, final Matrix B, ExecutorService threadPool) |
no test coverage detected