Browse Source

Remove mentioning of codeplex in file headers

pull/497/head
Christoph Ruegg 9 years ago
parent
commit
2ddba7399c
  1. 1
      src/Numerics/Optimization/BfgsBMinimizer.cs
  2. 1
      src/Numerics/Optimization/BfgsMinimizer.cs
  3. 1
      src/Numerics/Optimization/BfgsMinimizerBase.cs
  4. 1
      src/Numerics/Optimization/BfgsSolver.cs
  5. 1
      src/Numerics/Optimization/ConjugateGradientMinimizer.cs
  6. 1
      src/Numerics/Optimization/Exceptions.cs
  7. 1
      src/Numerics/Optimization/GoldenSectionMinimizer.cs
  8. 1
      src/Numerics/Optimization/IObjectiveFunction.cs
  9. 1
      src/Numerics/Optimization/IUnconstrainedMinimizer.cs
  10. 1
      src/Numerics/Optimization/LineSearch/LineSearchResult.cs
  11. 1
      src/Numerics/Optimization/LineSearch/StrongWolfeLineSearch.cs
  12. 1
      src/Numerics/Optimization/LineSearch/WeakWolfeLineSearch.cs
  13. 1
      src/Numerics/Optimization/LineSearch/WolfeLineSearch.cs
  14. 1
      src/Numerics/Optimization/MinimizationResult.cs
  15. 1
      src/Numerics/Optimization/MinimizationResult1D.cs
  16. 1
      src/Numerics/Optimization/MinimizationWithLineSearchResult.cs
  17. 1
      src/Numerics/Optimization/NelderMeadSimplex.cs
  18. 1
      src/Numerics/Optimization/NewtonMinimizer.cs
  19. 1
      src/Numerics/Optimization/ObjectiveFunction.cs
  20. 1
      src/Numerics/Optimization/ObjectiveFunction1D.cs
  21. 1
      src/Numerics/Optimization/ObjectiveFunctions/ForwardDifferenceGradientObjectiveFunction.cs
  22. 1
      src/Numerics/Optimization/ObjectiveFunctions/GradientHessianObjectiveFunction.cs
  23. 1
      src/Numerics/Optimization/ObjectiveFunctions/GradientObjectiveFunction.cs
  24. 1
      src/Numerics/Optimization/ObjectiveFunctions/HessianObjectiveFunction.cs
  25. 1
      src/Numerics/Optimization/ObjectiveFunctions/LazyObjectiveFunction.cs
  26. 1
      src/Numerics/Optimization/ObjectiveFunctions/LazyObjectiveFunctionBase.cs
  27. 1
      src/Numerics/Optimization/ObjectiveFunctions/ObjectiveFunctionBase.cs
  28. 1
      src/Numerics/Optimization/ObjectiveFunctions/ValueObjectiveFunction.cs
  29. 1
      src/Numerics/Optimization/QuadraticGradientProjectionSearch.cs

1
src/Numerics/Optimization/BfgsBMinimizer.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/BfgsMinimizer.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/BfgsMinimizerBase.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/BfgsSolver.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ConjugateGradientMinimizer.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/Exceptions.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/GoldenSectionMinimizer.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/IObjectiveFunction.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/IUnconstrainedMinimizer.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/LineSearch/LineSearchResult.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/LineSearch/StrongWolfeLineSearch.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/LineSearch/WeakWolfeLineSearch.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/LineSearch/WolfeLineSearch.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/MinimizationResult.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/MinimizationResult1D.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/MinimizationWithLineSearchResult.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/NelderMeadSimplex.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/NewtonMinimizer.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ObjectiveFunction.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ObjectiveFunction1D.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ObjectiveFunctions/ForwardDifferenceGradientObjectiveFunction.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ObjectiveFunctions/GradientHessianObjectiveFunction.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ObjectiveFunctions/GradientObjectiveFunction.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ObjectiveFunctions/HessianObjectiveFunction.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ObjectiveFunctions/LazyObjectiveFunction.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ObjectiveFunctions/LazyObjectiveFunctionBase.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ObjectiveFunctions/ObjectiveFunctionBase.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/ObjectiveFunctions/ValueObjectiveFunction.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

1
src/Numerics/Optimization/QuadraticGradientProjectionSearch.cs

@ -2,7 +2,6 @@
// Math.NET Numerics, part of the Math.NET Project
// http://numerics.mathdotnet.com
// http://github.com/mathnet/mathnet-numerics
// http://mathnetnumerics.codeplex.com
//
// Copyright (c) 2009-2017 Math.NET
//

Loading…
Cancel
Save