From e5cff395ead3c4f351f0042ebd6fc4cbb405f5b0 Mon Sep 17 00:00:00 2001 From: Marcus Cuda Date: Sat, 10 Jul 2010 17:28:51 +0300 Subject: [PATCH] style cop fix --- src/Numerics/LinearAlgebra/Double/Matrix.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Numerics/LinearAlgebra/Double/Matrix.cs b/src/Numerics/LinearAlgebra/Double/Matrix.cs index a4dcb413..5a03997e 100644 --- a/src/Numerics/LinearAlgebra/Double/Matrix.cs +++ b/src/Numerics/LinearAlgebra/Double/Matrix.cs @@ -1794,8 +1794,8 @@ namespace MathNet.Numerics.LinearAlgebra.Double var transpose = Transpose(); var aat = this * transpose; - //TODO: Replace with multiple Transpose - // aat.Gemm(1.0, 0.0, false, true, this, this); + // TODO: Replace with multiple Transpose + //// aat.Gemm(1.0, 0.0, false, true, this, this); var norm = 0.0; for (var i = 0; i < RowCount; i++)