committed by
Erik Ovegard
2 changed files with 0 additions and 35 deletions
@ -1,34 +0,0 @@ |
|||
using System; |
|||
using MathNet.Numerics.LinearAlgebra; |
|||
|
|||
namespace MathNet.Numerics.Optimization.Implementation |
|||
{ |
|||
public class NullObjectiveFunction : BaseObjectiveFunction |
|||
{ |
|||
public NullObjectiveFunction(Vector<double> 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(); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue