diff --git a/src/Data/Matlab/Properties/AssemblyInfo.cs b/src/Data/Matlab/Properties/AssemblyInfo.cs index 52f9e660..b8dff213 100644 --- a/src/Data/Matlab/Properties/AssemblyInfo.cs +++ b/src/Data/Matlab/Properties/AssemblyInfo.cs @@ -1,6 +1,6 @@ // // Math.NET Numerics, part of the Math.NET Project -// http://mathnet.opensourcedotnet.info +// https://numerics.mathdotnet.com // // Copyright (c) 2009-2013 Math.NET // diff --git a/src/Data/Text/Properties/AssemblyInfo.cs b/src/Data/Text/Properties/AssemblyInfo.cs index 97150099..ebd903f6 100644 --- a/src/Data/Text/Properties/AssemblyInfo.cs +++ b/src/Data/Text/Properties/AssemblyInfo.cs @@ -1,6 +1,6 @@ // // Math.NET Numerics, part of the Math.NET Project -// http://mathnet.opensourcedotnet.info +// https://numerics.mathdotnet.com // // Copyright (c) 2009-2013 Math.NET // diff --git a/src/Numerics/Properties/AssemblyInfo.cs b/src/Numerics/Properties/AssemblyInfo.cs index 3e78078f..94bafbf5 100644 --- a/src/Numerics/Properties/AssemblyInfo.cs +++ b/src/Numerics/Properties/AssemblyInfo.cs @@ -1,6 +1,6 @@ // // Math.NET Numerics, part of the Math.NET Project -// http://mathnet.opensourcedotnet.info +// https://numerics.mathdotnet.com // // Copyright (c) 2009 Math.NET // diff --git a/src/Numerics/Providers/Common/Cuda/SafeNativeMethods.cs b/src/Numerics/Providers/Common/Cuda/SafeNativeMethods.cs index d767e7b0..59c553de 100644 --- a/src/Numerics/Providers/Common/Cuda/SafeNativeMethods.cs +++ b/src/Numerics/Providers/Common/Cuda/SafeNativeMethods.cs @@ -1,6 +1,6 @@ // // Math.NET Numerics, part of the Math.NET Project -// http://mathnet.opensourcedotnet.info +// https://numerics.mathdotnet.com // // Copyright (c) 2009-2016 Math.NET // diff --git a/src/Numerics/Providers/Common/Mkl/SafeNativeMethods.cs b/src/Numerics/Providers/Common/Mkl/SafeNativeMethods.cs index fe50ec8a..f6c51c2b 100644 --- a/src/Numerics/Providers/Common/Mkl/SafeNativeMethods.cs +++ b/src/Numerics/Providers/Common/Mkl/SafeNativeMethods.cs @@ -1,6 +1,6 @@ // // Math.NET Numerics, part of the Math.NET Project -// http://mathnet.opensourcedotnet.info +// https://numerics.mathdotnet.com // // Copyright (c) 2009-2016 Math.NET // diff --git a/src/Numerics/Providers/Common/OpenBlas/SafeNativeMethods.cs b/src/Numerics/Providers/Common/OpenBlas/SafeNativeMethods.cs index aa62c2cc..c8952151 100644 --- a/src/Numerics/Providers/Common/OpenBlas/SafeNativeMethods.cs +++ b/src/Numerics/Providers/Common/OpenBlas/SafeNativeMethods.cs @@ -1,6 +1,6 @@ // // Math.NET Numerics, part of the Math.NET Project -// http://mathnet.opensourcedotnet.info +// https://numerics.mathdotnet.com // // Copyright (c) 2009-2015 Math.NET // diff --git a/src/Numerics/Providers/FourierTransform/ManagedFourierTransformProvider.cs b/src/Numerics/Providers/FourierTransform/ManagedFourierTransformProvider.cs index a6d56b18..f29e36a8 100644 --- a/src/Numerics/Providers/FourierTransform/ManagedFourierTransformProvider.cs +++ b/src/Numerics/Providers/FourierTransform/ManagedFourierTransformProvider.cs @@ -1,6 +1,6 @@ // // Math.NET Numerics, part of the Math.NET Project -// http://mathnet.opensourcedotnet.info +// https://numerics.mathdotnet.com // // Copyright (c) 2009-2016 Math.NET // diff --git a/src/Numerics/Providers/FourierTransform/Mkl/MklFourierTransformProvider.cs b/src/Numerics/Providers/FourierTransform/Mkl/MklFourierTransformProvider.cs index 60d0e285..4566d565 100644 --- a/src/Numerics/Providers/FourierTransform/Mkl/MklFourierTransformProvider.cs +++ b/src/Numerics/Providers/FourierTransform/Mkl/MklFourierTransformProvider.cs @@ -1,6 +1,6 @@ // // Math.NET Numerics, part of the Math.NET Project -// http://mathnet.opensourcedotnet.info +// https://numerics.mathdotnet.com // // Copyright (c) 2009-2016 Math.NET // diff --git a/src/Numerics/Providers/LinearAlgebra/Acml/SafeNativeMethods.cs b/src/Numerics/Providers/LinearAlgebra/Acml/SafeNativeMethods.cs index 60f3f394..d195b68c 100644 --- a/src/Numerics/Providers/LinearAlgebra/Acml/SafeNativeMethods.cs +++ b/src/Numerics/Providers/LinearAlgebra/Acml/SafeNativeMethods.cs @@ -1,6 +1,6 @@ // // Math.NET Numerics, part of the Math.NET Project -// http://mathnet.opensourcedotnet.info +// https://numerics.mathdotnet.com // // Copyright (c) 2009-2010 Math.NET // @@ -46,7 +46,7 @@ namespace MathNet.Numerics.Providers.LinearAlgebra.Acml /// const string DllName = "MathNET.Numerics.ACML.dll"; - #region BLAS +#region BLAS [DllImport(DllName, ExactSpelling = true, SetLastError = false, CallingConvention = CallingConvention.Cdecl)] internal static extern void s_axpy(int n, float alpha, float[] x, [In, Out] float[] y); @@ -96,9 +96,9 @@ namespace MathNet.Numerics.Providers.LinearAlgebra.Acml [DllImport(DllName, ExactSpelling = true, SetLastError = false, CallingConvention = CallingConvention.Cdecl)] internal static extern void z_matrix_multiply(Transpose transA, Transpose transB, int m, int n, int k, Complex alpha, Complex[] x, Complex[] y, Complex beta, [In, Out] Complex[] c); - #endregion BLAS +#endregion BLAS - #region LAPACK +#region LAPACK [DllImport(DllName, ExactSpelling = true, SetLastError = false, CallingConvention = CallingConvention.Cdecl)] internal static extern float s_matrix_norm(byte norm, int rows, int columns, [In] float[] a, [In, Out] float[] work); @@ -256,7 +256,7 @@ namespace MathNet.Numerics.Providers.LinearAlgebra.Acml [DllImport(DllName, ExactSpelling = true, SetLastError = false, CallingConvention = CallingConvention.Cdecl)] internal static extern int z_svd_factor(bool computeVectors, int m, int n, [In, Out] Complex[] a, [In, Out] Complex[] s, [In, Out] Complex[] u, [In, Out] Complex[] v, [In, Out] Complex[] work, int len); - #endregion LAPACK +#endregion LAPACK } }