Browse Source

Fix old URLs in a few file headers

pull/469/head
Christoph Ruegg 10 years ago
parent
commit
f514b8b796
  1. 2
      src/Data/Matlab/Properties/AssemblyInfo.cs
  2. 2
      src/Data/Text/Properties/AssemblyInfo.cs
  3. 2
      src/Numerics/Properties/AssemblyInfo.cs
  4. 2
      src/Numerics/Providers/Common/Cuda/SafeNativeMethods.cs
  5. 2
      src/Numerics/Providers/Common/Mkl/SafeNativeMethods.cs
  6. 2
      src/Numerics/Providers/Common/OpenBlas/SafeNativeMethods.cs
  7. 2
      src/Numerics/Providers/FourierTransform/ManagedFourierTransformProvider.cs
  8. 2
      src/Numerics/Providers/FourierTransform/Mkl/MklFourierTransformProvider.cs
  9. 10
      src/Numerics/Providers/LinearAlgebra/Acml/SafeNativeMethods.cs

2
src/Data/Matlab/Properties/AssemblyInfo.cs

@ -1,6 +1,6 @@
// <copyright file="AssemblyInfo.cs" company="Math.NET">
// Math.NET Numerics, part of the Math.NET Project
// http://mathnet.opensourcedotnet.info
// https://numerics.mathdotnet.com
//
// Copyright (c) 2009-2013 Math.NET
//

2
src/Data/Text/Properties/AssemblyInfo.cs

@ -1,6 +1,6 @@
// <copyright file="AssemblyInfo.cs" company="Math.NET">
// Math.NET Numerics, part of the Math.NET Project
// http://mathnet.opensourcedotnet.info
// https://numerics.mathdotnet.com
//
// Copyright (c) 2009-2013 Math.NET
//

2
src/Numerics/Properties/AssemblyInfo.cs

@ -1,6 +1,6 @@
// <copyright file="AssemblyInfo.cs" company="Math.NET">
// Math.NET Numerics, part of the Math.NET Project
// http://mathnet.opensourcedotnet.info
// https://numerics.mathdotnet.com
//
// Copyright (c) 2009 Math.NET
//

2
src/Numerics/Providers/Common/Cuda/SafeNativeMethods.cs

@ -1,6 +1,6 @@
// <copyright file="SafeNativeMethods.cs" company="Math.NET">
// Math.NET Numerics, part of the Math.NET Project
// http://mathnet.opensourcedotnet.info
// https://numerics.mathdotnet.com
//
// Copyright (c) 2009-2016 Math.NET
//

2
src/Numerics/Providers/Common/Mkl/SafeNativeMethods.cs

@ -1,6 +1,6 @@
// <copyright file="SafeNativeMethods.cs" company="Math.NET">
// Math.NET Numerics, part of the Math.NET Project
// http://mathnet.opensourcedotnet.info
// https://numerics.mathdotnet.com
//
// Copyright (c) 2009-2016 Math.NET
//

2
src/Numerics/Providers/Common/OpenBlas/SafeNativeMethods.cs

@ -1,6 +1,6 @@
// <copyright file="SafeNativeMethods.cs" company="Math.NET">
// Math.NET Numerics, part of the Math.NET Project
// http://mathnet.opensourcedotnet.info
// https://numerics.mathdotnet.com
//
// Copyright (c) 2009-2015 Math.NET
//

2
src/Numerics/Providers/FourierTransform/ManagedFourierTransformProvider.cs

@ -1,6 +1,6 @@
// <copyright file="ManagedFourierTransformProvider.cs" company="Math.NET">
// Math.NET Numerics, part of the Math.NET Project
// http://mathnet.opensourcedotnet.info
// https://numerics.mathdotnet.com
//
// Copyright (c) 2009-2016 Math.NET
//

2
src/Numerics/Providers/FourierTransform/Mkl/MklFourierTransformProvider.cs

@ -1,6 +1,6 @@
// <copyright file="MklFourierTransformProvider.cs" company="Math.NET">
// Math.NET Numerics, part of the Math.NET Project
// http://mathnet.opensourcedotnet.info
// https://numerics.mathdotnet.com
//
// Copyright (c) 2009-2016 Math.NET
//

10
src/Numerics/Providers/LinearAlgebra/Acml/SafeNativeMethods.cs

@ -1,6 +1,6 @@
// <copyright file="SafeNativeMethods.cs" company="Math.NET">
// 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
/// </summary>
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
}
}

Loading…
Cancel
Save