csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
793 B
34 lines
793 B
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();
|
|
}
|
|
}
|
|
}
|
|
|