From ad8cdb5859324816d4f85ac2b837ad9deda18c45 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Thu, 11 Jun 2009 12:35:42 +0000 Subject: [PATCH] removed remaining references to DenseXxx{Matrix/Vector} git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk/src/experimental@783741 13f79535-47bb-0310-9956-ffa450edef68 --- org/apache/commons/math/linear/RecursiveLayoutRealMatrix.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org/apache/commons/math/linear/RecursiveLayoutRealMatrix.java b/org/apache/commons/math/linear/RecursiveLayoutRealMatrix.java index 1539ec031..1f17f0cde 100644 --- a/org/apache/commons/math/linear/RecursiveLayoutRealMatrix.java +++ b/org/apache/commons/math/linear/RecursiveLayoutRealMatrix.java @@ -31,7 +31,7 @@ import org.apache.commons.math.MathRuntimeException; * 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. @@ -136,7 +136,7 @@ public class RecursiveLayoutRealMatrix extends AbstractRealMatrix implements Ser * * @exception IllegalArgumentException if rawData 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 {