From 1bdcfda349613a04fcd42765410b6c17e72c7483 Mon Sep 17 00:00:00 2001 From: Christoph Ruegg Date: Thu, 14 May 2015 21:23:21 +0200 Subject: [PATCH] Optimization: drop NullObjectiveFunction --- src/Numerics/Numerics.csproj | 1 - .../Implementation/NullObjectiveFunction.cs | 34 ------------------- 2 files changed, 35 deletions(-) delete mode 100644 src/Numerics/Optimization/Implementation/NullObjectiveFunction.cs diff --git a/src/Numerics/Numerics.csproj b/src/Numerics/Numerics.csproj index 4f6413ae..9c7227b9 100644 --- a/src/Numerics/Numerics.csproj +++ b/src/Numerics/Numerics.csproj @@ -120,7 +120,6 @@ - diff --git a/src/Numerics/Optimization/Implementation/NullObjectiveFunction.cs b/src/Numerics/Optimization/Implementation/NullObjectiveFunction.cs deleted file mode 100644 index a279a620..00000000 --- a/src/Numerics/Optimization/Implementation/NullObjectiveFunction.cs +++ /dev/null @@ -1,34 +0,0 @@ -using System; -using MathNet.Numerics.LinearAlgebra; - -namespace MathNet.Numerics.Optimization.Implementation -{ - public class NullObjectiveFunction : BaseObjectiveFunction - { - public NullObjectiveFunction(Vector point) - : base(false, false) - { - Point = point; - } - - protected override void SetValue() - { - throw new NotImplementedException(); - } - - protected override void SetGradient() - { - throw new NotImplementedException(); - } - - protected override void SetHessian() - { - throw new NotImplementedException(); - } - - public override IObjectiveFunction Fork() - { - throw new NotImplementedException(); - } - } -}