tangxu
2022-10-24 805b967b4ee65cd5022cad20451299f6ce56c949
1
2
3
4
5
6
7
8
9
10
11
12
using IStation.Numerics.LinearAlgebra;
 
namespace IStation.Numerics.Optimization.TrustRegion
{
    public interface ITrustRegionSubproblem
    {
        Vector<double> Pstep { get; }
        bool HitBoundary { get; }
 
        void Solve(IObjectiveModel objective, double radius);
    }
}