Skip to content

Commit

Permalink
removed remaining references to DenseXxx{Matrix/Vector}
Browse files Browse the repository at this point in the history
  • Loading branch information
Luc Maisonobe committed Jun 11, 2009
1 parent bf8c2bf commit ad8cdb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions org/apache/commons/math/linear/RecursiveLayoutRealMatrix.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* process matrices with sizes similar enough to have the same power of two
* number of tiles in all three matrices A, B and C such that C = A*B. These
* parts have not been fixed since the performance gain with respect to
* DenseRealMatrix are not very important, and the numerical stability is not
* BlockRealMatrix are not very important, and the numerical stability is not
* good. This may well be due to a bad implementation. This code has been put
* in the experimental part for the record, putting it into production would
* require solving all these issues.
Expand Down Expand Up @@ -136,7 +136,7 @@ public RecursiveLayoutRealMatrix(final int rows, final int columns)
*
* @exception IllegalArgumentException if <code>rawData</code> shape is
* inconsistent with tile layout
* @see #DenseRealMatrix(int, int, double[][], boolean)
* @see #RecursiveLayoutRealMatrix(int, int, double[][], boolean)
*/
public RecursiveLayoutRealMatrix(final double[][] rawData)
throws IllegalArgumentException {
Expand Down

0 comments on commit ad8cdb5

Please sign in to comment.