From 5deddd0027da191d05300c557d0d5c1bac41a264 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Sat, 17 Aug 2013 12:44:23 +0200 Subject: [PATCH] LA Provider: minor file renames --- src/Numerics/Numerics.csproj | 16 ++++++++-------- ...at.cs => AcmlLinearAlgebraProvider.Single.cs} | 2 +- .../Acml/AcmlLinearAlgebraProvider.double.cs | 2 +- ...s => GotoBlasLinearAlgebraProvider.Single.cs} | 2 +- ...ommon.cs => GotoBlasLinearAlgebraProvider.cs} | 2 +- .../GotoBlasLinearAlgebraProvider.double.cs | 2 +- ...oat.cs => MklLinearAlgebraProvider.Single.cs} | 2 +- ...der.Common.cs => MklLinearAlgebraProvider.cs} | 2 +- .../Mkl/MklLinearAlgebraProvider.double.cs | 2 +- 9 files changed, 16 insertions(+), 16 deletions(-) rename src/Numerics/Providers/LinearAlgebra/Acml/{AcmlLinearAlgebraProvider.float.cs => AcmlLinearAlgebraProvider.Single.cs} (99%) rename src/Numerics/Providers/LinearAlgebra/GotoBlas/{GotoBlasLinearAlgebraProvider.float.cs => GotoBlasLinearAlgebraProvider.Single.cs} (99%) rename src/Numerics/Providers/LinearAlgebra/GotoBlas/{GotoBlasLinearAlgebraProvider.Common.cs => GotoBlasLinearAlgebraProvider.cs} (99%) rename src/Numerics/Providers/LinearAlgebra/Mkl/{MklLinearAlgebraProvider.float.cs => MklLinearAlgebraProvider.Single.cs} (99%) rename src/Numerics/Providers/LinearAlgebra/Mkl/{MklLinearAlgebraProvider.Common.cs => MklLinearAlgebraProvider.cs} (99%) diff --git a/src/Numerics/Numerics.csproj b/src/Numerics/Numerics.csproj index eebfdbcf..ac85c9b4 100644 --- a/src/Numerics/Numerics.csproj +++ b/src/Numerics/Numerics.csproj @@ -88,25 +88,25 @@ - - + + - + - - + + - + - - + + diff --git a/src/Numerics/Providers/LinearAlgebra/Acml/AcmlLinearAlgebraProvider.float.cs b/src/Numerics/Providers/LinearAlgebra/Acml/AcmlLinearAlgebraProvider.Single.cs similarity index 99% rename from src/Numerics/Providers/LinearAlgebra/Acml/AcmlLinearAlgebraProvider.float.cs rename to src/Numerics/Providers/LinearAlgebra/Acml/AcmlLinearAlgebraProvider.Single.cs index 57ee2606..ccf3f5a5 100644 --- a/src/Numerics/Providers/LinearAlgebra/Acml/AcmlLinearAlgebraProvider.float.cs +++ b/src/Numerics/Providers/LinearAlgebra/Acml/AcmlLinearAlgebraProvider.Single.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics diff --git a/src/Numerics/Providers/LinearAlgebra/Acml/AcmlLinearAlgebraProvider.double.cs b/src/Numerics/Providers/LinearAlgebra/Acml/AcmlLinearAlgebraProvider.double.cs index 77188b5a..f684b543 100644 --- a/src/Numerics/Providers/LinearAlgebra/Acml/AcmlLinearAlgebraProvider.double.cs +++ b/src/Numerics/Providers/LinearAlgebra/Acml/AcmlLinearAlgebraProvider.double.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics diff --git a/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.float.cs b/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.Single.cs similarity index 99% rename from src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.float.cs rename to src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.Single.cs index 5df844ba..6c4af16e 100644 --- a/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.float.cs +++ b/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.Single.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics diff --git a/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.Common.cs b/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.cs similarity index 99% rename from src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.Common.cs rename to src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.cs index 726cd67e..5644076b 100644 --- a/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.Common.cs +++ b/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics diff --git a/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.double.cs b/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.double.cs index b3d2cf45..8dfc7a2b 100644 --- a/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.double.cs +++ b/src/Numerics/Providers/LinearAlgebra/GotoBlas/GotoBlasLinearAlgebraProvider.double.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics diff --git a/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.float.cs b/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.Single.cs similarity index 99% rename from src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.float.cs rename to src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.Single.cs index 64744284..7007d983 100644 --- a/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.float.cs +++ b/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.Single.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics diff --git a/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.Common.cs b/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.cs similarity index 99% rename from src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.Common.cs rename to src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.cs index e20200c5..1da96c36 100644 --- a/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.Common.cs +++ b/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics diff --git a/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.double.cs b/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.double.cs index c3bd2800..a1092399 100644 --- a/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.double.cs +++ b/src/Numerics/Providers/LinearAlgebra/Mkl/MklLinearAlgebraProvider.double.cs @@ -1,4 +1,4 @@ -// +// // Math.NET Numerics, part of the Math.NET Project // http://numerics.mathdotnet.com // http://github.com/mathnet/mathnet-numerics